/worldguard-legacy/src/main/java/com/sk89q/worldguard/protection/flags/registry/SimpleFlagRegistry.java

http://github.com/sk89q/worldguard · Java · 163 lines · 117 code · 28 blank · 18 comment · 19 complexity · 3fb3d2a5fe6783d1c3a10a328ee35a09 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.flags.registry;
  20. import com.google.common.collect.Iterators;
  21. import com.google.common.collect.Maps;
  22. import com.sk89q.worldguard.protection.flags.Flag;
  23. import javax.annotation.Nullable;
  24. import java.util.Collection;
  25. import java.util.Iterator;
  26. import java.util.Map;
  27. import java.util.Map.Entry;
  28. import java.util.concurrent.ConcurrentMap;
  29. import java.util.logging.Level;
  30. import java.util.logging.Logger;
  31. import static com.google.common.base.Preconditions.checkNotNull;
  32. public class SimpleFlagRegistry implements FlagRegistry {
  33. private static final Logger log = Logger.getLogger(SimpleFlagRegistry.class.getCanonicalName());
  34. private final Object lock = new Object();
  35. private final ConcurrentMap<String, Flag<?>> flags = Maps.newConcurrentMap();
  36. private boolean initialized;
  37. public boolean isInitialized() {
  38. return initialized;
  39. }
  40. public void setInitialized(boolean initialized) {
  41. this.initialized = initialized;
  42. }
  43. @Override
  44. public void register(Flag<?> flag) throws FlagConflictException {
  45. synchronized (lock) {
  46. if (initialized) {
  47. throw new IllegalStateException("New flags cannot be registered at this time");
  48. }
  49. forceRegister(flag);
  50. }
  51. }
  52. @Override
  53. public void registerAll(Collection<Flag<?>> flags) {
  54. synchronized (lock) {
  55. for (Flag<?> flag : flags) {
  56. try {
  57. register(flag);
  58. } catch (FlagConflictException e) {
  59. log.log(Level.WARNING, e.getMessage());
  60. }
  61. }
  62. }
  63. }
  64. private Flag<?> forceRegister(Flag<?> flag) throws FlagConflictException {
  65. checkNotNull(flag, "flag");
  66. checkNotNull(flag.getName(), "flag.getName()");
  67. synchronized (lock) {
  68. String name = flag.getName().toLowerCase();
  69. if (flags.containsKey(name)) {
  70. throw new FlagConflictException("A flag already exists by the name " + name);
  71. }
  72. flags.put(name, flag);
  73. }
  74. return flag;
  75. }
  76. @Override
  77. @Nullable
  78. public Flag<?> get(String name) {
  79. checkNotNull(name, "name");
  80. return flags.get(name.toLowerCase());
  81. }
  82. private Flag<?> getOrCreate(String name) {
  83. Flag<?> flag = get(name);
  84. if (flag != null) {
  85. return flag;
  86. }
  87. synchronized (lock) {
  88. flag = get(name); // Load again because the previous load was not synchronized
  89. return flag != null ? flag : forceRegister(new UnknownFlag(name));
  90. }
  91. }
  92. @Override
  93. public Map<Flag<?>, Object> unmarshal(Map<String, Object> rawValues, boolean createUnknown) {
  94. checkNotNull(rawValues, "rawValues");
  95. ConcurrentMap<Flag<?>, Object> values = Maps.newConcurrentMap();
  96. ConcurrentMap<String, Object> regionFlags = Maps.newConcurrentMap();
  97. for (Entry<String, Object> entry : rawValues.entrySet()) {
  98. if (entry.getKey().endsWith("-group")) {
  99. regionFlags.put(entry.getKey(), entry.getValue());
  100. continue;
  101. }
  102. Flag<?> flag = createUnknown ? getOrCreate(entry.getKey()) : get(entry.getKey());
  103. if (flag != null) {
  104. try {
  105. Object unmarshalled = flag.unmarshal(entry.getValue());
  106. if (unmarshalled != null) {
  107. values.put(flag, unmarshalled);
  108. } else {
  109. log.warning("Failed to parse flag '" + flag.getName() + "' with value '" + entry.getValue() + "'");
  110. }
  111. } catch (Exception e) {
  112. log.log(Level.WARNING, "Failed to unmarshal flag value for " + flag, e);
  113. }
  114. }
  115. }
  116. for (Entry<String, Object> entry : regionFlags.entrySet()) {
  117. String parentName = entry.getKey().replaceAll("-group", "");
  118. Flag<?> parent = get(parentName);
  119. if (parent == null || parent instanceof UnknownFlag) {
  120. if (createUnknown) forceRegister(new UnknownFlag(entry.getKey()));
  121. } else {
  122. values.put(parent.getRegionGroupFlag(), parent.getRegionGroupFlag().unmarshal(entry.getValue()));
  123. }
  124. }
  125. return values;
  126. }
  127. @Override
  128. public int size() {
  129. return flags.size();
  130. }
  131. @Override
  132. public Iterator<Flag<?>> iterator() {
  133. return Iterators.unmodifiableIterator(flags.values().iterator());
  134. }
  135. }