Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core7/src/libraries/core/class/Identifier.cc @ 10400

Last change on this file since 10400 was 10400, checked in by landauf, 9 years ago

fixed tests. however there are some open issues:

  • the class-hierarchy must be built exactly 1 times in core_test. this is currently done in CommandTest.cc because that's the first test to run in core_test which actually needs the class hierarchy. the order of tests is not guaranteed though, so this should be solved more generic
  • during creation of class hierarchy, config values are used. this fails in the tests, so it had to be disabled with a static flag in Identifier. this should be solved in a cleaner way.
  • because the class hierarchy is now statically generated for all tests in core_test in CommandTest.cc, there is no way to test identifiers in an uninitialized state. because of this, three tests had to be disabled (*_NoFixture tests)

⇒ make the creation of the class hierarchy more modular and fix these issues

  • Property svn:eol-style set to native
File size: 19.0 KB
Line 
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 "Identifier.h"
35
36#include <ostream>
37
38#include "util/StringUtils.h"
39#include "core/CoreIncludes.h"
40#include "core/config/ConfigValueContainer.h"
41#include "core/XMLPort.h"
42#include "core/object/ClassFactory.h"
43
44namespace orxonox
45{
46    bool Identifier::initConfigValues_s = true;
47
48    // ###############################
49    // ###       Identifier        ###
50    // ###############################
51    /**
52        @brief Constructor: No factory, no object created, new ObjectList and a unique networkID.
53    */
54    Identifier::Identifier(const std::string& name, Factory* factory, bool bLoadable)
55        : classID_(IdentifierManager::getInstance().getUniqueClassId())
56    {
57        orxout(verbose, context::identifier) << "Create identifier for " << name << endl;
58
59        this->name_ = name;
60        this->factory_ = factory;
61        this->bLoadable_ = bLoadable;
62        this->bInitialized_ = false;
63        this->bIsVirtualBase_ = false;
64
65        this->bHasConfigValues_ = false;
66
67        // Default network ID is the class ID
68        this->networkID_ = this->classID_;
69    }
70
71    /**
72        @brief Destructor: Deletes the list containing the children.
73    */
74    Identifier::~Identifier()
75    {
76        if (this->factory_)
77            delete this->factory_;
78
79        for (std::map<std::string, ConfigValueContainer*>::iterator it = this->configValues_.begin(); it != this->configValues_.end(); ++it)
80            delete (it->second);
81        for (std::map<std::string, XMLPortParamContainer*>::iterator it = this->xmlportParamContainers_.begin(); it != this->xmlportParamContainers_.end(); ++it)
82            delete (it->second);
83        for (std::map<std::string, XMLPortObjectContainer*>::iterator it = this->xmlportObjectContainers_.begin(); it != this->xmlportObjectContainers_.end(); ++it)
84            delete (it->second);
85    }
86
87
88    /**
89        @brief Creates an object of the type the Identifier belongs to.
90        @return The new object
91    */
92    Identifiable* Identifier::fabricate(Context* context)
93    {
94        if (this->factory_)
95        {
96            return this->factory_->fabricate(context);
97        }
98        else
99        {
100            orxout(user_error) << "An error occurred in Identifier.cc:" << endl;
101            orxout(user_error) << "Cannot fabricate an object of type '" << this->name_ << "'. Class has no factory." << endl;
102            orxout(user_error) << "Aborting..." << endl;
103            abort();
104            return 0;
105        }
106    }
107
108    /**
109        @brief Sets the network ID to a new value and changes the entry in the ID-Identifier-map.
110    */
111    void Identifier::setNetworkID(uint32_t id)
112    {
113        this->networkID_ = id;
114        IdentifierManager::getInstance().addIdentifier(this);
115    }
116
117    /**
118     * @brief Used to define the direct parents of an Identifier of an abstract class.
119     */
120    Identifier& Identifier::inheritsFrom(Identifier* directParent)
121    {
122        if (this->parents_.empty())
123            this->directParents_.push_back(directParent);
124        else
125            orxout(internal_error) << "Trying to add " << directParent->getName() << " as a direct parent of " << this->getName() << " after the latter was already initialized" << endl;
126
127        return *this;
128    }
129
130    /**
131     * @brief Initializes the parents of this Identifier while creating the class hierarchy.
132     * @param initializationTrace All identifiers that were recorded while creating an instance of this class (including nested classes and this identifier itself)
133     */
134    void Identifier::initializeParents(const std::list<const Identifier*>& initializationTrace)
135    {
136        if (!IdentifierManager::getInstance().isCreatingHierarchy())
137        {
138            orxout(internal_warning) << "Identifier::initializeParents() created outside of class hierarchy creation" << endl;
139            return;
140        }
141
142        if (this->directParents_.empty())
143        {
144            for (std::list<const Identifier*>::const_iterator it = initializationTrace.begin(); it != initializationTrace.end(); ++it)
145                if (*it != this)
146                    this->parents_.push_back(*it);
147        }
148        else
149            orxout(internal_error) << "Trying to add parents to " << this->getName() << " after it was already initialized with manual calls to inheritsFrom<Class>()." << endl;
150    }
151
152    /**
153     * @brief Finishes the initialization of this Identifier after creating the class hierarchy by wiring the (direct) parent/child references correctly.
154     */
155    void Identifier::finishInitialization()
156    {
157        if (!IdentifierManager::getInstance().isCreatingHierarchy())
158        {
159            orxout(internal_warning) << "Identifier::finishInitialization() created outside of class hierarchy creation" << endl;
160            return;
161        }
162
163        if (this->isInitialized())
164            return;
165
166        if (!this->parents_.empty())
167        {
168            // parents defined -> this class was initialized by creating a sample instance and recording the trace of identifiers
169
170            // initialize all parents
171            for (std::list<const Identifier*>::const_iterator it = this->parents_.begin(); it != this->parents_.end(); ++it)
172                const_cast<Identifier*>(*it)->finishInitialization(); // initialize parent
173
174            // parents of parents are no direct parents of this identifier
175            this->directParents_ = this->parents_;
176            for (std::list<const Identifier*>::const_iterator it_parent = this->parents_.begin(); it_parent != this->parents_.end(); ++it_parent)
177                for (std::list<const Identifier*>::const_iterator it_parent_parent = const_cast<Identifier*>(*it_parent)->parents_.begin(); it_parent_parent != const_cast<Identifier*>(*it_parent)->parents_.end(); ++it_parent_parent)
178                    this->directParents_.remove(*it_parent_parent);
179
180            this->verifyIdentifierTrace();
181        }
182        else if (!this->directParents_.empty())
183        {
184            // no parents defined -> this class was manually initialized by calling inheritsFrom<Class>()
185
186            // initialize all direct parents
187            for (std::list<const Identifier*>::const_iterator it = this->directParents_.begin(); it != this->directParents_.end(); ++it)
188                const_cast<Identifier*>(*it)->finishInitialization(); // initialize parent
189
190            // direct parents and their parents are also parents of this identifier (but only add them once)
191            for (std::list<const Identifier*>::const_iterator it_parent = this->directParents_.begin(); it_parent != this->directParents_.end(); ++it_parent)
192            {
193                for (std::list<const Identifier*>::const_iterator it_parent_parent = const_cast<Identifier*>(*it_parent)->parents_.begin(); it_parent_parent != const_cast<Identifier*>(*it_parent)->parents_.end(); ++it_parent_parent)
194                    this->addIfNotExists(this->parents_, *it_parent_parent);
195                this->addIfNotExists(this->parents_, *it_parent);
196            }
197        }
198        else if (!this->isExactlyA(Class(Identifiable)))
199        {
200            // only Identifiable is allowed to have no parents (even tough it's currently not abstract)
201            orxout(internal_error) << "Identifier " << this->getName() << " / " << this->getTypeInfo().name() << " is marked as abstract but has no direct parents defined" << endl;
202            orxout(internal_error) << "  If this class is not abstract, use RegisterClass(ThisClass);" << endl;
203            orxout(internal_error) << "  If this class is abstract, use RegisterAbstractClass(ThisClass).inheritsFrom(Class(BaseClass));" << endl;
204        }
205
206        // tell all parents that this identifier is a child
207        for (std::list<const Identifier*>::const_iterator it = this->parents_.begin(); it != this->parents_.end(); ++it)
208            const_cast<Identifier*>(*it)->children_.insert(this);
209
210        // tell all direct parents that this identifier is a direct child
211        for (std::list<const Identifier*>::const_iterator it = this->directParents_.begin(); it != this->directParents_.end(); ++it)
212        {
213            const_cast<Identifier*>(*it)->directChildren_.insert(this);
214
215            // Create the super-function dependencies
216            (*it)->createSuperFunctionCaller();
217        }
218
219        this->bInitialized_ = true;
220    }
221
222    /**
223     * Verifies if the recorded trace of parent identifiers matches the expected trace according to the class hierarchy. If it doesn't match, the class
224     * hierarchy is likely wrong, e.g. due to wrong inheritsFrom<>() definitions in abstract classes.
225     */
226    void Identifier::verifyIdentifierTrace() const
227    {
228
229        std::list<const Identifier*> expectedIdentifierTrace;
230
231        // if any parent class is virtual, it will be instantiated first, so we need to add them first.
232        for (std::list<const Identifier*>::const_iterator it_parent = this->parents_.begin(); it_parent != this->parents_.end(); ++it_parent)
233        {
234            if ((*it_parent)->isVirtualBase())
235            {
236                for (std::list<const Identifier*>::const_iterator it_parent_parent = const_cast<Identifier*>(*it_parent)->parents_.begin(); it_parent_parent != const_cast<Identifier*>(*it_parent)->parents_.end(); ++it_parent_parent)
237                    this->addIfNotExists(expectedIdentifierTrace, *it_parent_parent);
238                this->addIfNotExists(expectedIdentifierTrace, *it_parent);
239            }
240        }
241
242        // now all direct parents get created recursively. already added identifiers (e.g. virtual base classes) are not added again.
243        for (std::list<const Identifier*>::const_iterator it_parent = this->directParents_.begin(); it_parent != this->directParents_.end(); ++it_parent)
244        {
245            for (std::list<const Identifier*>::const_iterator it_parent_parent = const_cast<Identifier*>(*it_parent)->parents_.begin(); it_parent_parent != const_cast<Identifier*>(*it_parent)->parents_.end(); ++it_parent_parent)
246                this->addIfNotExists(expectedIdentifierTrace, *it_parent_parent);
247            this->addIfNotExists(expectedIdentifierTrace, *it_parent);
248        }
249
250        // check if the expected trace matches the actual trace (which was defined by creating a sample instance)
251        if (expectedIdentifierTrace != this->parents_)
252        {
253            orxout(internal_warning) << this->getName() << " has an unexpected initialization trace:" << endl;
254
255            orxout(internal_warning) << "  Actual trace (after creating a sample instance):" << endl << "    ";
256            for (std::list<const Identifier*>::const_iterator it_parent = this->parents_.begin(); it_parent != this->parents_.end(); ++it_parent)
257                orxout(internal_warning) << " " << (*it_parent)->getName();
258            orxout(internal_warning) << endl;
259
260            orxout(internal_warning) << "  Expected trace (according to class hierarchy definitions):" << endl << "    ";
261            for (std::list<const Identifier*>::const_iterator it_parent = expectedIdentifierTrace.begin(); it_parent != expectedIdentifierTrace.end(); ++it_parent)
262                orxout(internal_warning) << " " << (*it_parent)->getName();
263            orxout(internal_warning) << endl;
264
265            orxout(internal_warning) << "  Direct parents (according to class hierarchy definitions):" << endl << "    ";
266            for (std::list<const Identifier*>::const_iterator it_parent = this->directParents_.begin(); it_parent != this->directParents_.end(); ++it_parent)
267                orxout(internal_warning) << " " << (*it_parent)->getName();
268            orxout(internal_warning) << endl;
269        }
270    }
271
272    /**
273     * Adds @param identifierToAdd to @param list if this identifier is not already contained in the list.
274     */
275    void Identifier::addIfNotExists(std::list<const Identifier*>& list, const Identifier* identifierToAdd) const
276    {
277        if (std::find(list.begin(), list.end(), identifierToAdd) == list.end())
278            list.push_back(identifierToAdd);
279    }
280
281    /**
282        @brief Returns true, if the Identifier is at least of the given type.
283        @param identifier The identifier to compare with
284    */
285    bool Identifier::isA(const Identifier* identifier) const
286    {
287        return (identifier == this || (this->isChildOf(identifier)));
288    }
289
290    /**
291        @brief Returns true, if the Identifier is exactly of the given type.
292        @param identifier The identifier to compare with
293    */
294    bool Identifier::isExactlyA(const Identifier* identifier) const
295    {
296        return (identifier == this);
297    }
298
299    /**
300        @brief Returns true, if the assigned identifier is a child of the given identifier.
301        @param identifier The identifier to compare with
302    */
303    bool Identifier::isChildOf(const Identifier* identifier) const
304    {
305        return (std::find(this->parents_.begin(), this->parents_.end(),  identifier) != this->parents_.end());
306    }
307
308    /**
309        @brief Returns true, if the assigned identifier is a direct child of the given identifier.
310        @param identifier The identifier to compare with
311    */
312    bool Identifier::isDirectChildOf(const Identifier* identifier) const
313    {
314        return (std::find(this->directParents_.begin(), this->directParents_.end(), identifier) != this->directParents_.end());
315    }
316
317    /**
318        @brief Returns true, if the assigned identifier is a parent of the given identifier.
319        @param identifier The identifier to compare with
320    */
321    bool Identifier::isParentOf(const Identifier* identifier) const
322    {
323        return (this->children_.find(identifier) != this->children_.end());
324    }
325
326    /**
327        @brief Returns true, if the assigned identifier is a direct parent of the given identifier.
328        @param identifier The identifier to compare with
329    */
330    bool Identifier::isDirectParentOf(const Identifier* identifier) const
331    {
332        return (this->directChildren_.find(identifier) != this->directChildren_.end());
333    }
334
335    /**
336        @brief Adds the ConfigValueContainer of a variable, given by the string of its name.
337        @param varname The name of the variablee
338        @param container The container
339    */
340    void Identifier::addConfigValueContainer(const std::string& varname, ConfigValueContainer* container)
341    {
342        std::map<std::string, ConfigValueContainer*>::const_iterator it = this->configValues_.find(varname);
343        if (it != this->configValues_.end())
344        {
345            orxout(internal_warning) << "Overwriting config-value with name " << varname << " in class " << this->getName() << '.' << endl;
346            delete (it->second);
347        }
348
349        this->bHasConfigValues_ = true;
350        this->configValues_[varname] = container;
351    }
352
353    /**
354        @brief Returns the ConfigValueContainer of a variable, given by the string of its name.
355        @param varname The name of the variable
356        @return The ConfigValueContainer
357    */
358    ConfigValueContainer* Identifier::getConfigValueContainer(const std::string& varname)
359    {
360        std::map<std::string, ConfigValueContainer*>::const_iterator it = configValues_.find(varname);
361        if (it != configValues_.end())
362            return it->second;
363        else
364            return 0;
365    }
366
367    /**
368        @brief Returns a XMLPortParamContainer that loads a parameter of this class.
369        @param paramname The name of the parameter
370        @return The container
371    */
372    XMLPortParamContainer* Identifier::getXMLPortParamContainer(const std::string& paramname)
373    {
374        std::map<std::string, XMLPortParamContainer*>::const_iterator it = this->xmlportParamContainers_.find(paramname);
375        if (it != this->xmlportParamContainers_.end())
376            return it->second;
377        else
378            return 0;
379    }
380
381    /**
382        @brief Adds a new XMLPortParamContainer that loads a parameter of this class.
383        @param paramname The name of the parameter
384        @param container The container
385    */
386    void Identifier::addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container)
387    {
388        std::map<std::string, XMLPortParamContainer*>::const_iterator it = this->xmlportParamContainers_.find(paramname);
389        if (it != this->xmlportParamContainers_.end())
390        {
391            orxout(internal_warning) << "Overwriting XMLPortParamContainer in class " << this->getName() << '.' << endl;
392            delete (it->second);
393        }
394
395        this->xmlportParamContainers_[paramname] = container;
396    }
397
398    /**
399        @brief Returns a XMLPortObjectContainer that attaches an object to this class.
400        @param sectionname The name of the section that contains the attachable objects
401        @return The container
402    */
403    XMLPortObjectContainer* Identifier::getXMLPortObjectContainer(const std::string& sectionname)
404    {
405        std::map<std::string, XMLPortObjectContainer*>::const_iterator it = this->xmlportObjectContainers_.find(sectionname);
406        if (it != this->xmlportObjectContainers_.end())
407            return it->second;
408        else
409            return 0;
410    }
411
412    /**
413        @brief Adds a new XMLPortObjectContainer that attaches an object to this class.
414        @param sectionname The name of the section that contains the attachable objects
415        @param container The container
416    */
417    void Identifier::addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container)
418    {
419        std::map<std::string, XMLPortObjectContainer*>::const_iterator it = this->xmlportObjectContainers_.find(sectionname);
420        if (it != this->xmlportObjectContainers_.end())
421        {
422            orxout(internal_warning) << "Overwriting XMLPortObjectContainer in class " << this->getName() << '.' << endl;
423            delete (it->second);
424        }
425
426        this->xmlportObjectContainers_[sectionname] = container;
427    }
428
429    /**
430        @brief Lists the names of all Identifiers in a std::set<const Identifier*>.
431        @param out The outstream
432        @param list The list (or set) of Identifiers
433        @return The outstream
434    */
435    std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list)
436    {
437        for (std::set<const Identifier*>::const_iterator it = list.begin(); it != list.end(); ++it)
438        {
439            if (it != list.begin())
440                out << ' ';
441            out << (*it)->getName();
442        }
443
444        return out;
445    }
446}
Note: See TracBrowser for help on using the repository browser.