1 |
| package com.sourceforge.jpatterns.core.configuration; |
2 |
| |
3 |
| import com.sourceforge.jpatterns.core.configuration.exceptions.JPInitializationException; |
4 |
| import com.sourceforge.jpatterns.utils.JPatternsPropsUtils; |
5 |
| import com.zmicer.utils.*; |
6 |
| import org.apache.log4j.Logger; |
7 |
| |
8 |
| import java.util.Enumeration; |
9 |
| import java.util.HashSet; |
10 |
| import java.util.ResourceBundle; |
11 |
| import java.util.Set; |
12 |
| |
13 |
| |
14 |
| |
15 |
| |
16 |
| |
17 |
| |
18 |
| |
19 |
| |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
| |
25 |
| |
26 |
| |
27 |
| |
28 |
| |
29 |
| |
30 |
| |
31 |
| |
32 |
| |
33 |
| |
34 |
| |
35 |
| |
36 |
| public class PropertiesManagerImpl implements IPropertiesManager |
37 |
| { |
38 |
| |
39 |
| |
40 |
| |
41 |
| final public static Logger LOG = Logger.getLogger(PropertiesManagerImpl.class); |
42 |
| |
43 |
| |
44 |
| |
45 |
| |
46 |
| private ResourceBundle m_defaultBundle; |
47 |
| |
48 |
| |
49 |
| |
50 |
| |
51 |
| private ResourceBundle m_customBundle; |
52 |
| |
53 |
| |
54 |
| |
55 |
| |
56 |
| private static boolean isInitialized; |
57 |
| |
58 |
| |
59 |
| |
60 |
| |
61 |
| |
62 |
| private static boolean useOnlyCustomPropsIfPresent; |
63 |
| |
64 |
| |
65 |
| |
66 |
| |
67 |
2
| public PropertiesManagerImpl()
|
68 |
| { |
69 |
| |
70 |
2
| super();
|
71 |
2
| initConfigs();
|
72 |
| } |
73 |
| |
74 |
| |
75 |
| |
76 |
| |
77 |
| |
78 |
2783
| protected void checkIsInitialized()
|
79 |
| { |
80 |
2783
| if (!isInitialized)
|
81 |
| { |
82 |
0
| throw new IllegalStateException("Please be noticed the PropertiesManagerImpl is not initialized.");
|
83 |
| } |
84 |
| } |
85 |
| |
86 |
| |
87 |
| |
88 |
| |
89 |
| |
90 |
| |
91 |
| |
92 |
165
| public void initConfigs()
|
93 |
| { |
94 |
165
| isInitialized = false;
|
95 |
| |
96 |
165
| if (null == m_defaultBundle && null != JPatternsPropsUtils.getDefaultBundle())
|
97 |
| { |
98 |
2
| m_defaultBundle = JPatternsPropsUtils.getDefaultBundle();
|
99 |
2
| m_customBundle = JPatternsPropsUtils.getCustomBundle();
|
100 |
2
| JPatternsPropsUtils.setDefaultBundle(null);
|
101 |
2
| JPatternsPropsUtils.setCustomBundle(null);
|
102 |
| } |
103 |
| else |
104 |
| { |
105 |
163
| final String defaultProps = JPatternsPropsUtils.getDefaultBundleName();
|
106 |
163
| final String customProps = JPatternsPropsUtils.getCustomBundleName();
|
107 |
163
| if (null == defaultProps)
|
108 |
| { |
109 |
0
| throw new IllegalStateException("The name of default configuration can not be null.");
|
110 |
| } |
111 |
163
| m_defaultBundle = ResourceUtils.getResourceBundle(defaultProps);
|
112 |
163
| m_customBundle = ResourceUtils.getResourceBundle(customProps);
|
113 |
| } |
114 |
| |
115 |
165
| isInitialized = true;
|
116 |
| |
117 |
165
| initUseOnlyCustomConfigIfPresent();
|
118 |
| } |
119 |
| |
120 |
| |
121 |
| |
122 |
| |
123 |
| |
124 |
518
| public boolean customConfigPresents()
|
125 |
| { |
126 |
518
| checkIsInitialized();
|
127 |
518
| return (null != m_customBundle);
|
128 |
| } |
129 |
| |
130 |
| |
131 |
| |
132 |
| |
133 |
507
| public boolean defaultConfigPresents()
|
134 |
| { |
135 |
507
| checkIsInitialized();
|
136 |
507
| return (null != m_defaultBundle);
|
137 |
| } |
138 |
| |
139 |
| |
140 |
| |
141 |
| |
142 |
2
| public boolean useOnlyCustomConfigIfPresent()
|
143 |
| { |
144 |
2
| checkIsInitialized();
|
145 |
2
| return useOnlyCustomPropsIfPresent;
|
146 |
| } |
147 |
| |
148 |
| |
149 |
| |
150 |
| |
151 |
166
| protected void initUseOnlyCustomConfigIfPresent()
|
152 |
| { |
153 |
166
| checkIsInitialized();
|
154 |
166
| final String defaultValue = getDefaultBundle(PropertiesProvider.JPProperties.USE_ONLY_CUSTOM_FRAMEWORK_PROPERTIES);
|
155 |
163
| final String customValue = getCustomBundle(PropertiesProvider.JPProperties.USE_ONLY_CUSTOM_FRAMEWORK_PROPERTIES);
|
156 |
163
| if (null == customValue || "".equals(customValue))
|
157 |
| { |
158 |
163
| if (null == defaultValue || "".equals(defaultValue))
|
159 |
| { |
160 |
| |
161 |
38
| useOnlyCustomPropsIfPresent = false;
|
162 |
| } |
163 |
| else |
164 |
| { |
165 |
125
| final Boolean boolObject = StringUtils.getBoolean(defaultValue);
|
166 |
125
| if (null == boolObject)
|
167 |
| { |
168 |
0
| throw new IllegalStateException("The property defined at the properties file doesn't take boolean value");
|
169 |
| } |
170 |
125
| useOnlyCustomPropsIfPresent = boolObject;
|
171 |
| } |
172 |
| } |
173 |
| else |
174 |
| { |
175 |
0
| final Boolean boolObject = StringUtils.getBoolean(customValue);
|
176 |
0
| if (null == boolObject)
|
177 |
| { |
178 |
0
| throw new IllegalStateException("The property defined at the properties file doesn't take boolean value");
|
179 |
| } |
180 |
0
| useOnlyCustomPropsIfPresent = boolObject;
|
181 |
| } |
182 |
| } |
183 |
| |
184 |
| |
185 |
| |
186 |
| |
187 |
339
| public String getBundle(final String key)
|
188 |
| { |
189 |
339
| checkIsInitialized();
|
190 |
339
| InputArgumentUtils.checkStrings(true, key);
|
191 |
336
| final String customValue = getCustomBundle(key);
|
192 |
336
| if ((useOnlyCustomPropsIfPresent && customConfigPresents()) || null != customValue)
|
193 |
| { |
194 |
18
| return customValue;
|
195 |
| } |
196 |
318
| return getDefaultBundle(key);
|
197 |
| } |
198 |
| |
199 |
| |
200 |
| |
201 |
| |
202 |
240
| public String getBundle(final Class key)
|
203 |
| { |
204 |
240
| checkIsInitialized();
|
205 |
240
| if (null == key)
|
206 |
| { |
207 |
2
| throw new IllegalArgumentException("The class for each we need to get the resource bundle can not be null");
|
208 |
| } |
209 |
238
| final String nameKey = ReflexionUtils.getBaseName(key);
|
210 |
238
| if (null == nameKey)
|
211 |
| { |
212 |
0
| throw new IllegalStateException("Could not get the base name using the Class instance. Please check the sources.");
|
213 |
| } |
214 |
238
| return getBundle(nameKey);
|
215 |
| } |
216 |
| |
217 |
| |
218 |
| |
219 |
| |
220 |
233
| public Object getBundledObject(final Class key)
|
221 |
| { |
222 |
233
| final String bundledObjectClassName = getBundle(key);
|
223 |
232
| if (null == bundledObjectClassName)
|
224 |
| { |
225 |
1
| throw new JPInitializationException("Can not find the name of the class instance of which we should instantiate. Class name: " +
|
226 |
| key.getName()); |
227 |
| } |
228 |
| |
229 |
| |
230 |
231
| try
|
231 |
| { |
232 |
231
| final Object object= ReflexionUtils.reflectObject(bundledObjectClassName, true);
|
233 |
229
| if (null == object)
|
234 |
| { |
235 |
0
| throw new JPInitializationException("Illegal, incorrect definition of the Class is defined at the properties file. " +
|
236 |
| "Class name :" + key.getName() + ", value for the key is : " + bundledObjectClassName); |
237 |
| } |
238 |
229
| return object;
|
239 |
| } |
240 |
| catch(Exception ex) |
241 |
| { |
242 |
2
| LoggingUtils.logException(LOG, ex, null, this.getClass());
|
243 |
2
| throw new JPInitializationException(ex);
|
244 |
| } |
245 |
| |
246 |
| } |
247 |
| |
248 |
| |
249 |
| |
250 |
| |
251 |
1
| public Object getBundledObject(final String key)
|
252 |
| { |
253 |
1
| final String bundledObjectClassName = getBundle(key);
|
254 |
0
| if (null == bundledObjectClassName)
|
255 |
| { |
256 |
0
| throw new JPInitializationException("Can not find the name of the class instance of which we should instantiate. Class name: " +
|
257 |
| key); |
258 |
| } |
259 |
| |
260 |
0
| final Object object = ReflexionUtils.reflectObject(bundledObjectClassName, false);
|
261 |
0
| if (null == object)
|
262 |
| { |
263 |
0
| throw new JPInitializationException("Illegal, incorrect definition of the Class is defined at the properties file. " +
|
264 |
| "Class name :" + key + ", value for the key is : " + bundledObjectClassName); |
265 |
| } |
266 |
0
| return object;
|
267 |
| } |
268 |
| |
269 |
| |
270 |
| |
271 |
| |
272 |
497
| public String getDefaultBundle(final String key)
|
273 |
| { |
274 |
497
| checkIsInitialized();
|
275 |
497
| InputArgumentUtils.checkStrings(true, key);
|
276 |
494
| if (!defaultConfigPresents())
|
277 |
| { |
278 |
3
| throw new JPInitializationException("The default configuration is not present. It is illegale state of the JPatterns " +
|
279 |
| "framework."); |
280 |
| } |
281 |
491
| String result = null;
|
282 |
491
| try
|
283 |
| { |
284 |
491
| result = m_defaultBundle.getString(key);
|
285 |
449
| if (null != result && !"".equals(result))
|
286 |
| { |
287 |
449
| LOG.debug("The value for the key [" + key + "] was found using the default properties.");
|
288 |
449
| return result;
|
289 |
| } |
290 |
| } |
291 |
| catch (Exception ex) |
292 |
| { |
293 |
| |
294 |
| } |
295 |
42
| return result;
|
296 |
| } |
297 |
| |
298 |
| |
299 |
| |
300 |
| |
301 |
503
| public String getCustomBundle(final String key)
|
302 |
| { |
303 |
503
| checkIsInitialized();
|
304 |
503
| InputArgumentUtils.checkStrings(true, key);
|
305 |
503
| if (!customConfigPresents())
|
306 |
| { |
307 |
370
| LOG.debug("Trying to obtain the bundle with the key " + key + " from the custom properties: the custom properties file " +
|
308 |
| "is absent"); |
309 |
370
| return null;
|
310 |
| } |
311 |
133
| String result = null;
|
312 |
133
| try
|
313 |
| { |
314 |
133
| result = m_customBundle.getString(key);
|
315 |
19
| if (null != result && !"".equals(result))
|
316 |
| { |
317 |
19
| LOG.debug("The value for the key [" + key + "] was found using the custom properties.");
|
318 |
19
| return result;
|
319 |
| } |
320 |
| } |
321 |
| catch (Exception ex) |
322 |
| { |
323 |
| |
324 |
| } |
325 |
114
| return result;
|
326 |
| } |
327 |
| |
328 |
| |
329 |
| |
330 |
| |
331 |
| |
332 |
| |
333 |
| |
334 |
| |
335 |
10
| public Set<String> getMergedKeys()
|
336 |
| { |
337 |
10
| checkIsInitialized();
|
338 |
10
| Set<String> customSet = new HashSet<String>();
|
339 |
10
| if (customConfigPresents())
|
340 |
| { |
341 |
1
| final Enumeration<String> customEnum = m_customBundle.getKeys();
|
342 |
1
| customSet = CollectionsUtils.toSet(customEnum);
|
343 |
1
| if (useOnlyCustomPropsIfPresent && customConfigPresents())
|
344 |
| { |
345 |
0
| return customSet;
|
346 |
| } |
347 |
| } |
348 |
10
| Set<String> defaultSet = new HashSet<String>();
|
349 |
10
| if (defaultConfigPresents())
|
350 |
| { |
351 |
10
| final Enumeration<String> defaultEnum = m_defaultBundle.getKeys();
|
352 |
10
| defaultSet = CollectionsUtils.toSet(defaultEnum);
|
353 |
10
| if (null != customSet && !customSet.isEmpty())
|
354 |
| { |
355 |
1
| defaultSet.addAll(customSet);
|
356 |
| } |
357 |
| } |
358 |
10
| if (defaultSet.isEmpty())
|
359 |
| { |
360 |
0
| return customSet;
|
361 |
| } |
362 |
| |
363 |
10
| return defaultSet;
|
364 |
| } |
365 |
| } |