BrightSide Workbench Full Report + Source Code
I18nCompatibilityKey.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2021 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.i18n;
20 
21 import java.util.Locale;
22 import java.util.MissingResourceException;
23 import java.util.ResourceBundle;
24 import java.util.concurrent.ConcurrentHashMap;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27 import org.turro.i18n.migration.MigrateProperties;
28 
33 public class I18nCompatibilityKey extends ConcurrentHashMap<String, String> {
34 
35  /* Factory */
36 
37  private static I18nCompatibilityKey keyLabelsMap;
38 
39  public static I18nCompatibilityKey instance() {
40  if(keyLabelsMap == null) {
41  keyLabelsMap = new I18nCompatibilityKey();
42  }
43  return keyLabelsMap;
44  }
45 
46  public static void resetMap() {
47  keyLabelsMap = null;
48  }
49 
50  private I18nCompatibilityKey() {
51  fillMap();
52  }
53 
54  private void fillMap() {
55  for(String bundle : MigrateProperties.MIGRATE_BUNDLES) {
56  try {
57  ResourceBundle rb = ResourceBundle.getBundle(bundle, Locale.forLanguageTag("en"));
58  for(String key : rb.keySet()) {
59  put(key, rb.getString(key));
60  }
61  ResourceBundle.clearCache();
62  } catch(MissingResourceException ex) {
63  Logger.getLogger(I18nCompatibilityKey.class.getName()).log(Level.FINEST, null, ex);
64  }
65  }
66  }
67 
68 }
static I18nCompatibilityKey instance()