| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
package org.apache.commons.configuration; |
| 19 | |
|
| 20 | |
import java.util.ArrayList; |
| 21 | |
import java.util.Collection; |
| 22 | |
import java.util.Iterator; |
| 23 | |
import java.util.LinkedList; |
| 24 | |
import java.util.List; |
| 25 | |
import java.util.ListIterator; |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
public class CompositeConfiguration extends AbstractConfiguration |
| 39 | |
implements Cloneable |
| 40 | |
{ |
| 41 | |
|
| 42 | 125 | private List configList = new LinkedList(); |
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
private Configuration inMemoryConfiguration; |
| 49 | |
|
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
public CompositeConfiguration() |
| 55 | 120 | { |
| 56 | 120 | clear(); |
| 57 | 120 | } |
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | |
|
| 66 | |
public CompositeConfiguration(Configuration inMemoryConfiguration) |
| 67 | 5 | { |
| 68 | 5 | configList.clear(); |
| 69 | 5 | this.inMemoryConfiguration = inMemoryConfiguration; |
| 70 | 5 | configList.add(inMemoryConfiguration); |
| 71 | 5 | } |
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
|
| 77 | |
|
| 78 | |
|
| 79 | |
public CompositeConfiguration(Collection configurations) |
| 80 | |
{ |
| 81 | 1 | this(new BaseConfiguration(), configurations); |
| 82 | 1 | } |
| 83 | |
|
| 84 | |
|
| 85 | |
|
| 86 | |
|
| 87 | |
|
| 88 | |
|
| 89 | |
|
| 90 | |
|
| 91 | |
public CompositeConfiguration(Configuration inMemoryConfiguration, Collection configurations) |
| 92 | |
{ |
| 93 | 1 | this(inMemoryConfiguration); |
| 94 | |
|
| 95 | 1 | if (configurations != null) |
| 96 | |
{ |
| 97 | 1 | Iterator it = configurations.iterator(); |
| 98 | 4 | while (it.hasNext()) |
| 99 | |
{ |
| 100 | 3 | addConfiguration((Configuration) it.next()); |
| 101 | 3 | } |
| 102 | |
} |
| 103 | 1 | } |
| 104 | |
|
| 105 | |
|
| 106 | |
|
| 107 | |
|
| 108 | |
|
| 109 | |
|
| 110 | |
public void addConfiguration(Configuration config) |
| 111 | |
{ |
| 112 | 164 | if (!configList.contains(config)) |
| 113 | |
{ |
| 114 | |
|
| 115 | |
|
| 116 | |
|
| 117 | |
|
| 118 | 162 | configList.add(configList.indexOf(inMemoryConfiguration), config); |
| 119 | |
|
| 120 | 162 | if (config instanceof AbstractConfiguration) |
| 121 | |
{ |
| 122 | 162 | ((AbstractConfiguration) config).setThrowExceptionOnMissing(isThrowExceptionOnMissing()); |
| 123 | |
} |
| 124 | |
} |
| 125 | 164 | } |
| 126 | |
|
| 127 | |
|
| 128 | |
|
| 129 | |
|
| 130 | |
|
| 131 | |
|
| 132 | |
public void removeConfiguration(Configuration config) |
| 133 | |
{ |
| 134 | |
|
| 135 | |
|
| 136 | 4 | if (!config.equals(inMemoryConfiguration)) |
| 137 | |
{ |
| 138 | 2 | configList.remove(config); |
| 139 | |
} |
| 140 | 4 | } |
| 141 | |
|
| 142 | |
|
| 143 | |
|
| 144 | |
|
| 145 | |
|
| 146 | |
|
| 147 | |
public int getNumberOfConfigurations() |
| 148 | |
{ |
| 149 | 31 | return configList.size(); |
| 150 | |
} |
| 151 | |
|
| 152 | |
|
| 153 | |
|
| 154 | |
|
| 155 | |
public void clear() |
| 156 | |
{ |
| 157 | 130 | configList.clear(); |
| 158 | |
|
| 159 | 130 | inMemoryConfiguration = new BaseConfiguration(); |
| 160 | 130 | ((BaseConfiguration) inMemoryConfiguration).setThrowExceptionOnMissing(isThrowExceptionOnMissing()); |
| 161 | 130 | ((BaseConfiguration) inMemoryConfiguration).setListDelimiter(getListDelimiter()); |
| 162 | 130 | ((BaseConfiguration) inMemoryConfiguration).setDelimiterParsingDisabled(isDelimiterParsingDisabled()); |
| 163 | 130 | configList.add(inMemoryConfiguration); |
| 164 | 130 | } |
| 165 | |
|
| 166 | |
|
| 167 | |
|
| 168 | |
|
| 169 | |
|
| 170 | |
|
| 171 | |
|
| 172 | |
protected void addPropertyDirect(String key, Object token) |
| 173 | |
{ |
| 174 | 35 | inMemoryConfiguration.addProperty(key, token); |
| 175 | 35 | } |
| 176 | |
|
| 177 | |
|
| 178 | |
|
| 179 | |
|
| 180 | |
|
| 181 | |
|
| 182 | |
|
| 183 | |
|
| 184 | |
public Object getProperty(String key) |
| 185 | |
{ |
| 186 | 133 | Configuration firstMatchingConfiguration = null; |
| 187 | 133 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 188 | |
{ |
| 189 | 201 | Configuration config = (Configuration) i.next(); |
| 190 | 201 | if (config.containsKey(key)) |
| 191 | |
{ |
| 192 | 108 | firstMatchingConfiguration = config; |
| 193 | 108 | break; |
| 194 | |
} |
| 195 | 93 | } |
| 196 | |
|
| 197 | 133 | if (firstMatchingConfiguration != null) |
| 198 | |
{ |
| 199 | 108 | return firstMatchingConfiguration.getProperty(key); |
| 200 | |
} |
| 201 | |
else |
| 202 | |
{ |
| 203 | 25 | return null; |
| 204 | |
} |
| 205 | |
} |
| 206 | |
|
| 207 | |
public Iterator getKeys() |
| 208 | |
{ |
| 209 | 14 | List keys = new ArrayList(); |
| 210 | 14 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 211 | |
{ |
| 212 | 24 | Configuration config = (Configuration) i.next(); |
| 213 | |
|
| 214 | 24 | Iterator j = config.getKeys(); |
| 215 | 150 | while (j.hasNext()) |
| 216 | |
{ |
| 217 | 126 | String key = (String) j.next(); |
| 218 | 126 | if (!keys.contains(key)) |
| 219 | |
{ |
| 220 | 125 | keys.add(key); |
| 221 | |
} |
| 222 | 126 | } |
| 223 | 24 | } |
| 224 | |
|
| 225 | 14 | return keys.iterator(); |
| 226 | |
} |
| 227 | |
|
| 228 | |
public Iterator getKeys(String key) |
| 229 | |
{ |
| 230 | 9 | List keys = new ArrayList(); |
| 231 | 9 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 232 | |
{ |
| 233 | 22 | Configuration config = (Configuration) i.next(); |
| 234 | |
|
| 235 | 22 | Iterator j = config.getKeys(key); |
| 236 | 218 | while (j.hasNext()) |
| 237 | |
{ |
| 238 | 196 | String newKey = (String) j.next(); |
| 239 | 196 | if (!keys.contains(newKey)) |
| 240 | |
{ |
| 241 | 194 | keys.add(newKey); |
| 242 | |
} |
| 243 | 196 | } |
| 244 | 22 | } |
| 245 | |
|
| 246 | 9 | return keys.iterator(); |
| 247 | |
} |
| 248 | |
|
| 249 | |
public boolean isEmpty() |
| 250 | |
{ |
| 251 | 4 | boolean isEmpty = true; |
| 252 | 4 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 253 | |
{ |
| 254 | 4 | Configuration config = (Configuration) i.next(); |
| 255 | 4 | if (!config.isEmpty()) |
| 256 | |
{ |
| 257 | 4 | return false; |
| 258 | |
} |
| 259 | 0 | } |
| 260 | |
|
| 261 | 0 | return isEmpty; |
| 262 | |
} |
| 263 | |
|
| 264 | |
protected void clearPropertyDirect(String key) |
| 265 | |
{ |
| 266 | 16 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 267 | |
{ |
| 268 | 35 | Configuration config = (Configuration) i.next(); |
| 269 | 35 | config.clearProperty(key); |
| 270 | 35 | } |
| 271 | 16 | } |
| 272 | |
|
| 273 | |
public boolean containsKey(String key) |
| 274 | |
{ |
| 275 | 55 | for (Iterator i = configList.iterator(); i.hasNext();) |
| 276 | |
{ |
| 277 | 72 | Configuration config = (Configuration) i.next(); |
| 278 | 72 | if (config.containsKey(key)) |
| 279 | |
{ |
| 280 | 44 | return true; |
| 281 | |
} |
| 282 | 28 | } |
| 283 | 11 | return false; |
| 284 | |
} |
| 285 | |
|
| 286 | |
public List getList(String key, List defaultValue) |
| 287 | |
{ |
| 288 | 46 | List list = new ArrayList(); |
| 289 | |
|
| 290 | |
|
| 291 | 46 | Iterator it = configList.iterator(); |
| 292 | 107 | while (it.hasNext() && list.isEmpty()) |
| 293 | |
{ |
| 294 | 61 | Configuration config = (Configuration) it.next(); |
| 295 | 61 | if (config != inMemoryConfiguration && config.containsKey(key)) |
| 296 | |
{ |
| 297 | 32 | list.addAll(config.getList(key)); |
| 298 | |
} |
| 299 | 61 | } |
| 300 | |
|
| 301 | |
|
| 302 | 46 | list.addAll(inMemoryConfiguration.getList(key)); |
| 303 | |
|
| 304 | 46 | if (list.isEmpty()) |
| 305 | |
{ |
| 306 | 5 | return defaultValue; |
| 307 | |
} |
| 308 | |
|
| 309 | 41 | ListIterator lit = list.listIterator(); |
| 310 | 120 | while (lit.hasNext()) |
| 311 | |
{ |
| 312 | 79 | lit.set(interpolate(lit.next())); |
| 313 | 79 | } |
| 314 | |
|
| 315 | 41 | return list; |
| 316 | |
} |
| 317 | |
|
| 318 | |
public String[] getStringArray(String key) |
| 319 | |
{ |
| 320 | 13 | List list = getList(key); |
| 321 | |
|
| 322 | |
|
| 323 | 13 | String[] tokens = new String[list.size()]; |
| 324 | |
|
| 325 | 33 | for (int i = 0; i < tokens.length; i++) |
| 326 | |
{ |
| 327 | 20 | tokens[i] = interpolate(String.valueOf(list.get(i))); |
| 328 | |
} |
| 329 | |
|
| 330 | 13 | return tokens; |
| 331 | |
} |
| 332 | |
|
| 333 | |
|
| 334 | |
|
| 335 | |
|
| 336 | |
|
| 337 | |
|
| 338 | |
|
| 339 | |
public Configuration getConfiguration(int index) |
| 340 | |
{ |
| 341 | 29 | return (Configuration) configList.get(index); |
| 342 | |
} |
| 343 | |
|
| 344 | |
|
| 345 | |
|
| 346 | |
|
| 347 | |
|
| 348 | |
|
| 349 | |
|
| 350 | |
public Configuration getInMemoryConfiguration() |
| 351 | |
{ |
| 352 | 12 | return inMemoryConfiguration; |
| 353 | |
} |
| 354 | |
|
| 355 | |
|
| 356 | |
|
| 357 | |
|
| 358 | |
|
| 359 | |
|
| 360 | |
|
| 361 | |
|
| 362 | |
|
| 363 | |
|
| 364 | |
|
| 365 | |
public Object clone() |
| 366 | |
{ |
| 367 | |
try |
| 368 | |
{ |
| 369 | 3 | CompositeConfiguration copy = (CompositeConfiguration) super |
| 370 | |
.clone(); |
| 371 | 3 | copy.clearConfigurationListeners(); |
| 372 | 3 | copy.configList = new LinkedList(); |
| 373 | 3 | copy.inMemoryConfiguration = ConfigurationUtils |
| 374 | |
.cloneConfiguration(getInMemoryConfiguration()); |
| 375 | 3 | copy.configList.add(copy.inMemoryConfiguration); |
| 376 | |
|
| 377 | 5 | for (int i = 0; i < getNumberOfConfigurations(); i++) |
| 378 | |
{ |
| 379 | 3 | Configuration config = getConfiguration(i); |
| 380 | 3 | if (config != getInMemoryConfiguration()) |
| 381 | |
{ |
| 382 | 1 | copy.addConfiguration(ConfigurationUtils |
| 383 | |
.cloneConfiguration(config)); |
| 384 | |
} |
| 385 | |
} |
| 386 | |
|
| 387 | 2 | return copy; |
| 388 | |
} |
| 389 | 0 | catch (CloneNotSupportedException cnex) |
| 390 | |
{ |
| 391 | |
|
| 392 | 0 | throw new ConfigurationRuntimeException(cnex); |
| 393 | |
} |
| 394 | |
} |
| 395 | |
|
| 396 | |
|
| 397 | |
|
| 398 | |
|
| 399 | |
|
| 400 | |
|
| 401 | |
|
| 402 | |
|
| 403 | |
|
| 404 | |
public void setDelimiterParsingDisabled(boolean delimiterParsingDisabled) |
| 405 | |
{ |
| 406 | 2 | ((BaseConfiguration) getInMemoryConfiguration()) |
| 407 | |
.setDelimiterParsingDisabled(delimiterParsingDisabled); |
| 408 | 2 | super.setDelimiterParsingDisabled(delimiterParsingDisabled); |
| 409 | 2 | } |
| 410 | |
|
| 411 | |
|
| 412 | |
|
| 413 | |
|
| 414 | |
|
| 415 | |
|
| 416 | |
|
| 417 | |
|
| 418 | |
public void setListDelimiter(char listDelimiter) |
| 419 | |
{ |
| 420 | 2 | ((BaseConfiguration) getInMemoryConfiguration()) |
| 421 | |
.setListDelimiter(listDelimiter); |
| 422 | 2 | super.setListDelimiter(listDelimiter); |
| 423 | 2 | } |
| 424 | |
|
| 425 | |
|
| 426 | |
|
| 427 | |
|
| 428 | |
|
| 429 | |
|
| 430 | |
|
| 431 | |
|
| 432 | |
|
| 433 | |
|
| 434 | |
|
| 435 | |
|
| 436 | |
|
| 437 | |
|
| 438 | |
|
| 439 | |
|
| 440 | |
|
| 441 | |
|
| 442 | |
|
| 443 | |
|
| 444 | |
|
| 445 | |
|
| 446 | |
|
| 447 | |
|
| 448 | |
public Configuration getSource(String key) |
| 449 | |
{ |
| 450 | 5 | if (key == null) |
| 451 | |
{ |
| 452 | 1 | throw new IllegalArgumentException("Key must not be null!"); |
| 453 | |
} |
| 454 | |
|
| 455 | 4 | Configuration source = null; |
| 456 | 4 | for (Iterator it = configList.iterator(); it.hasNext();) |
| 457 | |
{ |
| 458 | 12 | Configuration conf = (Configuration) it.next(); |
| 459 | 12 | if (conf.containsKey(key)) |
| 460 | |
{ |
| 461 | 4 | if (source != null) |
| 462 | |
{ |
| 463 | 1 | throw new IllegalArgumentException("The key " + key |
| 464 | |
+ " is defined by multiple sources!"); |
| 465 | |
} |
| 466 | 3 | source = conf; |
| 467 | |
} |
| 468 | 11 | } |
| 469 | |
|
| 470 | 3 | return source; |
| 471 | |
} |
| 472 | |
} |