1 | /* |
---|
2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
3 | * > www.orxonox.net < |
---|
4 | * |
---|
5 | * |
---|
6 | * License notice: |
---|
7 | * |
---|
8 | * This program is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the GNU General Public License |
---|
10 | * as published by the Free Software Foundation; either version 2 |
---|
11 | * of the License, or (at your option) any later version. |
---|
12 | * |
---|
13 | * This program is distributed in the hope that it will be useful, |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | * GNU General Public License for more details. |
---|
17 | * |
---|
18 | * You should have received a copy of the GNU General Public License |
---|
19 | * along with this program; if not, write to the Free Software |
---|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
21 | * |
---|
22 | * Author: |
---|
23 | * Fabian 'x3n' Landau |
---|
24 | * Co-authors: |
---|
25 | * ... |
---|
26 | * |
---|
27 | */ |
---|
28 | |
---|
29 | /** |
---|
30 | @file |
---|
31 | @brief Implementation of the Identifier class. |
---|
32 | */ |
---|
33 | |
---|
34 | #include "IdentifierManager.h" |
---|
35 | |
---|
36 | #include <ostream> |
---|
37 | |
---|
38 | #include "util/StringUtils.h" |
---|
39 | #include "core/Core.h" |
---|
40 | #include "core/config/ConfigValueContainer.h" |
---|
41 | #include "core/XMLPort.h" |
---|
42 | #include "core/object/ClassFactory.h" |
---|
43 | |
---|
44 | namespace orxonox |
---|
45 | { |
---|
46 | IdentifierManager* IdentifierManager::singletonPtr_s = nullptr; |
---|
47 | |
---|
48 | IdentifierManager::IdentifierManager() |
---|
49 | { |
---|
50 | this->hierarchyCreatingCounter_s = 0; |
---|
51 | this->recordTraceForIdentifier_ = nullptr; |
---|
52 | } |
---|
53 | |
---|
54 | /** |
---|
55 | * Registers the identifier in all maps of the IdentifierManager. |
---|
56 | */ |
---|
57 | void IdentifierManager::addIdentifier(Identifier* identifier) |
---|
58 | { |
---|
59 | orxout(verbose, context::identifier) << "Adding identifier for " << identifier->getName() << " / " << identifier->getTypeInfo().name() << endl; |
---|
60 | |
---|
61 | this->identifiers_.insert(identifier); |
---|
62 | this->identifierByTypeIndex_[identifier->getTypeInfo()] = identifier; |
---|
63 | this->identifierByString_[identifier->getName()] = identifier; |
---|
64 | this->identifierByLowercaseString_[getLowercase(identifier->getName())] = identifier; |
---|
65 | this->identifierByNetworkId_[identifier->getNetworkID()] = identifier; |
---|
66 | } |
---|
67 | |
---|
68 | /** |
---|
69 | * Unregisters the identifier from all maps of the IdentifierManager. |
---|
70 | */ |
---|
71 | void IdentifierManager::removeIdentifier(Identifier* identifier) |
---|
72 | { |
---|
73 | this->identifiers_.erase(identifier); |
---|
74 | this->identifierByTypeIndex_.erase(identifier->getTypeInfo()); |
---|
75 | this->identifierByString_.erase(identifier->getName()); |
---|
76 | this->identifierByLowercaseString_.erase(getLowercase(identifier->getName())); |
---|
77 | this->identifierByNetworkId_.erase(identifier->getNetworkID()); |
---|
78 | } |
---|
79 | |
---|
80 | /** |
---|
81 | @brief Creates the class-hierarchy by creating and destroying one object of each type. |
---|
82 | */ |
---|
83 | void IdentifierManager::createClassHierarchy() |
---|
84 | { |
---|
85 | orxout(internal_status) << "Create class-hierarchy" << endl; |
---|
86 | this->startCreatingHierarchy(); |
---|
87 | |
---|
88 | std::set<Identifier*> initializedIdentifiers; |
---|
89 | |
---|
90 | // ensure root context exists before starting to create objects. if the root context is dynamically created while creating the class hierarchy, we |
---|
91 | // would mistakenly assume the class of the currently created object inherits from Context |
---|
92 | Context::getRootContext(); |
---|
93 | |
---|
94 | // iterate over all identifiers, create one instance of each class and initialize the identifiers |
---|
95 | { |
---|
96 | Context temporaryContext(nullptr); |
---|
97 | for (Identifier* identifier : this->identifiers_) |
---|
98 | { |
---|
99 | if (identifier->isInitialized()) |
---|
100 | continue; |
---|
101 | |
---|
102 | orxout(verbose, context::identifier) << "Initialize ClassIdentifier<" << identifier->getName() << ">-Singleton." << endl; |
---|
103 | // To initialize the identifier, we create a new object and delete it afterwards. |
---|
104 | if (identifier->hasFactory()) |
---|
105 | { |
---|
106 | this->identifierTraceOfNewObject_.clear(); |
---|
107 | this->recordTraceForIdentifier_ = identifier; |
---|
108 | |
---|
109 | Identifiable* temp = identifier->fabricate(&temporaryContext); |
---|
110 | |
---|
111 | this->recordTraceForIdentifier_ = nullptr; |
---|
112 | |
---|
113 | if (temp->getIdentifier() != identifier) |
---|
114 | orxout(internal_error) << "Newly created object of type " << identifier->getName() << " has unexpected identifier. Did you forget to use RegisterObject(classname)?" << endl; |
---|
115 | |
---|
116 | identifier->initializeParents(this->identifierTraceOfNewObject_[temp]); |
---|
117 | |
---|
118 | delete temp; |
---|
119 | } |
---|
120 | |
---|
121 | initializedIdentifiers.insert(identifier); |
---|
122 | } |
---|
123 | |
---|
124 | size_t numberOfObjects = temporaryContext.getObjectList<Listable>()->size(); |
---|
125 | if (numberOfObjects > 0) |
---|
126 | orxout(internal_warning) << "There are still " << numberOfObjects << " listables left after creating the class hierarchy" << endl; |
---|
127 | } |
---|
128 | |
---|
129 | // finish the initialization of all identifiers |
---|
130 | for (Identifier* initializedIdentifier : initializedIdentifiers) |
---|
131 | initializedIdentifier->finishInitialization(); |
---|
132 | |
---|
133 | // only check class hierarchy in dev mode because it's an expensive operation and it requires a developer to fix detected problems anyway. |
---|
134 | if (!Core::exists() || Core::getInstance().getConfig()->inDevMode()) |
---|
135 | this->verifyClassHierarchy(initializedIdentifiers); |
---|
136 | |
---|
137 | this->stopCreatingHierarchy(); |
---|
138 | orxout(internal_status) << "Finished class-hierarchy creation" << endl; |
---|
139 | } |
---|
140 | |
---|
141 | /** |
---|
142 | * Verifies if the class hierarchy is consistent with the RTTI. |
---|
143 | */ |
---|
144 | void IdentifierManager::verifyClassHierarchy(const std::set<Identifier*>& initializedIdentifiers) |
---|
145 | { |
---|
146 | // check if there are any uninitialized identifiers remaining |
---|
147 | for (Identifier* identifier : this->identifiers_) |
---|
148 | if (!identifier->isInitialized()) |
---|
149 | orxout(internal_error) << "Identifier was registered late and is not initialized: " << identifier->getName() << " / " << identifier->getTypeInfo().name() << endl; |
---|
150 | |
---|
151 | // for all initialized identifiers, check if a sample instance behaves as expected according to the class hierarchy |
---|
152 | Context temporaryContext(nullptr); |
---|
153 | for (Identifier* initializedIdentifier : initializedIdentifiers) |
---|
154 | { |
---|
155 | if (!initializedIdentifier->hasFactory()) |
---|
156 | continue; |
---|
157 | |
---|
158 | Identifiable* temp = initializedIdentifier->fabricate(&temporaryContext); |
---|
159 | |
---|
160 | for (Identifier* identifier : this->identifiers_) |
---|
161 | { |
---|
162 | bool isA_AccordingToRtti = identifier->canDynamicCastObjectToIdentifierClass(temp); |
---|
163 | bool isA_AccordingToClassHierarchy = temp->isA(identifier); |
---|
164 | |
---|
165 | if (isA_AccordingToRtti != isA_AccordingToClassHierarchy) |
---|
166 | { |
---|
167 | orxout(internal_error) << "Class hierarchy does not match RTTI: Class hierarchy claims that " << initializedIdentifier->getName() << |
---|
168 | (isA_AccordingToClassHierarchy ? " is a " : " is not a ") << identifier->getName() << " but RTTI says the opposite." << endl; |
---|
169 | } |
---|
170 | } |
---|
171 | |
---|
172 | delete temp; |
---|
173 | } |
---|
174 | orxout(internal_info) << "Class hierarchy matches RTTI" << endl; |
---|
175 | |
---|
176 | size_t numberOfObjects = temporaryContext.getObjectList<Listable>()->size(); |
---|
177 | if (numberOfObjects > 0) |
---|
178 | orxout(internal_warning) << "There are still " << numberOfObjects << " listables left after creating the class hierarchy" << endl; |
---|
179 | } |
---|
180 | |
---|
181 | /** |
---|
182 | * @brief Resets all Identifiers. |
---|
183 | */ |
---|
184 | void IdentifierManager::destroyClassHierarchy() |
---|
185 | { |
---|
186 | orxout(internal_status) << "Destroy class-hierarchy" << endl; |
---|
187 | for (Identifier* identifier : this->identifiers_) |
---|
188 | identifier->reset(); |
---|
189 | } |
---|
190 | |
---|
191 | /** |
---|
192 | * @brief Notifies the IdentifierManager about a newly created object while creating the class hierarchy. |
---|
193 | */ |
---|
194 | void IdentifierManager::createdObject(Identifiable* identifiable) |
---|
195 | { |
---|
196 | if (this->isCreatingHierarchy()) |
---|
197 | { |
---|
198 | if (this->recordTraceForIdentifier_) |
---|
199 | { |
---|
200 | std::list<const Identifier*>& traceForObject = this->identifierTraceOfNewObject_[identifiable]; |
---|
201 | if (std::find(traceForObject.begin(), traceForObject.end(), identifiable->getIdentifier()) != traceForObject.end()) |
---|
202 | { |
---|
203 | orxout(internal_warning) << this->recordTraceForIdentifier_->getName() << " inherits two times from " << |
---|
204 | identifiable->getIdentifier()->getName() << ". Did you forget to use virtual inheritance?" << endl; |
---|
205 | } |
---|
206 | traceForObject.push_back(identifiable->getIdentifier()); |
---|
207 | } |
---|
208 | } |
---|
209 | else |
---|
210 | orxout(internal_warning) << "createdObject() called outside of class hierarchy creation" << endl; |
---|
211 | } |
---|
212 | |
---|
213 | /** |
---|
214 | @brief Returns the Identifier with a given name. |
---|
215 | @param name The name of the wanted Identifier |
---|
216 | @return The Identifier |
---|
217 | */ |
---|
218 | Identifier* IdentifierManager::getIdentifierByString(const std::string& name) |
---|
219 | { |
---|
220 | std::map<std::string, Identifier*>::const_iterator it = this->identifierByString_.find(name); |
---|
221 | if (it != this->identifierByString_.end()) |
---|
222 | return it->second; |
---|
223 | else |
---|
224 | return nullptr; |
---|
225 | } |
---|
226 | |
---|
227 | /** |
---|
228 | @brief Returns the Identifier with a given name in lowercase. |
---|
229 | @param name The name of the wanted Identifier |
---|
230 | @return The Identifier |
---|
231 | */ |
---|
232 | Identifier* IdentifierManager::getIdentifierByLowercaseString(const std::string& name) |
---|
233 | { |
---|
234 | std::map<std::string, Identifier*>::const_iterator it = this->identifierByLowercaseString_.find(name); |
---|
235 | if (it != this->identifierByLowercaseString_.end()) |
---|
236 | return it->second; |
---|
237 | else |
---|
238 | return nullptr; |
---|
239 | } |
---|
240 | |
---|
241 | /** |
---|
242 | @brief Returns the Identifier with a given network ID. |
---|
243 | @param id The network ID of the wanted Identifier |
---|
244 | @return The Identifier |
---|
245 | */ |
---|
246 | Identifier* IdentifierManager::getIdentifierByID(const uint32_t id) |
---|
247 | { |
---|
248 | std::map<uint32_t, Identifier*>::const_iterator it = this->identifierByNetworkId_.find(id); |
---|
249 | if (it != this->identifierByNetworkId_.end()) |
---|
250 | return it->second; |
---|
251 | else |
---|
252 | return nullptr; |
---|
253 | } |
---|
254 | |
---|
255 | /** |
---|
256 | @brief Returns the Identifier with a given typeid-name. |
---|
257 | @param typeInfo The type_info of the wanted Identifier |
---|
258 | @return The Identifier |
---|
259 | */ |
---|
260 | Identifier* IdentifierManager::getIdentifierByTypeInfo(const std::type_info& typeInfo) |
---|
261 | { |
---|
262 | auto it = this->identifierByTypeIndex_.find(typeInfo); |
---|
263 | if (it != this->identifierByTypeIndex_.end()) |
---|
264 | return it->second; |
---|
265 | else |
---|
266 | return nullptr; |
---|
267 | } |
---|
268 | |
---|
269 | /** |
---|
270 | @brief Cleans the NetworkID map (needed on clients for correct initialization) |
---|
271 | */ |
---|
272 | void IdentifierManager::clearNetworkIDs() |
---|
273 | { |
---|
274 | this->identifierByNetworkId_.clear(); |
---|
275 | } |
---|
276 | } |
---|