Merge branch 'subtree'
[nikiroo-utils.git] / src / be / nikiroo / utils / resources / Bundle.java
index 4420109caa157a8358f1298b8186c71a05bec4c2..fe3ac1a3be4eb2c66580f855ea9df1ee206085dc 100644 (file)
@@ -1,11 +1,11 @@
 package be.nikiroo.utils.resources;
 
-import java.awt.Color;
 import java.io.BufferedWriter;
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.io.OutputStreamWriter;
 import java.io.Reader;
@@ -20,6 +20,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
@@ -28,15 +30,26 @@ import java.util.ResourceBundle;
  * It also sports a writable change map, and you can save back the
  * {@link Bundle} to file with {@link Bundle#updateFile(String)}.
  * 
- * @author niki
- * 
  * @param <E>
  *            the enum to use to get values out of this class
+ * 
+ * @author niki
  */
+
 public class Bundle<E extends Enum<E>> {
+       /** The type of E. */
        protected Class<E> type;
-       protected Enum<?> name;
-       private ResourceBundle map;
+       /**
+        * The {@link Enum} associated to this {@link Bundle} (all the keys used in
+        * this {@link Bundle} will be of this type).
+        */
+       protected Enum<?> keyType;
+
+       private TransBundle<E> descriptionBundle;
+
+       /** R/O map */
+       private Map<String, String> map;
+       /** R/W map */
        private Map<String, String> changeMap;
 
        /**
@@ -44,48 +57,173 @@ public class Bundle<E extends Enum<E>> {
         * 
         * @param type
         *            a runtime instance of the class of E
-        * 
         * @param name
         *            the name of the {@link Bundles}
+        * @param descriptionBundle
+        *            the description {@link TransBundle}, that is, a
+        *            {@link TransBundle} dedicated to the description of the values
+        *            of the given {@link Bundle} (can be NULL)
         */
-       protected Bundle(Class<E> type, Enum<?> name) {
+       protected Bundle(Class<E> type, Enum<?> name,
+                       TransBundle<E> descriptionBundle) {
                this.type = type;
-               this.name = name;
+               this.keyType = name;
+               this.descriptionBundle = descriptionBundle;
+
+               this.map = new HashMap<String, String>();
                this.changeMap = new HashMap<String, String>();
                setBundle(name, Locale.getDefault(), false);
        }
 
+       /**
+        * Check if the setting is set into this {@link Bundle}.
+        * 
+        * @param id
+        *            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
+        */
+       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 explicitly set
+        *            to NULL (and not just "no set") in the change maps
+        * 
+        * @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;
+                       }
+               }
+
+               return true;
+       }
+
        /**
         * Return the value associated to the given id as a {@link String}.
         * 
-        * @param mame
+        * @param id
         *            the id of the value to get
         * 
         * @return the associated value, or NULL if not found (not present in the
         *         resource file)
         */
        public String getString(E id) {
-               return getStringX(id, null);
+               return getString(id, null);
        }
 
        /**
-        * Set the value associated to the given id as a {@link String}.
+        * Return the value associated to the given id as a {@link String}.
+        * <p>
+        * If no value is associated, take the default one if any.
         * 
-        * @param mame
+        * @param id
         *            the id of the value to get
+        * @param def
+        *            the default value when it is not present in the config file
+        * 
+        * @return the associated value, or <tt>def</tt> if not found (not present
+        *         in the 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, <tt>def</tt> if not found (not present in
+        *         the resource file) or NULL if the item is specified (not -1) and
+        *         does not exist
+        */
+       public String getString(E id, String def, int item) {
+               String rep = getString(id.name(), null);
+               if (rep == null) {
+                       rep = getMetaDef(id.name());
+               }
+
+               if (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;
+       }
+
+       /**
+        * 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
         * 
         */
        public void setString(E id, String value) {
-               setStringX(id, null, value);
+               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).
+        * <p>
+        * Will only accept suffixes that form an existing id.
+        * <p>
+        * If no value is associated, take the default one if any.
         * 
-        * @param mame
+        * @param id
         *            the id of the value to get
         * @param suffix
         *            the runtime suffix
@@ -94,11 +232,61 @@ 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, <tt>def</tt> if not found (not present in
+        *         the resource file), NULL if the item is specified (not -1) but
+        *         does not exist and NULL if bad key
+        */
+       public String getStringX(E id, String suffix, String def, int item) {
                String key = id.name()
                                + (suffix == null ? "" : "_" + suffix.toUpperCase());
 
-               if (containsKey(key)) {
-                       return getString(key).trim();
+               try {
+                       id = Enum.valueOf(type, key);
+                       return getString(id, def, item);
+               } catch (IllegalArgumentException e) {
                }
 
                return null;
@@ -107,84 +295,162 @@ public class Bundle<E extends Enum<E>> {
        /**
         * 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 mame
-        *            the id of the value to get
+        * @param id
+        *            the id of the value to set
         * @param suffix
         *            the runtime suffix
         * @param value
         *            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());
 
-               setString(key, value);
+               try {
+                       id = Enum.valueOf(type, key);
+                       setString(id, value, item);
+               } catch (IllegalArgumentException e) {
+               }
        }
 
        /**
         * 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 mame
+        * @param id
         *            the id of the value to get
         * 
         * @return the associated value
         */
        public Boolean getBoolean(E id) {
-               String str = getString(id);
-               if (str != null && str.length() > 0) {
-                       if (str.equalsIgnoreCase("true") || str.equalsIgnoreCase("on")
-                                       || str.equalsIgnoreCase("yes"))
-                               return true;
-                       if (str.equalsIgnoreCase("false") || str.equalsIgnoreCase("off")
-                                       || str.equalsIgnoreCase("no"))
-                               return false;
+               return BundleHelper.parseBoolean(getString(id), -1);
+       }
 
+       /**
+        * 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
+        * 
+        * @return the associated value
+        */
+       public boolean getBoolean(E id, boolean def) {
+               Boolean value = getBoolean(id);
+               if (value != null) {
+                       return value;
                }
 
-               return null;
+               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 mame
+        * @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) {
-               Boolean b = getBoolean(id);
-               if (b != null)
-                       return b;
+       public Boolean getBoolean(E id, boolean def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseBoolean(value, item);
+               }
 
                return def;
        }
 
+       /**
+        * 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
+        * 
+        */
+       public void setBoolean(E id, boolean 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);
+       }
+
        /**
         * Return the value associated to the given id as an {@link Integer}.
+        * <p>
+        * If no value is associated, take the default one if any.
         * 
-        * @param mame
+        * @param id
         *            the id of the value to get
         * 
         * @return the associated value
         */
        public Integer getInteger(E id) {
-               try {
-                       return Integer.parseInt(getString(id));
-               } catch (Exception e) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseInteger(value, -1);
                }
 
                return null;
        }
 
        /**
-        * Return the value associated to the given id as a {@link int}.
+        * Return the value associated to the given id as an int.
+        * <p>
+        * If no value is associated, take the default one if any.
         * 
-        * @param mame
+        * @param id
         *            the id of the value to get
         * @param def
         *            the default value when it is not present in the config file or
@@ -193,98 +459,368 @@ 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;
        }
 
+       /**
+        * 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
+        * 
+        */
+       public void setInteger(E id, int 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);
+       }
+
        /**
         * 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 mame
+        * @param id
         *            the id of the value to get
         * 
         * @return the associated value
         */
        public Character getCharacter(E id) {
-               String s = getString(id).trim();
-               if (s.length() > 0) {
-                       return s.charAt(0);
+               return BundleHelper.parseCharacter(getString(id), -1);
+       }
+
+       /**
+        * 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
+        * 
+        * @return the associated value
+        */
+       public char getCharacter(E id, char def) {
+               Character value = getCharacter(id);
+               if (value != null) {
+                       return value;
                }
 
-               return null;
+               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 mame
+        * @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 char getCharacter(E id, char def) {
-               String s = getString(id).trim();
-               if (s.length() > 0) {
-                       return s.charAt(0);
+       public Character getCharacter(E id, char def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseCharacter(value, item);
                }
 
                return def;
        }
 
        /**
-        * Return the value associated to the given id as a {@link Color}.
+        * 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 the
-        *            id of the value to get
+        * @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.
+        * <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
         * 
         * @return the associated value
         */
-       public Color getColor(E id) {
-               Color color = null;
+       public Integer getColor(E id) {
+               return BundleHelper.parseColor(getString(id), -1);
+       }
 
-               String bg = getString(id).trim();
-               if (bg.startsWith("#") && (bg.length() == 7 || bg.length() == 9)) {
-                       try {
-                               int r = Integer.parseInt(bg.substring(1, 3), 16);
-                               int g = Integer.parseInt(bg.substring(3, 5), 16);
-                               int b = Integer.parseInt(bg.substring(5, 7), 16);
-                               int a = 255;
-                               if (bg.length() == 9) {
-                                       a = Integer.parseInt(bg.substring(7, 9), 16);
-                               }
-                               color = new Color(r, g, b, a);
-                       } catch (NumberFormatException e) {
-                               color = null; // no changes
-                       }
+       /**
+        * 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 color;
+               return def;
        }
 
        /**
-        * Set the value associated to the given id as a {@link Color}.
+        * 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 the
-        *            id of the value to get
+        * @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 void setColor(E id, Color color) {
-               String r = Integer.toString(color.getRed(), 16);
-               String g = Integer.toString(color.getGreen(), 16);
-               String b = Integer.toString(color.getBlue(), 16);
-               String a = "";
-               if (color.getAlpha() < 255) {
-                       a = Integer.toString(color.getAlpha(), 16);
+       public Integer getColor(E id, int def, int item) {
+               String value = getString(id);
+               if (value != null) {
+                       return BundleHelper.parseColor(value, item);
                }
 
-               setString(id, "#" + r + g + b + a);
+               return def;
+       }
+
+       /**
+        * Set the value associated to the given id as a colour.
+        * <p>
+        * The value is a BGRA value.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param color
+        *            the new colour
+        */
+       public void setColor(E id, Integer 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);
+       }
+
+       /**
+        * 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
+        * 
+        * @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) {
+               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;
+       }
+
+       /**
+        * Set the value associated to the given id as a list of values.
+        * 
+        * @param id
+        *            the id of the value to set
+        * @param list
+        *            the new list of values
+        */
+       public void setList(E id, List<String> 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);
+       }
+
+       /**
+        * Create/update the .properties file.
+        * <p>
+        * Will use the most likely candidate as base if the file does not already
+        * exists and this resource is translatable (for instance, "en_US" will use
+        * "en" as a base if the resource is a translation file).
+        * <p>
+        * Will update the files in {@link Bundles#getDirectory()}; it <b>MUST</b>
+        * be set.
+        * 
+        * @throws IOException
+        *             in case of IO errors
+        */
+       public void updateFile() throws IOException {
+               updateFile(Bundles.getDirectory());
        }
 
        /**
@@ -295,7 +831,8 @@ public class Bundle<E extends Enum<E>> {
         * "en" as a base if the resource is a translation file).
         * 
         * @param path
-        *            the path where the .properties files are
+        *            the path where the .properties files are, <b>MUST NOT</b> be
+        *            NULL
         * 
         * @throws IOException
         *             in case of IO errors
@@ -313,7 +850,7 @@ public class Bundle<E extends Enum<E>> {
                for (Field field : type.getDeclaredFields()) {
                        Meta meta = field.getAnnotation(Meta.class);
                        if (meta != null) {
-                               E id = E.valueOf(type, field.getName());
+                               E id = Enum.valueOf(type, field.getName());
                                String info = getMetaInfo(meta);
 
                                if (info != null) {
@@ -328,6 +865,51 @@ public class Bundle<E extends Enum<E>> {
                writer.close();
        }
 
+       /**
+        * Delete the .properties file.
+        * <p>
+        * Will use the most likely candidate as base if the file does not already
+        * exists and this resource is translatable (for instance, "en_US" will use
+        * "en" as a base if the resource is a translation file).
+        * <p>
+        * Will delete the files in {@link Bundles#getDirectory()}; it <b>MUST</b>
+        * be set.
+        * 
+        * @return TRUE if the file was deleted
+        */
+       public boolean deleteFile() {
+               return deleteFile(Bundles.getDirectory());
+       }
+
+       /**
+        * Delete the .properties file.
+        * <p>
+        * Will use the most likely candidate as base if the file does not already
+        * exists and this resource is translatable (for instance, "en_US" will use
+        * "en" as a base if the resource is a translation file).
+        * 
+        * @param path
+        *            the path where the .properties files are, <b>MUST NOT</b> be
+        *            NULL
+        * 
+        * @return TRUE if the file was deleted
+        */
+       public boolean deleteFile(String path) {
+               File file = getUpdateFile(path);
+               return file.delete();
+       }
+
+       /**
+        * The description {@link TransBundle}, that is, a {@link TransBundle}
+        * dedicated to the description of the values of the given {@link Bundle}
+        * (can be NULL).
+        * 
+        * @return the description {@link TransBundle}
+        */
+       public TransBundle<E> getDescriptionBundle() {
+               return descriptionBundle;
+       }
+
        /**
         * Reload the {@link Bundle} data files.
         * 
@@ -337,7 +919,7 @@ public class Bundle<E extends Enum<E>> {
         *            configuration)
         */
        public void reload(boolean resetToDefault) {
-               setBundle(name, null, resetToDefault);
+               setBundle(keyType, Locale.getDefault(), resetToDefault);
        }
 
        /**
@@ -349,40 +931,56 @@ public class Bundle<E extends Enum<E>> {
         * @return true if it does
         */
        protected boolean containsKey(String key) {
-               if (changeMap.containsKey(key)) {
-                       return true;
+               return changeMap.containsKey(key) || map.containsKey(key);
+       }
+
+       /**
+        * The default {@link Meta#def()} value for the given enumeration name.
+        * 
+        * @param id
+        *            the enumeration name (the "id")
+        * 
+        * @return the def value in the {@link MetaInfo} or "" if none (never NULL)
+        */
+       protected String getMetaDef(String id) {
+               String rep = "";
+               try {
+                       Meta meta = type.getDeclaredField(id).getAnnotation(Meta.class);
+                       rep = meta.def();
+               } catch (NoSuchFieldException e) {
+               } catch (SecurityException e) {
                }
 
-               if (map != null) {
-                       try {
-                               map.getObject(key);
-                               return true;
-                       } catch (MissingResourceException e) {
-                       }
+               if (rep == null) {
+                       rep = "";
                }
 
-               return false;
+               return rep;
        }
 
        /**
-        * Get the value for the given key if it exists in the internal map, or NULL
-        * if not.
+        * Get the value for the given key if it exists in the internal map, or
+        * <tt>def</tt> if not.
+        * <p>
+        * DO NOT get the default meta value (MetaInfo.def()).
         * 
         * @param key
         *            the key to check for
+        * @param def
+        *            the default value when it is not present in the internal map
         * 
-        * @return the value, or NULL
+        * @return the value, or <tt>def</tt> if not found
         */
-       protected String getString(String key) {
+       protected String getString(String key, String def) {
                if (changeMap.containsKey(key)) {
                        return changeMap.get(key);
                }
 
-               if (map != null && containsKey(key)) {
-                       return map.getString(key);
+               if (map.containsKey(key)) {
+                       return map.get(key);
                }
 
-               return null;
+               return def;
        }
 
        /**
@@ -395,7 +993,7 @@ public class Bundle<E extends Enum<E>> {
         *            the associated value
         */
        protected void setString(String key, String value) {
-               changeMap.put(key, value);
+               changeMap.put(key, value == null ? null : value.trim());
        }
 
        /**
@@ -408,44 +1006,49 @@ public class Bundle<E extends Enum<E>> {
         * @return the information to display or NULL if none
         */
        protected String getMetaInfo(Meta meta) {
-               String what = meta.what();
-               String where = meta.where();
-               String format = meta.format();
-               String info = meta.info();
-
-               int opt = what.length() + where.length() + format.length();
-               if (opt + info.length() == 0)
+               String desc = meta.description();
+               boolean group = meta.group();
+               Meta.Format format = meta.format();
+               String[] list = meta.list();
+               boolean nullable = meta.nullable();
+               String def = meta.def();
+               boolean array = meta.array();
+
+               // Default, empty values -> NULL
+               if (desc.length() + list.length + def.length() == 0 && !group
+                               && nullable && format == Format.STRING) {
                        return null;
+               }
 
                StringBuilder builder = new StringBuilder();
-               builder.append("# ");
-
-               if (opt > 0) {
-                       builder.append("(");
-                       if (what.length() > 0) {
-                               builder.append("WHAT: " + what);
-                               if (where.length() + format.length() > 0)
-                                       builder.append(", ");
-                       }
-
-                       if (where.length() > 0) {
-                               builder.append("WHERE: " + where);
-                               if (format.length() > 0)
-                                       builder.append(", ");
-                       }
+               for (String line : desc.split("\n")) {
+                       builder.append("# ").append(line).append("\n");
+               }
 
-                       if (format.length() > 0) {
-                               builder.append("FORMAT: " + format);
+               if (group) {
+                       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(") ");
+
+                       if (list.length > 0) {
+                               builder.append("\n# ALLOWED VALUES: ");
+                               boolean first = true;
+                               for (String value : list) {
+                                       if (!first) {
+                                               builder.append(", ");
+                                       }
+                                       builder.append(BundleHelper.escape(value));
+                                       first = false;
+                               }
                        }
 
-                       builder.append(")");
-                       if (info.length() > 0) {
-                               builder.append("\n# ");
+                       if (array) {
+                               builder.append("\n# (This item accepts a list of ^escaped comma-separated values)");
                        }
                }
 
-               builder.append(info);
-
                return builder.toString();
        }
 
@@ -455,7 +1058,7 @@ public class Bundle<E extends Enum<E>> {
         * @return the name
         */
        protected String getBundleDisplayName() {
-               return name.toString();
+               return keyType.toString();
        }
 
        /**
@@ -474,8 +1077,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
@@ -486,12 +1092,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
@@ -499,12 +1108,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(" = ");
 
@@ -529,12 +1145,9 @@ public class Bundle<E extends Enum<E>> {
         *            the path where the .properties files are
         * 
         * @return the source {@link File}
-        * 
-        * @throws IOException
-        *             in case of IO errors
         */
        protected File getUpdateFile(String path) {
-               return new File(path, name.name() + ".properties");
+               return new File(path, keyType.name() + ".properties");
        }
 
        /**
@@ -550,31 +1163,75 @@ public class Bundle<E extends Enum<E>> {
         *            configuration)
         */
        protected void setBundle(Enum<?> name, Locale locale, boolean resetToDefault) {
-               map = null;
                changeMap.clear();
                String dir = Bundles.getDirectory();
+               String bname = type.getPackage().getName() + "." + name.name();
 
+               boolean found = false;
                if (!resetToDefault && dir != null) {
                        try {
+                               // Look into Bundles.getDirectory() for .properties files
                                File file = getPropertyFile(dir, name.name(), locale);
                                if (file != null) {
-                                       Reader reader = new InputStreamReader(new FileInputStream(
-                                                       file), "UTF8");
-                                       map = new PropertyResourceBundle(reader);
+                                       InputStream in = new FileInputStream(file);
+                                       try {
+                                               Reader reader = new InputStreamReader(in, "UTF-8");
+                                               try {
+                                                       resetMap(new PropertyResourceBundle(reader));
+                                               } finally {
+                                                       reader.close();
+                                               }
+                                       } finally {
+                                               in.close();
+                                       }
+                                       found = true;
                                }
                        } catch (IOException e) {
                                e.printStackTrace();
                        }
                }
 
-               if (map == null) {
+               if (!found) {
+                       // Look into the package itself for resources
                        try {
-                               map = ResourceBundle.getBundle(type.getPackage().getName()
-                                               + "." + name.name(), locale,
-                                               new FixedResourceBundleControl());
+                               resetMap(ResourceBundle
+                                               .getBundle(bname, locale, type.getClassLoader(),
+                                                               new FixedResourceBundleControl()));
+                               found = true;
+                       } catch (MissingResourceException e) {
                        } catch (Exception e) {
-                               // We have no bundle for this Bundle
-                               map = null;
+                               e.printStackTrace();
+                       }
+               }
+
+               if (!found) {
+                       // We have no bundle for this Bundle
+                       System.err.println("No bundle found for: " + bname);
+                       resetMap(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
+        */
+       protected void resetMap(ResourceBundle bundle) {
+               this.map.clear();
+               if (bundle != null) {
+                       for (Field field : type.getDeclaredFields()) {
+                               try {
+                                       Meta meta = field.getAnnotation(Meta.class);
+                                       if (meta != null) {
+                                               E id = Enum.valueOf(type, field.getName());
+                                               String value = bundle.getString(id.name());
+                                               this.map.put(id.name(),
+                                                               value == null ? null : value.trim());
+                                       }
+                               } catch (MissingResourceException e) {
+                               }
                        }
                }
        }
@@ -584,9 +1241,9 @@ public class Bundle<E extends Enum<E>> {
         * the "set" methods ( {@link Bundle#setString(Enum, String)}...) at the
         * current time.
         * 
-        * @return a snapshot to use with {@link Bundle#restoreChanges(Object)}
+        * @return a snapshot to use with {@link Bundle#restoreSnapshot(Object)}
         */
-       protected Object takeChangesSnapshot() {
+       public Object takeSnapshot() {
                return new HashMap<String, String>(changeMap);
        }
 
@@ -598,14 +1255,14 @@ public class Bundle<E extends Enum<E>> {
         *            the snapshot or NULL
         */
        @SuppressWarnings("unchecked")
-       protected void restoreChanges(Object snap) {
+       public void restoreSnapshot(Object snap) {
                if (snap == null) {
                        changeMap.clear();
                } else {
                        if (snap instanceof Map) {
                                changeMap = (Map<String, String>) snap;
                        } else {
-                               throw new Error(
+                               throw new RuntimeException(
                                                "Restoring changes in a Bundle must be done on a changes snapshot, "
                                                                + "or NULL to discard current changes");
                        }
@@ -616,9 +1273,9 @@ public class Bundle<E extends Enum<E>> {
         * Return the resource file that is closer to the {@link Locale}.
         * 
         * @param dir
-        *            the dirctory to look into
+        *            the directory to look into
         * @param name
-        *            the file basename (without <tt>.properties</tt>)
+        *            the file base name (without <tt>.properties</tt>)
         * @param locale
         *            the {@link Locale}
         * 
@@ -646,9 +1303,9 @@ public class Bundle<E extends Enum<E>> {
                        file = new File(dir, name + loc + ".properties");
                        if (file.exists()) {
                                break;
-                       } else {
-                               file = null;
                        }
+
+                       file = null;
                }
 
                return file;