/[schmitzm]/trunk/src/skrueger/i8n/Translation.java
ViewVC logotype

Diff of /trunk/src/skrueger/i8n/Translation.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 243 by alfonx, Tue Jul 28 12:40:08 2009 UTC revision 244 by alfonx, Wed Jul 29 09:33:33 2009 UTC
# Line 1  Line 1 
1  package skrueger.i8n;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.beans.PropertyChangeEvent;   *
4  import java.beans.PropertyChangeListener;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.util.ArrayList;   * classes based on Java 1.6, focussing (not only) on Java Swing
6  import java.util.HashMap;   * and the Geotools library.
7  import java.util.List;   *
8  import java.util.Locale;   * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10  import javax.swing.JComponent;   *
11  import javax.swing.JTable;   * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13  import org.apache.log4j.Logger;   * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15  /**   *
16   * Represents a {@link HashMap} of translations. toString() returns the   * This program is distributed in the hope that it will be useful,
17   * appropriate translation   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   *   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   * @author @author <a href="mailto:[email protected]">Stefan Alfons   * GNU General Public License for more details.
20   *         Kr&uuml;ger</a>   *
21   */   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22     * along with this program; if not, write to the Free Software
23  public class Translation extends HashMap<String, String> {   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24          public static final String LOCALECHANGE_PROPERTY = "localechange";   * or try this link: http://www.gnu.org/licenses/lgpl.html
25          public static final String NO_TRANSLATION = "NO TRANSLATION";   *
26          public static final String DEFAULT_KEY = "default";   * Contributors:
27          static final Logger log = Logger.getLogger(Translation.class);   *     Martin O. J. Schmitz - initial API and implementation
28          static String activeLang = "fr";   *     Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30          static protected List<PropertyChangeListener> listeners = new ArrayList<PropertyChangeListener>();  package skrueger.i8n;
31    
32          static {  import java.beans.PropertyChangeEvent;
33    import java.beans.PropertyChangeListener;
34                  // TODO default aus Locale auslesen und mit möglichen vergleichen...  import java.util.ArrayList;
35                  // mmm.. vor laden von atlasml immer DEFAULT_KEY, also hier nicht  import java.util.HashMap;
36    import java.util.List;
37                  // Get default locale  import java.util.Locale;
38                  Locale locale = Locale.getDefault();  
39                  setActiveLang(locale.getLanguage());  import javax.swing.JComponent;
40          }  import javax.swing.JTable;
41    
42          @Override  import org.apache.log4j.Logger;
43          /*  
44           * @comment To make a copy of a translation see methods toOneLine() and  /**
45           * fromOneLine()   * Represents a {@link HashMap} of translations. toString() returns the
46           */   * appropriate translation
47          public Translation clone() {   *
48                  return (Translation) super.clone();   * @author @author <a href="mailto:[email protected]">Stefan Alfons
49          }   *         Kr&uuml;ger</a>
50     */
51          /**  
52           * Get the two-letter language sting that is active  public class Translation extends HashMap<String, String> {
53           */          public static final String LOCALECHANGE_PROPERTY = "localechange";
54          public static String getActiveLang() {          public static final String NO_TRANSLATION = "NO TRANSLATION";
55                  return activeLang;          public static final String DEFAULT_KEY = "default";
56          }          static final Logger log = Logger.getLogger(Translation.class);
57            static String activeLang = "fr";
58          /**  
59           * Set up the {@link Translation}-system to use language. If a change is          static protected List<PropertyChangeListener> listeners = new ArrayList<PropertyChangeListener>();
60           * performed, events are fired to listeners. Nothing is done if the new  
61           * language equals the old language. The system's default locale is changed.          static {
62           *  
63           * @param newLang                  // TODO default aus Locale auslesen und mit möglichen vergleichen...
64           *            The ISO Code of the new active language                  // mmm.. vor laden von atlasml immer DEFAULT_KEY, also hier nicht
65           */  
66          public static void setActiveLang(String newLang) {                  // Get default locale
67                  setActiveLang(newLang, true);                  Locale locale = Locale.getDefault();
68          }                  setActiveLang(locale.getLanguage());
69            }
70          /**  
71           * Set up the {@link Translation}-system to use language. If a change is          @Override
72           * performed, events are fired to listeners. Nothing is done if the new          /*
73           * language equals the old language.           * @comment To make a copy of a translation see methods toOneLine() and
74           *           * fromOneLine()
75           * @param newLang           */
76           *            The ISO Code of the new active language          public Translation clone() {
77           *                  return (Translation) super.clone();
78           * @param setDefaultLocale          }
79           *            Shall the system's default locale be changed?  
80           */          /**
81          public static void setActiveLang(String newLang, boolean setDefaultLocale) {           * Get the two-letter language sting that is active
82                  if (getActiveLang().equals(newLang)) {           */
83                          return;          public static String getActiveLang() {
84                  }                  return activeLang;
85            }
86                  if (!I8NUtil.isValidISOLangCode(newLang)) {  
87                          throw new IllegalArgumentException("'" + newLang          /**
88                                          + "' is not a valid ISO language code.");           * Set up the {@link Translation}-system to use language. If a change is
89                  }           * performed, events are fired to listeners. Nothing is done if the new
90             * language equals the old language. The system's default locale is changed.
91                  Locale newLocale = new Locale(newLang);           *
92                  if (setDefaultLocale)           * @param newLang
93                          Locale.setDefault(newLocale);           *            The ISO Code of the new active language
94             */
95                  /**          public static void setActiveLang(String newLang) {
96                   * Setting default locale for Swing JComponents to work around bug                  setActiveLang(newLang, true);
97                   * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4884480          }
98                   */  
99                  JComponent.setDefaultLocale(newLocale);          /**
100             * Set up the {@link Translation}-system to use language. If a change is
101                  Translation.activeLang = newLang;           * performed, events are fired to listeners. Nothing is done if the new
102             * language equals the old language.
103                  fireLocaleChangeEvents();           *
104             * @param newLang
105                  log.info("skrueger.i8n.Translation switched ActiveLang to " + newLang);           *            The ISO Code of the new active language
106          }           *
107             * @param setDefaultLocale
108          /**           *            Shall the system's default locale be changed?
109           * Initializes a new {@link Translation} with a default translation if a           */
110           * simple text is passed. If a "oneLine" text is parsed, it is interpreted.          public static void setActiveLang(String newLang, boolean setDefaultLocale) {
111           * Other translations may be added later - this is a HashMap<br/>                  if (getActiveLang().equals(newLang)) {
112           *                          return;
113           * @param defaultTranslation                  }
114           *  
115           * @see public Translation(List<String> languages, String                  if (!I8NUtil.isValidISOLangCode(newLang)) {
116           *      defaultTranslation) {                          throw new IllegalArgumentException("'" + newLang
117           *                                          + "' is not a valid ISO language code.");
118           */                  }
119          public Translation(String defaultTranslation) {  
120                    Locale newLocale = new Locale(newLang);
121                  fromOneLine(defaultTranslation);                  if (setDefaultLocale)
122                            Locale.setDefault(newLocale);
123          }  
124                    /**
125          /**                   * Setting default locale for Swing JComponents to work around bug
126           * Initializes a new {@link Translation}, an uses the given String to                   * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4884480
127           * initialize the {@link Translation} for all languages codes passed.                   */
128           *                  JComponent.setDefaultLocale(newLocale);
129           * The translations can be changed later  
130           */                  Translation.activeLang = newLang;
131          public Translation(List<String> languages, String defaultTranslation) {  
132                  // put(DEFAULT_KEY, defaultTranslation);                  fireLocaleChangeEvents();
133                  if (languages == null) {  
134                          put(DEFAULT_KEY, defaultTranslation);                  log.info("skrueger.i8n.Translation switched ActiveLang to " + newLang);
135                  } else          }
136                          for (String code : languages) {  
137                                  if (code.equals(getActiveLang())) {          /**
138                                          put(code, defaultTranslation);           * Initializes a new {@link Translation} with a default translation if a
139                                  }           * simple text is passed. If a "oneLine" text is parsed, it is interpreted.
140                          }           * Other translations may be added later - this is a HashMap<br/>
141          }           *
142             * @param defaultTranslation
143          /**           *
144           * Sometimes Translations are optional, like for keywords.           * @see public Translation(List<String> languages, String
145           */           *      defaultTranslation) {
146          public Translation() {           *
147          }           */
148            public Translation(String defaultTranslation) {
149          /**  
150           * Fills the {@link Translation} with the values coded into the String                  fromOneLine(defaultTranslation);
151           * Format of {@link String} is: "de{Baum}en{tree}"  
152           * <p>          }
153           * <ul>  
154           * <li>If <code>oneLineCoded</code> is empty or null, NO TRANSLATION is set.          /**
155           * <li>If format can't be recognized, the {@link String} is interpreted as           * Initializes a new {@link Translation}, an uses the given String to
156           * the translation in the <code>{@value #DEFAULT_KEY}</code> language           * initialize the {@link Translation} for all languages codes passed.
157           *           *
158           * @author Stefan Alfons Krüger           * The translations can be changed later
159           */           */
160          public void fromOneLine(final String oneLineCoded) {          public Translation(List<String> languages, String defaultTranslation) {
161                  clear();                  // put(DEFAULT_KEY, defaultTranslation);
162                  if ((oneLineCoded == null) || (oneLineCoded.equals(""))) {                  if (languages == null) {
163                          put(DEFAULT_KEY, "");                          put(DEFAULT_KEY, defaultTranslation);
164                          return;                  } else
165                  }                          for (String code : languages) {
166                                    if (code.equals(getActiveLang())) {
167                  if (oneLineCoded.indexOf("}") == -1) {                                          put(code, defaultTranslation);
168                          // log.warn("The String '"+oneLineCoded+"' is not in oneLine coded => put(DEFAULT_KEY,oneLineCoded);");                                  }
169                          put(DEFAULT_KEY, oneLineCoded);                          }
170                  }          }
171    
172                  String eatUp = oneLineCoded;          /**
173                  while (eatUp.indexOf("}") != -1) {           * Sometimes Translations are optional, like for keywords.
174                          String substring = eatUp.substring(0, eatUp.indexOf("}"));           */
175            public Translation() {
176                          // log.debug("substring = "+substring);          }
177                          String key = substring.substring(0, substring.indexOf("{"));  
178                          String value = substring.substring(substring.indexOf("{") + 1,          /**
179                                          substring.length());           * Fills the {@link Translation} with the values coded into the String
180                          // log.debug("key="+key);           * Format of {@link String} is: "de{Baum}en{tree}"
181                          // log.debug("value="+value);           * <p>
182                          put(key, value);           * <ul>
183                          eatUp = eatUp.substring(eatUp.indexOf("}") + 1);           * <li>If <code>oneLineCoded</code> is empty or null, NO TRANSLATION is set.
184                  }           * <li>If format can't be recognized, the {@link String} is interpreted as
185          }           * the translation in the <code>{@value #DEFAULT_KEY}</code> language
186             *
187          /**           * @author Stefan Alfons Krüger
188           * Exports the Translations to a String of the Format: "de{Baum}en{tree}"           */
189           *          public void fromOneLine(final String oneLineCoded) {
190           * @author Stefan Alfons Krüger                  clear();
191           */                  if ((oneLineCoded == null) || (oneLineCoded.equals(""))) {
192          public String toOneLine() {                          put(DEFAULT_KEY, "");
193                  return I8NUtil.toOneLine(this);                          return;
194          }                  }
195    
196          /**                  if (oneLineCoded.indexOf("}") == -1) {
197           * Returns the right translation by using the {@link #activeLang} field. If                          // log.warn("The String '"+oneLineCoded+"' is not in oneLine coded => put(DEFAULT_KEY,oneLineCoded);");
198           * no translation is set, an ugly String {@link #NO_TRANSLATION} will re                          put(DEFAULT_KEY, oneLineCoded);
199           * returned. This might be changed for the final release. If the correct                  }
200           * language was not found, any entry in the {@link Translation}  
201           * {@link HashMap} will be returned, that contains more than an empty                  String eatUp = oneLineCoded;
202           * string.                  while (eatUp.indexOf("}") != -1) {
203           */                          String substring = eatUp.substring(0, eatUp.indexOf("}"));
204          @Override  
205          public String toString() {                          // log.debug("substring = "+substring);
206                  if (get(activeLang) != null) {                          String key = substring.substring(0, substring.indexOf("{"));
207                          return get(activeLang);                          String value = substring.substring(substring.indexOf("{") + 1,
208                  }                                          substring.length());
209                  // ****************************************************************************                          // log.debug("key="+key);
210                  // MS: The ISDSS needs the concept of the default lang!! So I took the                          // log.debug("value="+value);
211                  // following in again!!                          put(key, value);
212                  // ****************************************************************************                          eatUp = eatUp.substring(eatUp.indexOf("}") + 1);
213                  // else return "";                  }
214                  // //****************************************************************************          }
215                  // // The following is commented out.. the concept of the default lang  
216                  // seems to be bad....          /**
217                  // //****************************************************************************           * Exports the Translations to a String of the Format: "de{Baum}en{tree}"
218                  // MS:           *
219                  else {           * @author Stefan Alfons Krüger
220                          if (get(DEFAULT_KEY) != null) {           */
221                                  // log.debug("default lang returned, cuz the translation to "+activeLang+" was not found. Schmeiss raus martin, wenn du das mit der default trans geklärt hast.");          public String toOneLine() {
222                                  return get(DEFAULT_KEY);                  return I8NUtil.toOneLine(this);
223                          }          }
224    
225                          // log.debug("return first best <> '' ");          /**
226                          if (size() > 0)           * Returns the right translation by using the {@link #activeLang} field. If
227                                  for (String s : values()) {           * no translation is set, an ugly String {@link #NO_TRANSLATION} will re
228                                          if ((s != null) && (s.trim().length() > 0))           * returned. This might be changed for the final release. If the correct
229                                                  return s;           * language was not found, any entry in the {@link Translation}
230                                  }           * {@link HashMap} will be returned, that contains more than an empty
231                  }           * string.
232  //              log.warn("No translation found!");           */
233                  return NO_TRANSLATION;          @Override
234          }          public String toString() {
235                    if (get(activeLang) != null) {
236          /**                          return get(activeLang);
237           * Copy this {@link Translation} to another {@link Translation} e.g. for                  }
238           * editing                  // ****************************************************************************
239           *                  // MS: The ISDSS needs the concept of the default lang!! So I took the
240           * @return the destination {@link Translation}                  // following in again!!
241           */                  // ****************************************************************************
242          public Translation copy(Translation backup) {                  // else return "";
243                  if (backup == null)                  // //****************************************************************************
244                          throw new IllegalArgumentException(                  // // The following is commented out.. the concept of the default lang
245                                          "Target translation may not be null.");                  // seems to be bad....
246                  for (String s : keySet()) {                  // //****************************************************************************
247                          backup.put(s, get(s));                  // MS:
248                  }                  else {
249                  return backup;                          if (get(DEFAULT_KEY) != null) {
250          }                                  // log.debug("default lang returned, cuz the translation to "+activeLang+" was not found. Schmeiss raus martin, wenn du das mit der default trans geklärt hast.");
251                                    return get(DEFAULT_KEY);
252          /**                          }
253           * {@link PropertyChangeListener} can be registered to be informed when the  
254           * {@link Locale} changed.                          // log.debug("return first best <> '' ");
255           *                          if (size() > 0)
256           * @param propertyChangeListener                                  for (String s : values()) {
257           */                                          if ((s != null) && (s.trim().length() > 0))
258          public static void addLocaleChangeListener(                                                  return s;
259                          PropertyChangeListener propertyChangeListener) {                                  }
260                  listeners.add(propertyChangeListener);                  }
261          }  //              log.warn("No translation found!");
262                    return NO_TRANSLATION;
263          /**          }
264           * Informs all registered {@link PropertyChangeListener}s about a change of  
265           * the the {@link Locale}.          /**
266           */           * Copy this {@link Translation} to another {@link Translation} e.g. for
267          public static void fireLocaleChangeEvents() {           * editing
268                  PropertyChangeEvent pce = new PropertyChangeEvent(new Translation(           *
269                                  new ArrayList<String>(), "fakeSource"), LOCALECHANGE_PROPERTY,           * @return the destination {@link Translation}
270                                  null, getActiveLang());           */
271                  for (PropertyChangeListener pcl : listeners) {          public Translation copy(Translation backup) {
272                          if (pcl != null)                  if (backup == null)
273                                  pcl.propertyChange(pce);                          throw new IllegalArgumentException(
274                  }                                          "Target translation may not be null.");
275          }                  for (String s : keySet()) {
276                            backup.put(s, get(s));
277  }                  }
278                    return backup;
279            }
280    
281            /**
282             * {@link PropertyChangeListener} can be registered to be informed when the
283             * {@link Locale} changed.
284             *
285             * @param propertyChangeListener
286             */
287            public static void addLocaleChangeListener(
288                            PropertyChangeListener propertyChangeListener) {
289                    listeners.add(propertyChangeListener);
290            }
291    
292            /**
293             * Informs all registered {@link PropertyChangeListener}s about a change of
294             * the the {@link Locale}.
295             */
296            public static void fireLocaleChangeEvents() {
297                    PropertyChangeEvent pce = new PropertyChangeEvent(new Translation(
298                                    new ArrayList<String>(), "fakeSource"), LOCALECHANGE_PROPERTY,
299                                    null, getActiveLang());
300                    for (PropertyChangeListener pcl : listeners) {
301                            if (pcl != null)
302                                    pcl.propertyChange(pce);
303                    }
304            }
305    
306    }

Legend:
Removed from v.243  
changed lines
  Added in v.244

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26