simplifications.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / CompositeConfig.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.xmlrouter.impl;
17
18 import static org.wamblee.xmlrouter.impl.MessageUtil.*;
19
20 import java.util.ArrayList;
21 import java.util.HashSet;
22 import java.util.List;
23 import java.util.Set;
24
25 import org.wamblee.xmlrouter.common.Id;
26 import org.wamblee.xmlrouter.config.Config;
27 import org.wamblee.xmlrouter.config.ConfigException;
28 import org.wamblee.xmlrouter.config.Identifiable;
29
30 /**
31  * Composite config. The composite config
32  * 
33  * @author Erik Brakkee
34  * 
35  * @param <T>
36  */
37 public class CompositeConfig<T extends Identifiable<T>> implements
38     ExtendedConfig<T> {
39
40     private static final Id<Config> ID = new Id<Config>("compositeconfig");
41     private static final String READ_ONLY_INSTANCE = "read only instance";
42     private Set<Id<Config>> ids;
43     private List<Id<T>> valueIds;
44     private List<T> values;
45
46     public CompositeConfig() {
47         ids = new HashSet<Id<Config>>();
48         valueIds = new ArrayList<Id<T>>();
49         values = new ArrayList<T>();
50     }
51
52     @Override
53     public Id<Config> getId() {
54         return ID;
55     }
56
57     public void addConfig(Config<T> aConfig) {
58         notNull("aConfig", aConfig);
59         if (ids.contains(aConfig.getId())) {
60             throw new ConfigException("duplicate id '" +
61                 aConfig.getId().toString() + "'");
62         }
63         for (T item : aConfig.values()) {
64             if (valueIds.contains(item.getId())) {
65                 throw new ConfigException("duplicate id '" +
66                     item.getId().toString() + "'");
67             }
68         }
69
70         ids.add(aConfig.getId());
71         for (T item : aConfig.values()) {
72             valueIds.add(item.getId());
73             values.add(item);
74         }
75     }
76
77     @Override
78     public List<T> values() {
79         return values;
80     }
81
82     @Override
83     public boolean remove(Id<T> aId) {
84         notSupported(READ_ONLY_INSTANCE);
85         return false;
86     }
87
88     @Override
89     public void add(T aT) {
90         notSupported(READ_ONLY_INSTANCE);
91     }
92 }