1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.apache.commons.configuration; |
18 | |
|
19 | |
import java.io.Reader; |
20 | |
import java.io.Writer; |
21 | |
import java.math.BigDecimal; |
22 | |
import java.math.BigInteger; |
23 | |
import java.util.Collection; |
24 | |
import java.util.Iterator; |
25 | |
import java.util.List; |
26 | |
import java.util.Properties; |
27 | |
|
28 | |
import org.apache.commons.configuration.event.ConfigurationErrorListener; |
29 | |
import org.apache.commons.configuration.event.ConfigurationListener; |
30 | |
import org.apache.commons.configuration.tree.ConfigurationNode; |
31 | |
import org.apache.commons.configuration.tree.ExpressionEngine; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
public class PatternSubtreeConfigurationWrapper extends AbstractHierarchicalFileConfiguration |
44 | |
{ |
45 | |
|
46 | |
|
47 | |
|
48 | 1 | private static ThreadLocal recursive = new ThreadLocal() |
49 | |
{ |
50 | 1 | protected synchronized Object initialValue() |
51 | |
{ |
52 | 0 | return Boolean.FALSE; |
53 | |
} |
54 | |
}; |
55 | |
|
56 | |
|
57 | |
private final AbstractHierarchicalFileConfiguration config; |
58 | |
|
59 | |
|
60 | |
private final String path; |
61 | |
|
62 | |
|
63 | |
private final boolean trailing; |
64 | |
|
65 | |
|
66 | |
private boolean init; |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
public PatternSubtreeConfigurationWrapper(AbstractHierarchicalFileConfiguration config, String path) |
74 | 1 | { |
75 | 1 | this.config = config; |
76 | 1 | this.path = path; |
77 | 1 | this.trailing = path.endsWith("/"); |
78 | 1 | this.init = true; |
79 | 1 | } |
80 | |
|
81 | |
public void addProperty(String key, Object value) |
82 | |
{ |
83 | 0 | config.addProperty(makePath(key), value); |
84 | 0 | } |
85 | |
|
86 | |
public void clear() |
87 | |
{ |
88 | 0 | getConfig().clear(); |
89 | 0 | } |
90 | |
|
91 | |
public void clearProperty(String key) |
92 | |
{ |
93 | 0 | config.clearProperty(makePath(key)); |
94 | 0 | } |
95 | |
|
96 | |
public boolean containsKey(String key) |
97 | |
{ |
98 | 0 | return config.containsKey(makePath(key)); |
99 | |
} |
100 | |
|
101 | |
public BigDecimal getBigDecimal(String key, BigDecimal defaultValue) |
102 | |
{ |
103 | 0 | return config.getBigDecimal(makePath(key), defaultValue); |
104 | |
} |
105 | |
|
106 | |
public BigDecimal getBigDecimal(String key) |
107 | |
{ |
108 | 0 | return config.getBigDecimal(makePath(key)); |
109 | |
} |
110 | |
|
111 | |
public BigInteger getBigInteger(String key, BigInteger defaultValue) |
112 | |
{ |
113 | 0 | return config.getBigInteger(makePath(key), defaultValue); |
114 | |
} |
115 | |
|
116 | |
public BigInteger getBigInteger(String key) |
117 | |
{ |
118 | 0 | return config.getBigInteger(makePath(key)); |
119 | |
} |
120 | |
|
121 | |
public boolean getBoolean(String key, boolean defaultValue) |
122 | |
{ |
123 | 0 | return config.getBoolean(makePath(key), defaultValue); |
124 | |
} |
125 | |
|
126 | |
public Boolean getBoolean(String key, Boolean defaultValue) |
127 | |
{ |
128 | 0 | return config.getBoolean(makePath(key), defaultValue); |
129 | |
} |
130 | |
|
131 | |
public boolean getBoolean(String key) |
132 | |
{ |
133 | 0 | return config.getBoolean(makePath(key)); |
134 | |
} |
135 | |
|
136 | |
public byte getByte(String key, byte defaultValue) |
137 | |
{ |
138 | 0 | return config.getByte(makePath(key), defaultValue); |
139 | |
} |
140 | |
|
141 | |
public Byte getByte(String key, Byte defaultValue) |
142 | |
{ |
143 | 0 | return config.getByte(makePath(key), defaultValue); |
144 | |
} |
145 | |
|
146 | |
public byte getByte(String key) |
147 | |
{ |
148 | 0 | return config.getByte(makePath(key)); |
149 | |
} |
150 | |
|
151 | |
public double getDouble(String key, double defaultValue) |
152 | |
{ |
153 | 0 | return config.getDouble(makePath(key), defaultValue); |
154 | |
} |
155 | |
|
156 | |
public Double getDouble(String key, Double defaultValue) |
157 | |
{ |
158 | 0 | return config.getDouble(makePath(key), defaultValue); |
159 | |
} |
160 | |
|
161 | |
public double getDouble(String key) |
162 | |
{ |
163 | 0 | return config.getDouble(makePath(key)); |
164 | |
} |
165 | |
|
166 | |
public float getFloat(String key, float defaultValue) |
167 | |
{ |
168 | 0 | return config.getFloat(makePath(key), defaultValue); |
169 | |
} |
170 | |
|
171 | |
public Float getFloat(String key, Float defaultValue) |
172 | |
{ |
173 | 0 | return config.getFloat(makePath(key), defaultValue); |
174 | |
} |
175 | |
|
176 | |
public float getFloat(String key) |
177 | |
{ |
178 | 0 | return config.getFloat(makePath(key)); |
179 | |
} |
180 | |
|
181 | |
public int getInt(String key, int defaultValue) |
182 | |
{ |
183 | 0 | return config.getInt(makePath(key), defaultValue); |
184 | |
} |
185 | |
|
186 | |
public int getInt(String key) |
187 | |
{ |
188 | 3 | return config.getInt(makePath(key)); |
189 | |
} |
190 | |
|
191 | |
public Integer getInteger(String key, Integer defaultValue) |
192 | |
{ |
193 | 0 | return config.getInteger(makePath(key), defaultValue); |
194 | |
} |
195 | |
|
196 | |
public Iterator getKeys() |
197 | |
{ |
198 | 0 | return config.getKeys(makePath()); |
199 | |
} |
200 | |
|
201 | |
public Iterator getKeys(String prefix) |
202 | |
{ |
203 | 0 | return config.getKeys(makePath(prefix)); |
204 | |
} |
205 | |
|
206 | |
public List getList(String key, List defaultValue) |
207 | |
{ |
208 | 0 | return config.getList(makePath(key), defaultValue); |
209 | |
} |
210 | |
|
211 | |
public List getList(String key) |
212 | |
{ |
213 | 0 | return config.getList(makePath(key)); |
214 | |
} |
215 | |
|
216 | |
public long getLong(String key, long defaultValue) |
217 | |
{ |
218 | 0 | return config.getLong(makePath(key), defaultValue); |
219 | |
} |
220 | |
|
221 | |
public Long getLong(String key, Long defaultValue) |
222 | |
{ |
223 | 0 | return config.getLong(makePath(key), defaultValue); |
224 | |
} |
225 | |
|
226 | |
public long getLong(String key) |
227 | |
{ |
228 | 0 | return config.getLong(makePath(key)); |
229 | |
} |
230 | |
|
231 | |
public Properties getProperties(String key) |
232 | |
{ |
233 | 0 | return config.getProperties(makePath(key)); |
234 | |
} |
235 | |
|
236 | |
public Object getProperty(String key) |
237 | |
{ |
238 | 0 | return config.getProperty(makePath(key)); |
239 | |
} |
240 | |
|
241 | |
public short getShort(String key, short defaultValue) |
242 | |
{ |
243 | 0 | return config.getShort(makePath(key), defaultValue); |
244 | |
} |
245 | |
|
246 | |
public Short getShort(String key, Short defaultValue) |
247 | |
{ |
248 | 0 | return config.getShort(makePath(key), defaultValue); |
249 | |
} |
250 | |
|
251 | |
public short getShort(String key) |
252 | |
{ |
253 | 0 | return config.getShort(makePath(key)); |
254 | |
} |
255 | |
|
256 | |
public String getString(String key, String defaultValue) |
257 | |
{ |
258 | 0 | return config.getString(makePath(key), defaultValue); |
259 | |
} |
260 | |
|
261 | |
public String getString(String key) |
262 | |
{ |
263 | 0 | return config.getString(makePath(key)); |
264 | |
} |
265 | |
|
266 | |
public String[] getStringArray(String key) |
267 | |
{ |
268 | 0 | return config.getStringArray(makePath(key)); |
269 | |
} |
270 | |
|
271 | |
public boolean isEmpty() |
272 | |
{ |
273 | 0 | return getConfig().isEmpty(); |
274 | |
} |
275 | |
|
276 | |
public void setProperty(String key, Object value) |
277 | |
{ |
278 | 0 | getConfig().setProperty(key, value); |
279 | 0 | } |
280 | |
|
281 | |
public Configuration subset(String prefix) |
282 | |
{ |
283 | 0 | return getConfig().subset(prefix); |
284 | |
} |
285 | |
|
286 | |
public Node getRoot() |
287 | |
{ |
288 | 0 | return getConfig().getRoot(); |
289 | |
} |
290 | |
|
291 | |
public void setRoot(Node node) |
292 | |
{ |
293 | 0 | if (init) |
294 | |
{ |
295 | 0 | getConfig().setRoot(node); |
296 | |
} |
297 | |
else |
298 | |
{ |
299 | 0 | super.setRoot(node); |
300 | |
} |
301 | 0 | } |
302 | |
|
303 | |
public ConfigurationNode getRootNode() |
304 | |
{ |
305 | 0 | return getConfig().getRootNode(); |
306 | |
} |
307 | |
|
308 | |
public void setRootNode(ConfigurationNode rootNode) |
309 | |
{ |
310 | 1 | if (init) |
311 | |
{ |
312 | 0 | getConfig().setRootNode(rootNode); |
313 | |
} |
314 | |
else |
315 | |
{ |
316 | 1 | super.setRootNode(rootNode); |
317 | |
} |
318 | 1 | } |
319 | |
|
320 | |
public ExpressionEngine getExpressionEngine() |
321 | |
{ |
322 | 0 | return config.getExpressionEngine(); |
323 | |
} |
324 | |
|
325 | |
public void setExpressionEngine(ExpressionEngine expressionEngine) |
326 | |
{ |
327 | 1 | if (init) |
328 | |
{ |
329 | 1 | config.setExpressionEngine(expressionEngine); |
330 | |
} |
331 | |
else |
332 | |
{ |
333 | 0 | super.setExpressionEngine(expressionEngine); |
334 | |
} |
335 | 1 | } |
336 | |
|
337 | |
public void addNodes(String key, Collection nodes) |
338 | |
{ |
339 | 0 | getConfig().addNodes(key, nodes); |
340 | 0 | } |
341 | |
|
342 | |
public SubnodeConfiguration configurationAt(String key, boolean supportUpdates) |
343 | |
{ |
344 | 0 | return config.configurationAt(makePath(key), supportUpdates); |
345 | |
} |
346 | |
|
347 | |
public SubnodeConfiguration configurationAt(String key) |
348 | |
{ |
349 | 0 | return config.configurationAt(makePath(key)); |
350 | |
} |
351 | |
|
352 | |
public List configurationsAt(String key) |
353 | |
{ |
354 | 0 | return config.configurationsAt(makePath(key)); |
355 | |
} |
356 | |
|
357 | |
public void clearTree(String key) |
358 | |
{ |
359 | 0 | config.clearTree(makePath(key)); |
360 | 0 | } |
361 | |
|
362 | |
public int getMaxIndex(String key) |
363 | |
{ |
364 | 0 | return config.getMaxIndex(makePath(key)); |
365 | |
} |
366 | |
|
367 | |
public Configuration interpolatedConfiguration() |
368 | |
{ |
369 | 0 | return getConfig().interpolatedConfiguration(); |
370 | |
} |
371 | |
|
372 | |
public void addConfigurationListener(ConfigurationListener l) |
373 | |
{ |
374 | 0 | getConfig().addConfigurationListener(l); |
375 | 0 | } |
376 | |
|
377 | |
public boolean removeConfigurationListener(ConfigurationListener l) |
378 | |
{ |
379 | 0 | return getConfig().removeConfigurationListener(l); |
380 | |
} |
381 | |
|
382 | |
public Collection getConfigurationListeners() |
383 | |
{ |
384 | 0 | return getConfig().getConfigurationListeners(); |
385 | |
} |
386 | |
|
387 | |
public void clearConfigurationListeners() |
388 | |
{ |
389 | 0 | getConfig().clearConfigurationListeners(); |
390 | 0 | } |
391 | |
|
392 | |
public void addErrorListener(ConfigurationErrorListener l) |
393 | |
{ |
394 | 0 | getConfig().addErrorListener(l); |
395 | 0 | } |
396 | |
|
397 | |
public boolean removeErrorListener(ConfigurationErrorListener l) |
398 | |
{ |
399 | 0 | return getConfig().removeErrorListener(l); |
400 | |
} |
401 | |
|
402 | |
public void clearErrorListeners() |
403 | |
{ |
404 | 0 | getConfig().clearErrorListeners(); |
405 | 0 | } |
406 | |
|
407 | |
public void save(Writer writer) throws ConfigurationException |
408 | |
{ |
409 | 0 | config.save(writer); |
410 | 0 | } |
411 | |
|
412 | |
public void load(Reader reader) throws ConfigurationException |
413 | |
{ |
414 | 0 | config.load(reader); |
415 | 0 | } |
416 | |
|
417 | |
public Collection getErrorListeners() |
418 | |
{ |
419 | 0 | return getConfig().getErrorListeners(); |
420 | |
} |
421 | |
|
422 | |
protected Object resolveContainerStore(String key) |
423 | |
{ |
424 | 0 | if (((Boolean) recursive.get()).booleanValue()) |
425 | |
{ |
426 | 0 | return null; |
427 | |
} |
428 | 0 | recursive.set(Boolean.TRUE); |
429 | |
try |
430 | |
{ |
431 | 0 | return super.resolveContainerStore(key); |
432 | |
} |
433 | |
finally |
434 | |
{ |
435 | 0 | recursive.set(Boolean.FALSE); |
436 | |
} |
437 | |
} |
438 | |
|
439 | |
private HierarchicalConfiguration getConfig() |
440 | |
{ |
441 | 0 | return config.configurationAt(makePath()); |
442 | |
} |
443 | |
|
444 | |
private String makePath() |
445 | |
{ |
446 | 0 | String pathPattern = trailing ? path.substring(0, path.length() - 1) : path; |
447 | 0 | return getSubstitutor().replace(pathPattern); |
448 | |
} |
449 | |
|
450 | |
|
451 | |
|
452 | |
|
453 | |
|
454 | |
private String makePath(String item) |
455 | |
{ |
456 | |
String pathPattern; |
457 | 3 | if ((item.length() == 0 || item.startsWith("/")) && trailing) |
458 | |
{ |
459 | 0 | pathPattern = path.substring(0, path.length() - 1); |
460 | |
} |
461 | 3 | else if (!item.startsWith("/") || !trailing) |
462 | |
{ |
463 | 3 | pathPattern = path + "/"; |
464 | |
} |
465 | |
else |
466 | |
{ |
467 | 0 | pathPattern = path; |
468 | |
} |
469 | 3 | return getSubstitutor().replace(pathPattern) + item; |
470 | |
} |
471 | |
} |