/[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 20 by alfonx, Wed Mar 4 17:31:50 2009 UTC revision 1097 by alfonx, Sun Oct 10 21:14:05 2010 UTC
# Line 1  Line 1 
1  package skrueger.i8n;  /*******************************************************************************
2  import java.util.HashMap;   * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.util.List;   *
4  import java.util.Locale;   * This file is part of the SCHMITZM library - a collection of utility
5     * classes based on Java 1.6, focusing (not only) on Java Swing
6  import javax.swing.JColorChooser;   * and the Geotools library.
7  import javax.swing.JComponent;   *
8  import javax.swing.JFileChooser;   * The SCHMITZM project is hosted at:
9  import javax.swing.JOptionPane;   * http://wald.intevation.org/projects/schmitzm/
10     *
11  import org.apache.log4j.Logger;   * 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  /**   * as published by the Free Software Foundation; either version 3
14   * Represents a {@link HashMap} of translations.   * of the License, or (at your option) any later version.
15   * toString() returns the appropriate translation   *
16   *   * This program is distributed in the hope that it will be useful,
17   * @author @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   */   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19     * GNU General Public License for more details.
20  public class Translation extends HashMap<String, String> {   *
21          public static final String NO_TRANSLATION = "NO TRANSLATION";   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22          public static final String DEFAULT_KEY = "default";   * along with this program; if not, write to the Free Software
23          static final Logger log = Logger.getLogger( Translation.class );   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24          static String activeLang = "fr";   * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26          static {   * Contributors:
27                     *     Martin O. J. Schmitz - initial API and implementation
28                  //TODO default aus Locale auslesen und mit möglichen vergleichen... mmm.. vor laden von atlasml immer DEFAULT_KEY, also hier nicht   *     Stefan A. Tzeggai - additional utility classes
29     ******************************************************************************/
30                    // Get default locale  package skrueger.i8n;
31              Locale locale = Locale.getDefault();  
32                  setActiveLang(locale.getLanguage());  import java.awt.event.ActionEvent;
33          }  import java.awt.event.ActionListener;
34            import java.beans.PropertyChangeEvent;
35          @Override  import java.beans.PropertyChangeListener;
36          public Translation clone() {  import java.io.Serializable;
37                  return (Translation) super.clone();  import java.util.ArrayList;
38          }  import java.util.HashMap;
39    import java.util.Iterator;
40          /**  import java.util.List;
41           * Get the two-letter language sting that is active  import java.util.Locale;
42           */  import java.util.Random;
43          public static String getActiveLang() {  import java.util.Set;
44                  return activeLang;  import java.util.WeakHashMap;
45          }  
46    import javax.swing.JComponent;
47          /**  
48           * Set up the {@link Translation}-system to use language.  import org.apache.log4j.Logger;
49           * @param activeLang  import org.geotools.util.WeakHashSet;
50           */  import org.opengis.util.InternationalString;
51          public static void setActiveLang(String activeLang) {  
52                  if (!I8NUtil.isValidISOLangCode(activeLang)) {  import schmitzm.lang.ResourceProvider;
53                          throw new IllegalArgumentException("'"+activeLang+"' is not a valid ISO language code.");  import schmitzm.lang.SortableVector;
54                  }  import skrueger.geotools.Copyable;
55    
56                  Locale newLocale = new Locale(activeLang);  /**
57                  Locale.setDefault(newLocale);   * Represents a {@link HashMap} of translations. toString() returns the
58                     * appropriate translation. This class is mutable.
59                  /**   *
60                   * Setting default locale for Swing JComponents to work around bug   * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
61                   * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4884480   */
62                   */  
63                  JComponent.setDefaultLocale(newLocale);  public class Translation extends HashMap<String, String> implements
64                                    Copyable<Translation>, Serializable, Cloneable {
65                  Translation.activeLang = activeLang;  
66                  log.info("Translation-system switched to "+activeLang);          private static final long serialVersionUID = -347702744122305245L;
67          }  
68            public static final String LOCALECHANGE_PROPERTY = "localechange";
69          /**          public static final String ACTIVELANG_CHANGE_PROPERTY = "activelangchange";
70           * Initilises a new {@link Translation} with a default translation.          public static final String NO_TRANSLATION = "NO TRANSLATION";
71           * Other translations may be added later.          public static final String DEFAULT_KEY = "default";
72           *          static final Logger LOGGER = Logger.getLogger(Translation.class);
73           * @param defaultTranslation  
74           *          /** A static field defining which language should be served **/
75           * @deprecated SK: The concept of the default translation doesn't seem so nice to me anymore..          static String activeLang = Locale.getDefault().getLanguage();
76           * I would prefer the default translation to be set for all valid languages.  
77           *          /**
78           * @see public Translation(List<String> languages, String defaultTranslation) {           * A {@link WeakHashSet} of {@link PropertyChangeListener} that will be
79           *           * informed if the acitveLang has been changed with a setActiveLang(..,true
80           */           * or false).
81          public Translation(String defaultTranslation) {           */
82                  put(DEFAULT_KEY, defaultTranslation);          static protected WeakHashSet<PropertyChangeListener> listenersActiveLangChange = new WeakHashSet<PropertyChangeListener>(
83          }                          PropertyChangeListener.class);
84    
85          /**          /**
86           * Initilises a new {@link Translation}, an uses the given String to           * A {@link WeakHashSet} of {@link PropertyChangeListener} that will be
87           * initialise the {@link Translation} for all languages codes passed.           * informed if the Locale has been changed due to a setActiveLang(..,true)
88           *           */
89           * The translations can be cahnged later          static protected WeakHashSet<PropertyChangeListener> listenersLocaleChange = new WeakHashSet<PropertyChangeListener>(
90           */                          PropertyChangeListener.class);
91          public Translation(List<String> languages, String defaultTranslation) {  
92                  // put(DEFAULT_KEY, defaultTranslation);          /**
93                  if (languages == null) {           * A {@link WeakHashSet} of {@link PropertyChangeListener} that will be
94                          put(DEFAULT_KEY, defaultTranslation);           * informed if any of the translations changed. TODO: Should be registerable
95                  }           * for specific languages
96                  else for (String code : languages){           */
97                          put(code, defaultTranslation);          private WeakHashSet<ActionListener> changeListeners = new WeakHashSet<ActionListener>(
98                  }                          ActionListener.class);
99          }  
100            static {
101          /**                  // Get default locale
102           * Sometimes Translations are optional, like for keywords.                  Locale locale = Locale.getDefault();
103           */                  setActiveLang(locale.getLanguage());
104          public Translation() {          }
105                  super();  
106          }          @Override
107            /**
108          /**           * implemented using #toOneLine and #fromOneLine
109           * Fills the {@link Translation} with the values coded into the String           */
110           * Format of {@link String} is: "de{Baum}en{tree}"          public Translation clone() {
111           * <p>                  Translation clone = new Translation();
112           * <ul>                  clone.fromOneLine(toOneLine());
113           * <li> If <code>oneLineCoded</code> is empty or null, NO TRANSLATION is set.                  return clone;
114           * <li> If format can't be recognized, the {@link String} is interpreted as the translation in the <code>{@value #DEFAULT_KEY}</code> language          }
115           *  
116           * @author Stefan Alfons Krüger          /**
117           */           * Get the two-letter language sting that is active
118          public void fromOneLine( final String oneLineCoded) {           */
119                  clear();          public static String getActiveLang() {
120                  if ( (oneLineCoded == null) || (oneLineCoded.equals("")) ) {                  return activeLang;
121                          put(DEFAULT_KEY,NO_TRANSLATION);          }
122                          return;  
123                  }          /**
124             * Set up the {@link Translation}-system to use language. If a change is
125                  if (oneLineCoded.indexOf("}") == -1) {           * performed, events are fired to listeners. Nothing is done if the new
126                  //      log.warn("The String '"+oneLineCoded+"' is not in oneLine coded => put(DEFAULT_KEY,oneLineCoded);");           * language equals the old language. The system's default {@link Locale} is
127                          put(DEFAULT_KEY,oneLineCoded);           * changed.
128                  }           *
129             * @param newLang
130                  String eatUp = oneLineCoded;           *            The ISO Code of the new active language
131                  while ( eatUp.indexOf("}") != -1) {           */
132                          String substring = eatUp.substring(0, eatUp.indexOf("}"));          public static void setActiveLang(String newLang) {
133                    setActiveLang(newLang, true);
134  //                      log.debug("substring = "+substring);          }
135                          String key   = substring.substring(0, substring.indexOf("{") );  
136                          String value = substring.substring(substring.indexOf("{")+1, substring.length() );          /**
137  //                      log.debug("key="+key);           * Set up the {@link Translation}-system to use language. If a change is
138  //                      log.debug("value="+value);           * performed, events are fired to listeners. Nothing is done if the new
139                          put(key,value);           * language equals the old language.
140                          eatUp = eatUp.substring(eatUp.indexOf("}")+1);           *
141                  }           * @param newLang
142          }           *            The ISO Code of the new active language
143             *
144          /**           * @param setDefaultLocale
145           * Exports the Translations to a String of the Format: "de{Baum}en{tree}"           *            Shall the system's default locale be changed?
146           * @author Stefan Alfons Krüger           */
147           */          public static void setActiveLang(String newLang, boolean setDefaultLocale) {
148          public String toOneLine(){                  if (getActiveLang().equals(newLang)) {
149                  StringBuffer oneLine = new StringBuffer();                          return;
150                  for (String key: keySet()) {                  }
151                          oneLine.append(key+"{"+ get(key) + "}");  
152                  }                  if (!I8NUtil.isValidISOLangCode(newLang)) {
153                  return oneLine.toString();                          throw new IllegalArgumentException("'" + newLang
154          }                                          + "' is not a valid ISO language code.");
155                    }
156          /**  
157           * Returns the right translation by using the {@link #activeLang} field.                  Translation.activeLang = newLang;
158           * If no translation is set, an ugly String {@link #NO_TRANSLATION} will re returned. This might be changed for the final release.                  fireActiveLangChangeEvents();
159           * If the correct language was not found, any entry in the {@link Translation} {@link HashMap} will be returned, that contains  
160           *  more than an empty string.                  Locale newLocale = new Locale(newLang);
161           */                  if (setDefaultLocale) {
162          @Override  
163          public String toString(){                          Locale.setDefault(newLocale);
164                  if ( get(activeLang) != null ) {                          /**
165                          return get(activeLang);                           * Setting default locale for Swing JComponents to work around bug
166                  }                           * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4884480
167                  //****************************************************************************                           */
168                  // MS: The ISDSS needs the concept of the default lang!! So I took the                          JComponent.setDefaultLocale(newLocale);
169                  //     following in again!!  
170                  //****************************************************************************                          fireLocaleChangeEvents();
171  //              else return "";  
172  //              //****************************************************************************                          LOGGER.info(Translation.class.getName()
173  //              // The following is commented out.. the concept of the default lang seems to be bad....                                          + " switched ActiveLang and Locale to " + newLang);
174  //              //****************************************************************************                  } else {
175                  // MS:                          LOGGER.info(Translation.class.getName()
176                  else {                                          + " switched ActiveLang to " + newLang);
177                          if ( get(DEFAULT_KEY) != null ) {                  }
178  //                              log.debug("default lng returned, cuz the translation to "+activeLang+" was not found. Schmeiss raus martin, wenn du das mit der default trans geklärt hast.");  
179                                  return get(DEFAULT_KEY);          }
180                          }  
181            /**
182                          // log.debug("return first best <> '' ");           * Initializes a new {@link Translation} with a default translation if a
183                          if (size() > 0)           * simple text is passed. If a "oneLine" text is parsed, it is interpreted.
184                                  for ( String s : values() ) {           * Other translations may be added later - this is a HashMap<br/>
185                                          if ( (s != null) && (s.trim().length()>0) )           *
186                                                  return s;           * @param defaultTranslation
187                                  }           *
188                  }           * @see public Translation(List<String> languages, String
189                  log.warn("No translation found!");           *      defaultTranslation) {
190                  return NO_TRANSLATION;           *
191          }           */
192            public Translation(String defaultTranslation) {
193          /**  
194           * Copy this {@link Translation} to another {@link Translation}                  fromOneLine(defaultTranslation);
195           * e.g. for editing  
196           *          }
197           * @return the destination {@link Translation}  
198           */          /**
199          public Translation copy(Translation backup) {           * Initializes a new {@link Translation}, an uses the given String to
200                  if (backup == null) throw new IllegalArgumentException("Target translation may not be null.");           * initialize the {@link Translation} for all languages codes passed. The
201                  for (String s : keySet() ) {           * translations can be changed later. This class is not immutable.
202                          backup.put(s, get(s) );           *
203                  }           * @param languages
204                  return backup;           *            if empty or null, the given default {@link Translation} till
205          }           *            be stored under a special key {@link #DEFAULT_KEY}
206             *
207  }           *
208             */
209            public Translation(List<String> languages, String defaultTranslation) {
210                    if (languages == null || languages.isEmpty()) {
211                            put(DEFAULT_KEY, defaultTranslation);
212                    } else
213                            for (String code : languages) {
214                                    put(code, defaultTranslation);
215                            }
216            }
217    
218            /**
219             * Sometimes Translations are optional, like for keywords.
220             */
221            public Translation() {
222            }
223    
224            /**
225             * Fills the {@link Translation} with the values coded into the String
226             * Format of {@link String} is: "de{Baum}en{tree}"
227             * <p>
228             * <ul>
229             * <li>If <code>oneLineCoded</code> is empty or null, NO TRANSLATION is set.
230             * <li>If format can't be recognized, the {@link String} is interpreted as
231             * the translation in the <code>{@value #DEFAULT_KEY}</code> language
232             *
233             * @author Stefan Alfons Tzeggai
234             */
235            public void fromOneLine(final String oneLineCoded) {
236    
237                    clear();
238    
239                    try {
240    
241                            if ((oneLineCoded == null) || (oneLineCoded.equals(""))) {
242                                    put(DEFAULT_KEY, "");
243                                    return;
244                            }
245    
246                            if (oneLineCoded.indexOf("}") == -1) {
247                                    // log.warn("The String '"+oneLineCoded+"' is not in oneLine coded => put(DEFAULT_KEY,oneLineCoded);");
248                                    put(DEFAULT_KEY, oneLineCoded);
249                            }
250    
251                            String eatUp = oneLineCoded;
252                            while (eatUp.indexOf("}") != -1) {
253                                    String substring = eatUp.substring(0, eatUp.indexOf("}"));
254    
255                                    // log.debug("substring = "+substring);
256                                    String key = substring.substring(0, substring.indexOf("{"));
257                                    String value = substring.substring(substring.indexOf("{") + 1,
258                                                    substring.length());
259                                    // log.debug("key="+key);
260                                    // log.debug("value="+value);
261                                    put(key, value);
262                                    eatUp = eatUp.substring(eatUp.indexOf("}") + 1);
263                            }
264                    } catch (Exception e) {
265                            LOGGER.warn("Error while reading the oneLineCode '" + oneLineCoded
266                                            + "'", e);
267                            LOGGER.warn("Translation will be empty!");
268                    }
269            }
270    
271            /**
272             * Exports the Translations to a String of the Format: "de{Baum}en{tree}"
273             *
274             * @author Stefan Alfons Tzeggai
275             */
276            public String toOneLine() {
277                    return I8NUtil.toOneLine(this);
278            }
279    
280            /**
281             * Returns the correct translation by using the {@link #activeLang} field.
282             * If no translation is set, an ugly String {@link #NO_TRANSLATION} will re
283             * returned. This might be changed for the final release. If the correct
284             * language was not found, any entry in the {@link Translation}
285             * {@link HashMap} will be returned, that contains more than an empty
286             * string.
287             */
288            @Override
289            public String toString() {
290                    final String string = get(activeLang);
291                    if (string != null) {
292                            return get(activeLang);
293                    }
294                    // ****************************************************************************
295                    // MS: The ISDSS needs the concept of the default lang!! So I took the
296                    // following in again!!
297                    // ****************************************************************************
298                    // else return "";
299                    // //****************************************************************************
300                    // // ST: The following is commented out.. the concept of the default
301                    // lang
302                    // seems to be bad....
303                    // //****************************************************************************
304                    // MS:
305                    else {
306                            if (get(DEFAULT_KEY) != null) {
307                                    return get(DEFAULT_KEY);
308                            }
309    
310                            // log.debug("return first best <> '' ");
311                            if (size() > 0)
312                                    for (String s : values()) {
313                                            if ((s != null) && (s.trim().length() > 0))
314                                                    return s;
315                                    }
316                    }
317                    // log.warn("No translation found!");
318                    return NO_TRANSLATION;
319            }
320    
321            /**
322             * {@link PropertyChangeListener} can be registered to be informed when the
323             * {@link Locale} changed.<br>
324             * The listeners are kept in a {@link WeakHashMap}, so you have to keep a
325             * reference to the listener or it will be removed!
326             *
327             * @param propertyChangeListener
328             *            A {@link PropertyChangeListener} that will be called when
329             *            {@link #setActiveLang(String)} changes the language.
330             */
331            public static void addLocaleChangeListener(
332                            PropertyChangeListener propertyChangeListener) {
333                    listenersLocaleChange.add(propertyChangeListener);
334            }
335    
336            /**
337             * {@link PropertyChangeListener} can be registered to be informed when the
338             * {@link Locale} changed.<br>
339             * The listeners are kept in a {@link WeakHashMap}, so you have to keep a
340             * reference to the listener or it will be removed!
341             *
342             * @param propertyChangeListener
343             *            A {@link PropertyChangeListener} that will be called when
344             *            {@link #setActiveLang(String)} changes the language.
345             */
346            public static boolean removeLocaleChangeListener(
347                            PropertyChangeListener propertyChangeListener) {
348                    return listenersLocaleChange.remove(propertyChangeListener);
349            }
350    
351            /**
352             * {@link PropertyChangeListener} can be registered to be informed when the
353             * {@link Locale} changed.<br>
354             * The listeners are kept in a {@link WeakHashMap}, so you have to keep a
355             * reference to the listener or it will be removed!
356             *
357             * @param propertyChangeListener
358             *            A {@link PropertyChangeListener} that will be called when
359             *            {@link #setActiveLang(String)} changes the language.
360             */
361            public static void addActiveLangChangeListener(
362                            PropertyChangeListener propertyChangeListener) {
363                    listenersActiveLangChange.add(propertyChangeListener);
364            }
365    
366            /**
367             * {@link PropertyChangeListener} can be registered to be informed when the
368             * {@link Locale} changed.<br>
369             * The listeners are kept in a {@link WeakHashMap}, so you have to keep a
370             * reference to the listener or it will be removed!
371             *
372             * @param propertyChangeListener
373             *            A {@link PropertyChangeListener} that will be called when
374             *            {@link #setActiveLang(String)} changes the language.
375             */
376            public static boolean removeActiveLangListener(
377                            PropertyChangeListener propertyChangeListener) {
378                    return listenersActiveLangChange.remove(propertyChangeListener);
379            }
380    
381            /**
382             * Informs all registered {@link PropertyChangeListener}s about a change of
383             * the the {@link Locale}.
384             */
385            public static void fireLocaleChangeEvents() {
386                    PropertyChangeEvent pce = new PropertyChangeEvent(new Translation(
387                                    new ArrayList<String>(), "fakeSource"), LOCALECHANGE_PROPERTY,
388                                    null, getActiveLang());
389                    for (PropertyChangeListener pcl : listenersLocaleChange) {
390                            if (pcl != null)
391                                    pcl.propertyChange(pce);
392                    }
393            }
394    
395            /**
396             * Informs all registered {@link PropertyChangeListener}s about a change of
397             * the the {@link Locale}.
398             */
399            public static void fireActiveLangChangeEvents() {
400                    PropertyChangeEvent pce = new PropertyChangeEvent(new Translation(
401                                    new ArrayList<String>(), "fakeSource"),
402                                    ACTIVELANG_CHANGE_PROPERTY, null, getActiveLang());
403                    for (PropertyChangeListener pcl : listenersActiveLangChange) {
404                            if (pcl != null)
405                                    pcl.propertyChange(pce);
406                    }
407            }
408    
409            /**
410             * The listeneras are stored in a {@link WeakHashSet}! So you HAVE TO KEEP a
411             * reference as long as you need the listener.
412             */
413            public void addTranslationChangeListener(ActionListener actionListener) {
414                    if (changeListeners.add(actionListener)) {
415                            // LOGGER
416                            // .debug("registering a new translationChangeActionListener in the WeakHashSet");
417                    }
418            }
419    
420            /**
421             * The listeneras are stored in a {@link WeakHashSet}! You don't have to
422             * remove the listener, as long as you throw away the reference to the
423             * listener.
424             */
425            public boolean removeTranslationChangeListener(ActionListener actionListener) {
426                    return changeListeners.remove(actionListener);
427            }
428    
429            public void fireTranslationChangedEvents(String lang) {
430                    ActionEvent ae = new ActionEvent(this, new Random().nextInt(), lang);
431    
432                    final Iterator<ActionListener> iterator = changeListeners.iterator();
433                    while (iterator.hasNext()) {
434                            ActionListener al = iterator.next();
435                            al.actionPerformed(ae);
436                    }
437            }
438    
439            @Override
440            public String put(String lang, String value) {
441                    String result = super.put(lang, value);
442                    fireTranslationChangedEvents(lang);
443                    return result;
444            }
445    
446            public void fromOneLine(InternationalString iString) {
447                    if (iString != null)
448                            fromOneLine(iString.toString());
449                    else
450                            fromOneLine((String) null);
451            }
452    
453            /**
454             * Copy this {@link Translation} to another {@link Translation} e.g. for
455             * editing and return the target.
456             *
457             * @return the destination {@link Translation}
458             */
459            @Override
460            public Translation copyTo(Translation translation2) {
461                    if (translation2 == null)
462                            return copy();
463    
464                    translation2.fromOneLine(toOneLine());
465                    return translation2;
466            }
467    
468            @Override
469            public Translation copy() {
470                    return copyTo(new Translation());
471            }
472    
473            /**
474             * Checks if the {@link String}s stored in the {@link Translation} are all
475             * valid.
476             *
477             * @return <code>true</code> if all good
478             */
479            public static boolean checkValid(Translation translationToCheck) {
480    
481                    for (String l : translationToCheck.values()) {
482    
483                            if (l.contains("{") || l.contains("}")) {
484    
485                                    return false;
486                            }
487                    }
488                    return true;
489            }
490    
491            /**
492             * Goes through the available languages of the FIRST registered
493             * {@link ResourceProvider} and set the active locale to the fist match.
494             *
495             * @param fireChangeEvent
496             *            if <code>true</code>, a Translation.fireLocaleChangeEvents()
497             *            is issued.
498             *
499             * @return
500             */
501            public static boolean setFirstmatchingLanguage(List<String> languages,
502                            boolean fireChangeEvent) {
503    
504                    SortableVector<ResourceProvider> registeredResourceProvider = ResourceProvider
505                                    .getRegisteredResourceProvider();
506                    Set<Locale> available = ResourceProvider.getAvailableLocales(
507                                    registeredResourceProvider.get(0), true);
508    
509                    for (String l : languages) {
510                            for (Locale loc : available) {
511                                    if (loc.getLanguage().equals(l)) {
512                                            Translation.setActiveLang(l);
513                                            if (fireChangeEvent)
514                                                    Translation.fireLocaleChangeEvents();
515                                            return true;
516                                    }
517                            }
518                    }
519    
520                    return false;
521    
522            }
523    
524            /**
525             * Returns the translation in a requested language
526             */
527            public String toString(String lang) {
528                    return get(lang);
529            }
530    }

Legend:
Removed from v.20  
changed lines
  Added in v.1097

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26