Add 'src/be/nikiroo/utils/' from commit '46add0670fdee4bd936a13fe2448c5e20a7ffd0a'
[nikiroo-utils.git] / src / be / nikiroo / utils / resources / Bundle.java
index 09481c4acf56af0611da019f3e3f63cd0543b988..0c57bf992b495d8777b40753e850f9b827e47c39 100644 (file)
@@ -19,6 +19,8 @@ import java.util.MissingResourceException;
 import java.util.PropertyResourceBundle;
 import java.util.ResourceBundle;
 
+import be.nikiroo.utils.resources.Meta.Format;
+
 /**
  * This class encapsulate a {@link ResourceBundle} in UTF-8. It allows to
  * retrieve values associated to an enumeration, and allows some additional
@@ -83,9 +85,24 @@ public class Bundle<E extends Enum<E>> {
         * 
         * @return TRUE if the setting is set
         */
-       public boolean iSet(E id, boolean includeDefaultValue) {
-               if (getString(id.toString(), null) == null) {
-                       if (!includeDefaultValue || getString(id) == null) {
+       public boolean isSet(E id, boolean includeDefaultValue) {
+               return isSet(id.name(), includeDefaultValue);
+       }
+
+       /**
+        * Check if the setting is set into this {@link Bundle}.
+        * 
+        * @param name
+        *            the id of the setting to check
+        * @param includeDefaultValue
+        *            TRUE to only return false when the setting is not set AND
+        *            there is no default value
+        * 
+        * @return TRUE if the setting is set
+        */
+       protected boolean isSet(String name, boolean includeDefaultValue) {
+               if (getString(name, null) == null) {
+                       if (!includeDefaultValue || getString(name, "") == null) {
                                return false;
                        }
                }
@@ -120,14 +137,49 @@ public class Bundle<E extends Enum<E>> {
         *         resource file)
         */
        public String getString(E id, String def) {
+               return getString(id, def, -1);
+       }
+
+       /**
+        * Return the value associated to the given id as a {@link String}.
+        * <p>
+        * If no value is associated (or if it is empty!), take the default one if
+        * any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value, or NULL if not found (not present in the
+        *         resource file)
+        */
+       public String getString(E id, String def, int item) {
                String rep = getString(id.name(), null);
                if (rep == null) {
-                       MetaInfo<E> info = new MetaInfo<E>(type, this, id);
-                       rep = info.getDefaultString();
+                       try {
+                               Meta meta = type.getDeclaredField(id.name()).getAnnotation(
+                                               Meta.class);
+                               rep = meta.def();
+                       } catch (NoSuchFieldException e) {
+                       } catch (SecurityException e) {
+                       }
                }
 
-               if (rep == null) {
-                       rep = def;
+               if (rep == null || rep.isEmpty()) {
+                       return def;
+               }
+
+               if (item >= 0) {
+                       List<String> values = BundleHelper.parseList(rep, item);
+                       if (values != null && item < values.size()) {
+                               return values.get(item);
+                       }
+
+                       return null;
                }
 
                return rep;
@@ -146,6 +198,27 @@ public class Bundle<E extends Enum<E>> {
                setString(id.name(), value);
        }
 
+       /**
+        * Set the value associated to the given id as a {@link String}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setString(E id, String value, int item) {
+               if (item < 0) {
+                       setString(id.name(), value);
+               } else {
+                       List<String> values = getList(id);
+                       setString(id.name(), BundleHelper.fromList(values, value, item));
+               }
+       }
+
        /**
         * Return the value associated to the given id as a {@link String} suffixed
         * with the runtime value "_suffix" (that is, "_" and suffix).
@@ -163,14 +236,60 @@ public class Bundle<E extends Enum<E>> {
         *         resource file)
         */
        public String getStringX(E id, String suffix) {
+               return getStringX(id, suffix, null, -1);
+       }
+
+       /**
+        * Return the value associated to the given id as a {@link String} suffixed
+        * with the runtime value "_suffix" (that is, "_" and suffix).
+        * <p>
+        * Will only accept suffixes that form an existing id.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param suffix
+        *            the runtime suffix
+        * @param def
+        *            the default value when it is not present in the config file
+        * 
+        * @return the associated value, or NULL if not found (not present in the
+        *         resource file)
+        */
+       public String getStringX(E id, String suffix, String def) {
+               return getStringX(id, suffix, def, -1);
+       }
+
+       /**
+        * Return the value associated to the given id as a {@link String} suffixed
+        * with the runtime value "_suffix" (that is, "_" and suffix).
+        * <p>
+        * Will only accept suffixes that form an existing id.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param suffix
+        *            the runtime suffix
+        * @param def
+        *            the default value when it is not present in the config file
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value, or NULL if not found (not present in the
+        *         resource file)
+        */
+       public String getStringX(E id, String suffix, String def, int item) {
                String key = id.name()
                                + (suffix == null ? "" : "_" + suffix.toUpperCase());
 
                try {
                        id = Enum.valueOf(type, key);
-                       return getString(id);
+                       return getString(id, def, item);
                } catch (IllegalArgumentException e) {
-
                }
 
                return null;
@@ -190,14 +309,33 @@ public class Bundle<E extends Enum<E>> {
         *            the value
         */
        public void setStringX(E id, String suffix, String value) {
+               setStringX(id, suffix, value, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a {@link String} suffixed
+        * with the runtime value "_suffix" (that is, "_" and suffix).
+        * <p>
+        * Will only accept suffixes that form an existing id.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param suffix
+        *            the runtime suffix
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        */
+       public void setStringX(E id, String suffix, String value, int item) {
                String key = id.name()
                                + (suffix == null ? "" : "_" + suffix.toUpperCase());
 
                try {
                        id = Enum.valueOf(type, key);
-                       setString(id, value);
+                       setString(id, value, item);
                } catch (IllegalArgumentException e) {
-
                }
        }
 
@@ -212,8 +350,7 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public Boolean getBoolean(E id) {
-               String str = getString(id);
-               return BundleHelper.parseBoolean(str);
+               return BundleHelper.parseBoolean(getString(id), -1);
        }
 
        /**
@@ -230,9 +367,35 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public boolean getBoolean(E id, boolean def) {
-               Boolean b = getBoolean(id);
-               if (b != null)
-                       return b;
+               Boolean value = getBoolean(id);
+               if (value != null) {
+                       return value;
+               }
+
+               return def;
+       }
+
+       /**
+        * Return the value associated to the given id as a {@link Boolean}.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a boolean value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value
+        */
+       public Boolean getBoolean(E id, boolean def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseBoolean(value, item);
+               }
 
                return def;
        }
@@ -247,7 +410,23 @@ public class Bundle<E extends Enum<E>> {
         * 
         */
        public void setBoolean(E id, boolean value) {
-               setString(id.name(), BundleHelper.fromBoolean(value));
+               setBoolean(id, value, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a {@link Boolean}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setBoolean(E id, boolean value, int item) {
+               setString(id, BundleHelper.fromBoolean(value), item);
        }
 
        /**
@@ -261,7 +440,12 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public Integer getInteger(E id) {
-               return BundleHelper.parseInteger(getString(id));
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseInteger(value, -1);
+               }
+
+               return null;
        }
 
        /**
@@ -278,9 +462,35 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public int getInteger(E id, int def) {
-               Integer i = getInteger(id);
-               if (i != null)
-                       return i;
+               Integer value = getInteger(id);
+               if (value != null) {
+                       return value;
+               }
+
+               return def;
+       }
+
+       /**
+        * Return the value associated to the given id as an int.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a int value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value
+        */
+       public Integer getInteger(E id, int def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseInteger(value, item);
+               }
 
                return def;
        }
@@ -295,7 +505,23 @@ public class Bundle<E extends Enum<E>> {
         * 
         */
        public void setInteger(E id, int value) {
-               setString(id.name(), BundleHelper.fromInteger(value));
+               setInteger(id, value, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a {@link Integer}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setInteger(E id, int value, int item) {
+               setString(id, BundleHelper.fromInteger(value), item);
        }
 
        /**
@@ -309,7 +535,7 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public Character getCharacter(E id) {
-               return BundleHelper.parseCharacter(getString(id));
+               return BundleHelper.parseCharacter(getString(id), -1);
        }
 
        /**
@@ -326,13 +552,68 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public char getCharacter(E id, char def) {
-               Character car = getCharacter(id);
-               if (car != null)
-                       return car;
+               Character value = getCharacter(id);
+               if (value != null) {
+                       return value;
+               }
+
+               return def;
+       }
+
+       /**
+        * Return the value associated to the given id as a {@link Character}.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a char value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value
+        */
+       public Character getCharacter(E id, char def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseCharacter(value, item);
+               }
 
                return def;
        }
 
+       /**
+        * Set the value associated to the given id as a {@link Character}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * 
+        */
+       public void setCharacter(E id, char value) {
+               setCharacter(id, value, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a {@link Character}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setCharacter(E id, char value, int item) {
+               setString(id, BundleHelper.fromCharacter(value), item);
+       }
+
        /**
         * Return the value associated to the given id as a colour if it is found
         * and can be parsed.
@@ -347,7 +628,60 @@ public class Bundle<E extends Enum<E>> {
         * @return the associated value
         */
        public Integer getColor(E id) {
-               return BundleHelper.parseColor(getString(id));
+               return BundleHelper.parseColor(getString(id), -1);
+       }
+
+       /**
+        * Return the value associated to the given id as a colour if it is found
+        * and can be parsed.
+        * <p>
+        * The returned value is an ARGB value.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a char value
+        * 
+        * @return the associated value
+        */
+       public int getColor(E id, int def) {
+               Integer value = getColor(id);
+               if (value != null) {
+                       return value;
+               }
+
+               return def;
+       }
+
+       /**
+        * Return the value associated to the given id as a colour if it is found
+        * and can be parsed.
+        * <p>
+        * The returned value is an ARGB value.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a char value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated value
+        */
+       public Integer getColor(E id, int def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseColor(value, item);
+               }
+
+               return def;
        }
 
        /**
@@ -361,7 +695,23 @@ public class Bundle<E extends Enum<E>> {
         *            the new colour
         */
        public void setColor(E id, Integer color) {
-               setString(id, BundleHelper.fromColor(color));
+               setColor(id, color, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a Color.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setColor(E id, int value, int item) {
+               setString(id, BundleHelper.fromColor(value), item);
        }
 
        /**
@@ -377,7 +727,58 @@ public class Bundle<E extends Enum<E>> {
         *         not found or cannot be parsed as a list
         */
        public List<String> getList(E id) {
-               return BundleHelper.parseList(getString(id));
+               return BundleHelper.parseList(getString(id), -1);
+       }
+
+       /**
+        * Return the value associated to the given id as a list of values if it is
+        * found and can be parsed.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a char value
+        * 
+        * @return the associated list, empty if the value is empty, NULL if it is
+        *         not found or cannot be parsed as a list
+        */
+       public List<String> getList(E id, List<String> def) {
+               List<String> value = getList(id);
+               if (value != null) {
+                       return value;
+               }
+
+               return def;
+       }
+
+       /**
+        * Return the value associated to the given id as a list of values if it is
+        * found and can be parsed.
+        * <p>
+        * If no value is associated, take the default one if any.
+        * 
+        * @param id
+        *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file or
+        *            if it is not a char value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        * @return the associated list, empty if the value is empty, NULL if it is
+        *         not found or cannot be parsed as a list
+        */
+       public List<String> getList(E id, List<String> def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseList(value, item);
+               }
+
+               return def;
        }
 
        /**
@@ -389,7 +790,23 @@ public class Bundle<E extends Enum<E>> {
         *            the new list of values
         */
        public void setList(E id, List<String> list) {
-               setString(id, BundleHelper.fromList(list));
+               setList(id, list, -1);
+       }
+
+       /**
+        * Set the value associated to the given id as a {@link List}.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param value
+        *            the value
+        * @param item
+        *            the item number to get for an array of values, or -1 for
+        *            non-arrays
+        * 
+        */
+       public void setList(E id, List<String> value, int item) {
+               setString(id, BundleHelper.fromList(value), item);
        }
 
        /**
@@ -576,32 +993,36 @@ public class Bundle<E extends Enum<E>> {
 
                // Default, empty values -> NULL
                if (desc.length() + list.length + def.length() == 0 && !group
-                               && nullable && format == Meta.Format.STRING) {
+                               && nullable && format == Format.STRING) {
                        return null;
                }
 
                StringBuilder builder = new StringBuilder();
-               builder.append("# ").append(desc);
-               if (desc.length() > 20) {
-                       builder.append("\n#");
+               for (String line : desc.split("\n")) {
+                       builder.append("# ").append(line).append("\n");
                }
 
                if (group) {
-                       builder.append("This item is used as a group, its content is not expected to be used.");
+                       builder.append("This item is used as a group, its content is not expected to be used.");
                } else {
-                       builder.append(" (FORMAT: ").append(format)
-                                       .append(nullable ? "" : " (required)");
+                       builder.append("# (FORMAT: ").append(format)
+                                       .append(nullable ? "" : ", required");
                        builder.append(") ");
 
                        if (list.length > 0) {
-                               builder.append("\n# ALLOWED VALUES:");
+                               builder.append("\n# ALLOWED VALUES: ");
+                               boolean first = true;
                                for (String value : list) {
-                                       builder.append(" \"").append(value).append("\"");
+                                       if (!first) {
+                                               builder.append(", ");
+                                       }
+                                       builder.append(BundleHelper.escape(value));
+                                       first = false;
                                }
                        }
 
                        if (array) {
-                               builder.append("\n# (This item accept a list of comma-separated values)");
+                               builder.append("\n# (This item accepts a list of ^escaped comma-separated values)");
                        }
                }
 
@@ -633,8 +1054,11 @@ public class Bundle<E extends Enum<E>> {
        }
 
        /**
-        * Write the given id to the config file, i.e., "MY_ID = my_curent_value"
-        * followed by a new line
+        * Write the given data to the config file, i.e., "MY_ID = my_curent_value"
+        * followed by a new line.
+        * <p>
+        * Will prepend a # sign if the is is not set (see
+        * {@link Bundle#isSet(Enum, boolean)}).
         * 
         * @param writer
         *            the {@link Writer} to write into
@@ -645,12 +1069,15 @@ public class Bundle<E extends Enum<E>> {
         *             in case of IO error
         */
        protected void writeValue(Writer writer, E id) throws IOException {
-               writeValue(writer, id.name(), getString(id));
+               boolean set = isSet(id, false);
+               writeValue(writer, id.name(), getString(id), set);
        }
 
        /**
         * Write the given data to the config file, i.e., "MY_ID = my_curent_value"
-        * followed by a new line
+        * followed by a new line.
+        * <p>
+        * Will prepend a # sign if the is is not set.
         * 
         * @param writer
         *            the {@link Writer} to write into
@@ -658,12 +1085,19 @@ public class Bundle<E extends Enum<E>> {
         *            the id to write
         * @param value
         *            the id's value
+        * @param set
+        *            the value is set in this {@link Bundle}
         * 
         * @throws IOException
         *             in case of IO error
         */
-       protected void writeValue(Writer writer, String id, String value)
-                       throws IOException {
+       protected void writeValue(Writer writer, String id, String value,
+                       boolean set) throws IOException {
+
+               if (!set) {
+                       writer.write('#');
+               }
+
                writer.write(id);
                writer.write(" = ");
 
@@ -717,7 +1151,7 @@ public class Bundle<E extends Enum<E>> {
                                File file = getPropertyFile(dir, name.name(), locale);
                                if (file != null) {
                                        Reader reader = new InputStreamReader(new FileInputStream(
-                                                       file), "UTF8");
+                                                       file), "UTF-8");
                                        resetMap(new PropertyResourceBundle(reader));
                                        found = true;
                                }
@@ -747,8 +1181,8 @@ public class Bundle<E extends Enum<E>> {
        }
 
        /**
-        * Reset the backing map to the content of the given bundle, or with default
-        * valiues if bundle is NULL.
+        * Reset the backing map to the content of the given bundle, or with NULL
+        * values if bundle is NULL.
         * 
         * @param bundle
         *            the bundle to copy
@@ -765,7 +1199,7 @@ public class Bundle<E extends Enum<E>> {
                                        if (bundle != null) {
                                                value = bundle.getString(id.name());
                                        } else {
-                                               value = meta.def();
+                                               value = null;
                                        }
 
                                        this.map.put(id.name(), value == null ? null : value.trim());