Merge branch 'next' into image-management
[Sone.git] / src / main / java / net / pterodactylus / sone / core / Options.java
index 04010da..b7ece81 100644 (file)
@@ -1,6 +1,10 @@
 package net.pterodactylus.sone.core;
 
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
 import java.util.HashMap;
+import java.util.List;
 import java.util.Map;
 
 /**
@@ -90,22 +94,22 @@ public class Options {
                private final T defaultValue;
 
                /** The current value. */
-               private T value;
+               private volatile T value;
 
                /** The option watcher. */
-               private final OptionWatcher<T> optionWatcher;
+               private final List<OptionWatcher<T>> optionWatchers = new ArrayList<OptionWatcher<T>>();
 
                /**
                 * Creates a new default option.
                 *
                 * @param defaultValue
                 *            The default value of the option
-                * @param optionWatcher
-                *            The option watcher
+                * @param optionWatchers
+                *            The option watchers
                 */
-               public DefaultOption(T defaultValue, OptionWatcher<T> optionWatcher) {
+               public DefaultOption(T defaultValue, OptionWatcher<T>... optionWatchers) {
                        this.defaultValue = defaultValue;
-                       this.optionWatcher = optionWatcher;
+                       this.optionWatchers.addAll(Arrays.asList(optionWatchers));
                }
 
                /**
@@ -143,14 +147,48 @@ public class Options {
                        T oldValue = this.value;
                        this.value = value;
                        if (!get().equals(oldValue)) {
-                               optionWatcher.optionChanged(this, oldValue, get());
+                               for (OptionWatcher<T> optionWatcher : optionWatchers) {
+                                       optionWatcher.optionChanged(this, oldValue, get());
+                               }
                        }
                }
 
        }
 
+       /** Holds all {@link Boolean} {@link Option}s. */
+       private final Map<String, Option<Boolean>> booleanOptions = Collections.synchronizedMap(new HashMap<String, Option<Boolean>>());
+
        /** Holds all {@link Integer} {@link Option}s. */
-       private final Map<String, Option<Integer>> integerOptions = new HashMap<String, Option<Integer>>();
+       private final Map<String, Option<Integer>> integerOptions = Collections.synchronizedMap(new HashMap<String, Option<Integer>>());
+
+       /** Holds all {@link String} {@link Option}s. */
+       private final Map<String, Option<String>> stringOptions = Collections.synchronizedMap(new HashMap<String, Option<String>>());
+
+       /**
+        * Adds a boolean option.
+        *
+        * @param name
+        *            The name of the option
+        * @param booleanOption
+        *            The option
+        * @return The given option
+        */
+       public Option<Boolean> addBooleanOption(String name, Option<Boolean> booleanOption) {
+               booleanOptions.put(name, booleanOption);
+               return booleanOption;
+       }
+
+       /**
+        * Returns the boolean option with the given name.
+        *
+        * @param name
+        *            The name of the option
+        * @return The option, or {@code null} if there is no option with the given
+        *         name
+        */
+       public Option<Boolean> getBooleanOption(String name) {
+               return booleanOptions.get(name);
+       }
 
        /**
         * Adds an {@link Integer} {@link Option}.
@@ -178,4 +216,30 @@ public class Options {
                return integerOptions.get(name);
        }
 
+       /**
+        * Adds a {@link String} {@link Option}.
+        *
+        * @param name
+        *            The name of the option
+        * @param stringOption
+        *            The option
+        * @return The given option
+        */
+       public Option<String> addStringOption(String name, Option<String> stringOption) {
+               stringOptions.put(name, stringOption);
+               return stringOption;
+       }
+
+       /**
+        * Returns a {@link String} {@link Option}.
+        *
+        * @param name
+        *            The name of the string option to get
+        * @return The string option, or {@code null} if there is no option with the
+        *         given name
+        */
+       public Option<String> getStringOption(String name) {
+               return stringOptions.get(name);
+       }
+
 }