/worldguard-legacy/src/main/java/com/sk89q/worldguard/protection/managers/migration/AbstractMigration.java

http://github.com/sk89q/worldguard · Java · 82 lines · 32 code · 13 blank · 37 comment · 1 complexity · 342507ddd1fb4844f833af08caea5977 MD5 · raw file

  1. /*
  2. * WorldGuard, a suite of tools for Minecraft
  3. * Copyright (C) sk89q <http://www.sk89q.com>
  4. * Copyright (C) WorldGuard team and contributors
  5. *
  6. * This program is free software: you can redistribute it and/or modify it
  7. * under the terms of the GNU Lesser General Public License as published by the
  8. * Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.sk89q.worldguard.protection.managers.migration;
  20. import com.sk89q.worldguard.protection.managers.storage.RegionDatabase;
  21. import com.sk89q.worldguard.protection.managers.storage.RegionDriver;
  22. import com.sk89q.worldguard.protection.managers.storage.StorageException;
  23. import java.util.logging.Level;
  24. import java.util.logging.Logger;
  25. import static com.google.common.base.Preconditions.checkNotNull;
  26. /**
  27. * An abstract implementation of a migrator that gets all the worlds in
  28. * a driver and calls a override-able {@code migrate()} method for
  29. * each store.
  30. */
  31. abstract class AbstractMigration implements Migration {
  32. private static final Logger log = Logger.getLogger(AbstractMigration.class.getCanonicalName());
  33. private final RegionDriver driver;
  34. /**
  35. * Create a new instance.
  36. *
  37. * @param driver the storage driver
  38. */
  39. public AbstractMigration(RegionDriver driver) {
  40. checkNotNull(driver);
  41. this.driver = driver;
  42. }
  43. @Override
  44. public final void migrate() throws MigrationException {
  45. try {
  46. for (RegionDatabase store : driver.getAll()) {
  47. try {
  48. migrate(store);
  49. } catch (MigrationException e) {
  50. log.log(Level.WARNING, "Migration of one world (" + store.getName() + ") failed with an error", e);
  51. }
  52. }
  53. postMigration();
  54. } catch (StorageException e) {
  55. throw new MigrationException("Migration failed because the process of getting a list of all the worlds to migrate failed", e);
  56. }
  57. }
  58. /**
  59. * Called for all the worlds in the driver.
  60. *
  61. * @param store the region store
  62. * @throws MigrationException on migration error
  63. */
  64. protected abstract void migrate(RegionDatabase store)throws MigrationException;
  65. /**
  66. * Called after migration has successfully completed.
  67. */
  68. protected abstract void postMigration();
  69. }