Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added flag to define if a class should be used as a virtual parent (i.e. inherit with 'virtual public <classname>')

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