equality based on the ids of the contents of SingleRouterConfig.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / ConfigImpl.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.Collection;
21 import java.util.Collections;
22 import java.util.HashMap;
23 import java.util.Map;
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  * Default implementation of the {@link Config} interface.
32  * 
33  * @author Erik Brakkee
34  * 
35  * @param <T>
36  */
37 public abstract class ConfigImpl<T extends Identifiable<T>> implements
38     ExtendedConfig<T> {
39
40     private Id<Config> id;
41     private Map<Id<T>, T> registered;
42
43     /**
44      * Constructs the object.
45      */
46     public ConfigImpl(Id<Config> aId) {
47         notNull("id", aId);
48         id = aId;
49         registered = new HashMap<Id<T>, T>();
50     }
51
52     @Override
53     public Id<Config> getId() {
54         return id;
55     }
56
57     /*
58      * (non-Javadoc)
59      * 
60      * @see org.wamblee.xmlrouter.config.Config#add(T)
61      */
62     @Override
63     public synchronized void add(T aT) {
64         notNull("aT", aT);
65         if (registered.containsKey(aT.getId())) {
66             throw new ConfigException("Duplicate id '" + aT.getId() + "'");
67         }
68         registered.put(aT.getId(), wrap(id.getId() + ".", aT));
69     }
70
71     /**
72      * This is called to wrap the given object by a safer version.
73      * 
74      * @param aT
75      *            Object to wrap.
76      * @return Wrapped object.
77      */
78     public abstract T wrap(String aPrefix, T aT);
79
80     /*
81      * (non-Javadoc)
82      * 
83      * @see
84      * org.wamblee.xmlrouter.config.Config#remove(org.wamblee.xmlrouter.common
85      * .Id)
86      */
87     @Override
88     public synchronized boolean remove(Id<T> aId) {
89         notNull("aId", aId);
90         T value = registered.get(aId);
91         if (value != null) {
92             registered.remove(aId);
93             return true;
94         }
95         return false;
96     }
97
98     @Override
99     public Collection<T> values() {
100         return Collections.unmodifiableCollection(registered.values());
101     }
102
103     @Override
104     public boolean equals(Object aObj) {
105         if (aObj == null) {
106             return false;
107         }
108         if (!(aObj instanceof ConfigImpl)) {
109             return false;
110         }
111         ConfigImpl obj = (ConfigImpl) aObj;
112         return registered.keySet().equals(obj.registered.keySet());
113     }
114
115     @Override
116     public int hashCode() {
117         return registered.keySet().hashCode();
118     }
119 }