Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gcc43/src/core/Identifier.h @ 1623

Last change on this file since 1623 was 1581, checked in by nicolasc, 17 years ago

well, it compiles..
there are only about 1000 warinig about a deprecated header usage in ogre, and some other uglinesses, but apart from that it builds… and still seg faults…

  • Property svn:eol-style set to native
File size: 33.1 KB
RevLine 
[790]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[790]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
[871]29/**
[790]30    @file Identifier.h
31    @brief Definition of the Identifier, ClassIdentifier and SubclassIdentifier classes, implementation of the ClassIdentifier and SubclassIdentifier classes.
32
33    The Identifier contains all needed informations about the class it belongs to:
34     - the name
35     - a list with all objects
[1024]36     - parents and children
[790]37     - the factory (if available)
38     - the networkID that can be synchronised with the server
39     - all configurable variables (if available)
40
41    Every object has a pointer to the Identifier of its class. This allows the use isA(...),
[871]42    isExactlyA(...), isChildOf(...) and isParentOf(...).
[790]43
44    To create the class-hierarchy, the Identifier has some intern functions and variables.
45
46    Every Identifier is in fact a ClassIdentifier, but they are derived from Identifier.
47
48    SubclassIdentifier is a separated class, acting like an Identifier, but has a given class.
49    You can only assign Identifiers of exactly the given class or of a derivative to a SubclassIdentifier.
50*/
51
52#ifndef _Identifier_H__
53#define _Identifier_H__
[1052]54
[1062]55#include "CorePrereqs.h"
56
[1052]57#include <set>
[790]58#include <map>
59#include <string>
60#include <utility>
[1581]61#include <typeinfo>
62#include <stdlib.h>
[790]63
64#include "ObjectList.h"
65#include "Debug.h"
[1052]66#include "Iterator.h"
[1505]67#include "MetaObjectList.h"
68#include "util/String.h"
[790]69
70namespace orxonox
71{
72    // ###############################
73    // ###       Identifier        ###
74    // ###############################
75    //! The Identifier is used to identify the class of an object and to store informations about the class.
76    /**
77        The Identifier contains all needed informations about the class it belongs to:
78         - the name
79         - a list with all objects
80         - parents and childs
81         - the factory (if available)
82         - the networkID that can be synchronised with the server
83         - all configurable variables (if available)
84
85        Every object has a pointer to the Identifier of its class. This allows the use isA(...),
[871]86        isExactlyA(...), isChildOf(...) and isParentOf(...).
[790]87
88        You can't directly create an Identifier, it's just the base-class for ClassIdentifier.
89    */
90    class _CoreExport Identifier
91    {
92        template <class T>
[871]93        friend class ClassIdentifier;
[790]94
95        template <class T>
[871]96        friend class SubclassIdentifier;
[790]97
[1052]98        friend class Factory;
[790]99
100        public:
101            /** @brief Sets the Factory. @param factory The factory to assign */
102            inline void addFactory(BaseFactory* factory) { this->factory_ = factory; }
103
104            BaseObject* fabricate();
105            bool isA(const Identifier* identifier) const;
[871]106            bool isExactlyA(const Identifier* identifier) const;
[1052]107            bool isChildOf(const Identifier* identifier) const;
[871]108            bool isDirectChildOf(const Identifier* identifier) const;
[1052]109            bool isParentOf(const Identifier* identifier) const;
[871]110            bool isDirectParentOf(const Identifier* identifier) const;
[790]111
[1052]112            virtual const ObjectList<BaseObject>* getObjectList() const = 0;
[790]113
[1052]114            virtual void updateConfigValues() const = 0;
115
[871]116            /** @brief Returns the name of the class the Identifier belongs to. @return The name */
[790]117            inline const std::string& getName() const { return this->name_; }
118
[1052]119
120            /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */
121            inline const std::set<const Identifier*>& getParents() const { return this->parents_; }
122            /** @brief Returns the begin-iterator of the parents-list. @return The begin-iterator */
123            inline std::set<const Identifier*>::const_iterator getParentsBegin() const { return this->parents_.begin(); }
124            /** @brief Returns the end-iterator of the parents-list. @return The end-iterator */
125            inline std::set<const Identifier*>::const_iterator getParentsEnd() const { return this->parents_.end(); }
126
127            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
128            inline const std::set<const Identifier*>& getChildren() const { return (*this->children_); }
129            /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */
130            inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_->begin(); }
131            /** @brief Returns the end-iterator of the children-list. @return The end-iterator */
132            inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_->end(); }
133
134            /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */
135            inline const std::set<const Identifier*>& getDirectParents() const { return this->directParents_; }
136            /** @brief Returns the begin-iterator of the direct-parents-list. @return The begin-iterator */
137            inline std::set<const Identifier*>::const_iterator getDirectParentsBegin() const { return this->directParents_.begin(); }
138            /** @brief Returns the end-iterator of the direct-parents-list. @return The end-iterator */
139            inline std::set<const Identifier*>::const_iterator getDirectParentsEnd() const { return this->directParents_.end(); }
140
141            /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */
142            inline const std::set<const Identifier*>& getDirectChildren() const { return (*this->directChildren_); }
143            /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */
144            inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_->begin(); }
145            /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */
146            inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_->end(); }
147
148
149            /** @brief Returns the map that stores all Identifiers. @return The map */
150            static inline const std::map<std::string, Identifier*>& getIdentifierMap() { return Identifier::getIdentifierMapIntern(); }
151            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers. @return The const_iterator */
152            static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapBegin() { return Identifier::getIdentifierMap().begin(); }
153            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers. @return The const_iterator */
154            static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapEnd() { return Identifier::getIdentifierMap().end(); }
155
156            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
157            static inline const std::map<std::string, Identifier*>& getLowercaseIdentifierMap() { return Identifier::getLowercaseIdentifierMapIntern(); }
158            /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
159            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapBegin() { return Identifier::getLowercaseIdentifierMap().begin(); }
160            /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */
161            static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapEnd() { return Identifier::getLowercaseIdentifierMap().end(); }
162
163
164            /** @brief Returns the map that stores all config values. @return The const_iterator */
165            inline const std::map<std::string, ConfigValueContainer*>& getConfigValueMap() const { return this->configValues_; }
166            /** @brief Returns a const_iterator to the beginning of the map that stores all config values. @return The const_iterator */
167            inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapBegin() const { return this->configValues_.begin(); }
168            /** @brief Returns a const_iterator to the end of the map that stores all config values. @return The const_iterator */
169            inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapEnd() const { return this->configValues_.end(); }
170
171            /** @brief Returns the map that stores all config values with their names in lowercase. @return The const_iterator */
172            inline const std::map<std::string, ConfigValueContainer*>& getLowercaseConfigValueMap() const { return this->configValues_LC_; }
173            /** @brief Returns a const_iterator to the beginning of the map that stores all config values with their names in lowercase. @return The const_iterator */
174            inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapBegin() const { return this->configValues_LC_.begin(); }
175            /** @brief Returns a const_iterator to the end of the map that stores all config values with their names in lowercase. @return The const_iterator */
176            inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapEnd() const { return this->configValues_LC_.end(); }
177
178
179            /** @brief Returns the map that stores all console commands. @return The const_iterator */
[1502]180            inline const std::map<std::string, ConsoleCommand*>& getConsoleCommandMap() const { return this->consoleCommands_; }
[1052]181            /** @brief Returns a const_iterator to the beginning of the map that stores all console commands. @return The const_iterator */
[1502]182            inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapBegin() const { return this->consoleCommands_.begin(); }
[1052]183            /** @brief Returns a const_iterator to the end of the map that stores all console commands. @return The const_iterator */
[1502]184            inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapEnd() const { return this->consoleCommands_.end(); }
[1052]185
186            /** @brief Returns the map that stores all console commands with their names in lowercase. @return The const_iterator */
[1502]187            inline const std::map<std::string, ConsoleCommand*>& getLowercaseConsoleCommandMap() const { return this->consoleCommands_LC_; }
[1052]188            /** @brief Returns a const_iterator to the beginning of the map that stores all console commands with their names in lowercase. @return The const_iterator */
[1502]189            inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapBegin() const { return this->consoleCommands_LC_.begin(); }
[1052]190            /** @brief Returns a const_iterator to the end of the map that stores all console commands with their names in lowercase. @return The const_iterator */
[1502]191            inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapEnd() const { return this->consoleCommands_LC_.end(); }
[1052]192
193
194            /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */
195            inline bool hasConfigValues() const { return this->bHasConfigValues_; }
196            /** @brief Returns true if this class has at least one console command. @return True if this class has at least one console command */
197            inline bool hasConsoleCommands() const { return this->bHasConsoleCommands_; }
198
[871]199            /** @brief Returns true, if a branch of the class-hierarchy is being created, causing all new objects to store their parents. @return The status of the class-hierarchy creation */
[790]200            inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); }
201
[871]202            /** @brief Returns the network ID to identify a class through the network. @return the network ID */
[790]203            inline const unsigned int getNetworkID() const { return this->classID_; }
204
205            /** @brief Sets the network ID to a new value. @param id The new value */
206            void setNetworkID(unsigned int id);
207
[1052]208            void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container);
[871]209            ConfigValueContainer* getConfigValueContainer(const std::string& varname);
[1052]210            ConfigValueContainer* getLowercaseConfigValueContainer(const std::string& varname);
211
212            virtual void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container) = 0;
213            virtual XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname) = 0;
214
215            virtual void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container) = 0;
216            virtual XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname) = 0;
217
[1502]218            ConsoleCommand& addConsoleCommand(ConsoleCommand* command, bool bCreateShortcut);
219            ConsoleCommand* getConsoleCommand(const std::string& name) const;
220            ConsoleCommand* getLowercaseConsoleCommand(const std::string& name) const;
[1052]221
222        protected:
223            /** @brief Returns the map that stores all Identifiers. @return The map */
224            static std::map<std::string, Identifier*>& getIdentifierMapIntern();
225            /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */
226            static std::map<std::string, Identifier*>& getLowercaseIdentifierMapIntern();
227
[790]228        private:
229            Identifier();
[1064]230            Identifier(const Identifier& identifier); // don't copy
[790]231            virtual ~Identifier();
[1052]232            void initialize(std::set<const Identifier*>* parents);
[790]233
[1052]234            /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */
235            inline std::set<const Identifier*>& getChildrenIntern() const { return (*this->children_); }
236            /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */
237            inline std::set<const Identifier*>& getDirectChildrenIntern() const { return (*this->directChildren_); }
238
[790]239            /**
240                @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents.
241            */
242            inline static void startCreatingHierarchy()
243            {
244                hierarchyCreatingCounter_s++;
[871]245                COUT(4) << "*** Identifier: Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
[790]246            }
247
248            /**
249                @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents.
250            */
251            inline static void stopCreatingHierarchy()
252            {
253                hierarchyCreatingCounter_s--;
[871]254                COUT(4) << "*** Identifier: Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
[1052]255            }
[790]256
[1543]257            static Identifier* getIdentifier(std::string &name, Identifier *proposal);
258
[1052]259            std::set<const Identifier*> parents_;                          //!< The parents of the class the Identifier belongs to
260            std::set<const Identifier*>* children_;                        //!< The children of the class the Identifier belongs to
[790]261
[1052]262            std::set<const Identifier*> directParents_;                    //!< The direct parents of the class the Identifier belongs to
263            std::set<const Identifier*>* directChildren_;                  //!< The direct children of the class the Identifier belongs to
264
265            std::string name_;                                             //!< The name of the class the Identifier belongs to
266
267            BaseFactory* factory_;                                         //!< The Factory, able to create new objects of the given class (if available)
268            bool bCreatedOneObject_;                                       //!< True if at least one object of the given type was created (used to determine the need of storing the parents)
269            static int hierarchyCreatingCounter_s;                         //!< Bigger than zero if at least one Identifier stores its parents (its an int instead of a bool to avoid conflicts with multithreading)
270            unsigned int classID_;                                         //!< The network ID to identify a class through the network
271
272            bool bHasConfigValues_;                                        //!< True if this class has at least one assigned config value
273            std::map<std::string, ConfigValueContainer*> configValues_;    //!< A map to link the string of configurable variables with their ConfigValueContainer
274            std::map<std::string, ConfigValueContainer*> configValues_LC_; //!< A map to link the string of configurable variables with their ConfigValueContainer
275
276            bool bHasConsoleCommands_;                                     //!< True if this class has at least one assigned console command
[1502]277            std::map<std::string, ConsoleCommand*> consoleCommands_;       //!< All console commands of this class
278            std::map<std::string, ConsoleCommand*> consoleCommands_LC_;    //!< All console commands of this class with their names in lowercase
[790]279    };
280
[1052]281    _CoreExport std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list);
[790]282
[1052]283
[790]284    // ###############################
285    // ###     ClassIdentifier     ###
286    // ###############################
287    //! The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have.
288    /**
289        ClassIdentifier is a Singleton, which means that only one object of a given type T exists.
290        This makes it possible to store informations about a class, sharing them with all
[1052]291        objects of that class without defining static variables in every class.
292
293        To be really sure that not more than exactly one object exists (even with libraries),
[1543]294        ClassIdentifiers are stored in the Identifier Singleton.
[790]295    */
296    template <class T>
297    class ClassIdentifier : public Identifier
[1052]298    {
[790]299        public:
[1052]300            ClassIdentifier<T>* registerClass(std::set<const Identifier*>* parents, const std::string& name, bool bRootClass);
[871]301            void addObject(T* object);
[1052]302            void setName(const std::string& name);
303            /** @brief Returns the list of all existing objects of this class. @return The list */
[1063]304            inline ObjectList<T>* getObjects() const { return this->objects_; }
[1052]305            /** @brief Returns a list of all existing objects of this class. @return The list */
[1063]306            inline ObjectList<BaseObject>* getObjectList() const { return (ObjectList<BaseObject>*)this->objects_; }
[1052]307
308            void updateConfigValues() const;
309
310            XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
311            void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
312
313            XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
314            void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
315
[1543]316            static ClassIdentifier<T> *getIdentifier();
317
[790]318        private:
319            ClassIdentifier();
320            ClassIdentifier(const ClassIdentifier<T>& identifier) {}    // don't copy
321            ~ClassIdentifier() {}                                       // don't delete
322
[1052]323            ObjectList<T>* objects_;                                                                    //!< The ObjectList, containing all objects of type T
324            bool bSetName_;                                                                             //!< True if the name is set
325            std::map<std::string, XMLPortClassParamContainer<T>*> xmlportParamContainers_;              //!< All loadable parameters
326            std::map<std::string, XMLPortClassObjectContainer<T, class O>*> xmlportObjectContainers_;   //!< All attachable objects
[1543]327
328            static ClassIdentifier<T> *classIdentifier_s;
[790]329    };
330
[1543]331    template <class T>
332    ClassIdentifier<T> *ClassIdentifier<T>::classIdentifier_s = 0;
333
[790]334    /**
335        @brief Constructor: Creates the ObjectList.
336    */
337    template <class T>
338    ClassIdentifier<T>::ClassIdentifier()
339    {
[1052]340//        this->objects_ = ObjectList<T>::getList();
[871]341        this->objects_ = new ObjectList<T>();
[790]342        this->bSetName_ = false;
343    }
344
345    /**
346        @brief Registers a class, which means that the name and the parents get stored.
[871]347        @param parents A list, containing the Identifiers of all parents of the class
[790]348        @param name A string, containing exactly the name of the class
349        @param bRootClass True if the class is either an Interface or the BaseObject itself
350        @return The ClassIdentifier itself
351    */
352    template <class T>
[1052]353    ClassIdentifier<T>* ClassIdentifier<T>::registerClass(std::set<const Identifier*>* parents, const std::string& name, bool bRootClass)
[790]354    {
[1052]355        this->setName(name);
[790]356
357        // Check if at least one object of the given type was created
[1052]358        if (!this->bCreatedOneObject_ && Identifier::isCreatingHierarchy())
[790]359        {
360            // If no: We have to store the informations and initialize the Identifier
[871]361            COUT(4) << "*** ClassIdentifier: Register Class in " << name << "-Singleton -> Initialize Singleton." << std::endl;
[790]362            if (bRootClass)
[871]363                this->initialize(NULL); // If a class is derived from two interfaces, the second interface might think it's derived from the first because of the order of constructor-calls. Thats why we set parents to zero in that case.
[790]364            else
[871]365                this->initialize(parents);
[790]366        }
367
[871]368        return this;
[790]369    }
370
371    /**
[1543]372        @brief Creates the only instance of this class for the template class T and retrieves a unique Identifier for the given name.
373        @return The unique Identifier
374    */
375    template <class T>
376    ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier()
377    {
378        // check if the static field has already been filled
379        if (ClassIdentifier<T>::classIdentifier_s == 0)
380        {
381            // Get the name of the class
382            std::string name = typeid(T).name();
383
384            // create a new identifier anyway. Will be deleted in Identifier::getIdentifier if not used.
385            ClassIdentifier<T> *proposal = new ClassIdentifier<T>();
386
387            // Get the entry from the map
388            ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)Identifier::getIdentifier(name, proposal);
389        }
390
391        // Finally return the unique ClassIdentifier
392        return ClassIdentifier<T>::classIdentifier_s;
393    }
394
395    /**
[790]396        @brief Sets the name of the class.
397        @param name The name
398    */
399    template <class T>
400    void ClassIdentifier<T>::setName(const std::string& name)
401    {
402        if (!this->bSetName_)
403        {
404            this->name_ = name;
[1052]405            this->bSetName_ = true;
406            Identifier::getIdentifierMapIntern()[name] = this;
407            Identifier::getLowercaseIdentifierMapIntern()[getLowercase(name)] = this;
[790]408        }
409    }
410
411    /**
412        @brief Adds an object of the given type to the ObjectList.
413        @param object The object to add
414    */
415    template <class T>
416    void ClassIdentifier<T>::addObject(T* object)
417    {
[871]418        COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl;
419        object->getMetaList().add(this->objects_, this->objects_->add(object));
[790]420    }
421
422    /**
[1052]423        @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function.
[790]424    */
425    template <class T>
[1052]426    void ClassIdentifier<T>::updateConfigValues() const
[790]427    {
[1052]428        for (Iterator<T> it = this->objects_->start(); it; ++it)
429            ((T*)*it)->setConfigValues();
[790]430    }
431
[1052]432    /**
433        @brief Returns a XMLPortParamContainer that loads a parameter of this class.
434        @param paramname The name of the parameter
435        @return The container
436    */
437    template <class T>
438    XMLPortParamContainer* ClassIdentifier<T>::getXMLPortParamContainer(const std::string& paramname)
439    {
440        typename std::map<std::string, XMLPortClassParamContainer<T>*>::const_iterator it = xmlportParamContainers_.find(paramname);
441        if (it != xmlportParamContainers_.end())
442            return (XMLPortParamContainer*)((*it).second);
443        else
444            return 0;
445    }
446
447    /**
448        @brief Adds a new XMLPortParamContainer that loads a parameter of this class.
449        @param paramname The name of the parameter
450        @param container The container
451    */
452    template <class T>
453    void ClassIdentifier<T>::addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container)
454    {
455        this->xmlportParamContainers_[paramname] = (XMLPortClassParamContainer<T>*)container;
456    }
457
458    /**
459        @brief Returns a XMLPortObjectContainer that attaches an object to this class.
460        @param sectionname The name of the section that contains the attachable objects
461        @return The container
462    */
463    template <class T>
464    XMLPortObjectContainer* ClassIdentifier<T>::getXMLPortObjectContainer(const std::string& sectionname)
465    {
466        typename std::map<std::string, XMLPortClassObjectContainer<T, class O>*>::const_iterator it = xmlportObjectContainers_.find(sectionname);
467        if (it != xmlportObjectContainers_.end())
468            return (XMLPortObjectContainer*)((*it).second);
469        else
470            return 0;
471    }
472
473    /**
474        @brief Adds a new XMLPortObjectContainer that attaches an object to this class.
475        @param sectionname The name of the section that contains the attachable objects
476        @param container The container
477    */
478    template <class T>
479    void ClassIdentifier<T>::addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container)
480    {
481        this->xmlportObjectContainers_[sectionname] = (XMLPortClassObjectContainer<T, class O>*)container;
482    }
483
484
[790]485    // ###############################
486    // ###   SubclassIdentifier    ###
487    // ###############################
488    //! The SubclassIdentifier acts almost like an Identifier, but has some prerequisites.
489    /**
490        You can only assign an Identifier that belongs to a class T (or derived) to a SubclassIdentifier<T>.
491        If you assign something else, the program aborts.
492        Because we know the minimal type, a dynamic_cast is done, which makes it easier to create a new object.
493    */
494    template <class T>
495    class SubclassIdentifier
496    {
497        public:
498            /**
499                @brief Constructor: Automaticaly assigns the Identifier of the given class.
[1052]500            */
[790]501            SubclassIdentifier()
[1052]502            {
[1543]503                this->identifier_ = ClassIdentifier<T>::getIdentifier();
[790]504            }
505
506            /**
[1052]507                @brief Copyconstructor: Assigns the given Identifier.
508                @param identifier The Identifier
509            */
510            SubclassIdentifier(Identifier* identifier)
511            {
512                this->identifier_ = identifier;
513            }
514
515            /**
[790]516                @brief Overloading of the = operator: assigns the identifier and checks its type.
517                @param identifier The Identifier to assign
518                @return The SubclassIdentifier itself
519            */
520            SubclassIdentifier<T>& operator=(Identifier* identifier)
521            {
[1543]522                if (!identifier->isA(ClassIdentifier<T>::getIdentifier()))
[1052]523                {
524                    COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
[1543]525                    COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
526                    COUT(1) << "Error: SubclassIdentifier<" << ClassIdentifier<T>::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden." << std::endl;
[790]527                    COUT(1) << "Aborting..." << std::endl;
528                    abort();
529                }
530                this->identifier_ = identifier;
531                return *this;
532            }
533
534            /**
535                @brief Overloading of the * operator: returns the assigned identifier.
536                @return The assigned identifier
537            */
538            Identifier* operator*()
539            {
540                return this->identifier_;
541            }
542
543            /**
544                @brief Overloading of the -> operator: returns the assigned identifier.
545                @return The assigned identifier
546            */
547            Identifier* operator->() const
548            {
549                return this->identifier_;
550            }
551
552            /**
553                @brief Creates a new object of the type of the assigned Identifier and dynamic_casts it to the minimal type given by T.
554                @return The new object
555            */
556            T* fabricate()
557            {
558                BaseObject* newObject = this->identifier_->fabricate();
559
560                // Check if the creation was successful
561                if (newObject)
562                {
563                    // Do a dynamic_cast, because an object of type T is much better than of type BaseObject
564                    return (T*)(newObject);
565                }
566                else
567                {
568                    // Something went terribly wrong
569                    if (this->identifier_)
570                    {
[1052]571                        COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
[1543]572                        COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
[790]573                        COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl;
574                        COUT(1) << "Aborting..." << std::endl;
575                    }
576                    else
577                    {
[1052]578                        COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl;
[790]579                        COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl;
580                        COUT(1) << "Aborting..." << std::endl;
581                    }
582
583                    abort();
584                }
585            }
586
[871]587            /** @brief Returns the assigned identifier. @return The identifier */
[790]588            inline const Identifier* getIdentifier() const
589                { return this->identifier_; }
590
[871]591            /** @brief Returns true, if the assigned identifier is at least of the given type. @param identifier The identifier to compare with */
[790]592            inline bool isA(const Identifier* identifier) const
593                { return this->identifier_->isA(identifier); }
594
[871]595            /** @brief Returns true, if the assigned identifier is exactly of the given type. @param identifier The identifier to compare with */
596            inline bool isExactlyA(const Identifier* identifier) const
597                { return this->identifier_->isExactlyA(identifier); }
[790]598
[871]599            /** @brief Returns true, if the assigned identifier is a child of the given identifier. @param identifier The identifier to compare with */
[790]600            inline bool isChildOf(const Identifier* identifier) const
[1052]601                { return this->identifier_->isChildOf(identifier); }
[790]602
[1052]603            /** @brief Returns true, if the assigned identifier is a direct child of the given identifier. @param identifier The identifier to compare with */
604            inline bool isDirectChildOf(const Identifier* identifier) const
605                { return this->identifier_->isDirectChildOf(identifier); }
606
[871]607            /** @brief Returns true, if the assigned identifier is a parent of the given identifier. @param identifier The identifier to compare with */
[790]608            inline bool isParentOf(const Identifier* identifier) const
609                { return this->identifier_->isParentOf(identifier); }
610
[1052]611            /** @brief Returns true, if the assigned identifier is a direct parent of the given identifier. @param identifier The identifier to compare with */
612            inline bool isDirectParentOf(const Identifier* identifier) const
613                { return this->identifier_->isDirectParentOf(identifier); }
614
[790]615        private:
[1052]616            Identifier* identifier_;            //!< The assigned identifier
[790]617    };
618}
619
620#endif /* _Identifier_H__ */
Note: See TracBrowser for help on using the repository browser.