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

http://github.com/sk89q/worldguard · Java · 64 lines · 28 code · 12 blank · 24 comment · 1 complexity · 26aa8758f25f940956011aee6a5a6b8a 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;
  20. import com.google.common.collect.Maps;
  21. import java.util.Map;
  22. import java.util.Map.Entry;
  23. import java.util.logging.Level;
  24. import java.util.logging.Logger;
  25. import static com.google.common.base.Preconditions.checkNotNull;
  26. public final class Flags {
  27. private static final Logger log = Logger.getLogger(Flags.class.getCanonicalName());
  28. private Flags() {
  29. }
  30. /**
  31. * Marshal a value of flag values into a map of raw values.
  32. *
  33. * @param values The unmarshalled flag values map
  34. * @return The raw values map
  35. */
  36. public static Map<String, Object> marshal(Map<Flag<?>, Object> values) {
  37. checkNotNull(values, "values");
  38. Map<String, Object> rawValues = Maps.newHashMap();
  39. for (Entry<Flag<?>, Object> entry : values.entrySet()) {
  40. try {
  41. rawValues.put(entry.getKey().getName(), marshal(entry.getKey(), entry.getValue()));
  42. } catch (Exception e) {
  43. log.log(Level.WARNING, "Failed to marshal flag value for " + entry.getKey() + "; value is " + entry.getValue(), e);
  44. }
  45. }
  46. return rawValues;
  47. }
  48. @SuppressWarnings("unchecked")
  49. private static <T> Object marshal(Flag<T> flag, Object value) {
  50. return flag.marshal((T) value);
  51. }
  52. }