Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/class/Identifier.h @ 11071

Last change on this file since 11071 was 11071, checked in by landauf, 8 years ago

merged branch cpp11_v3 back to trunk

  • Property svn:eol-style set to native
File size: 20.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/**
[7401]30    @defgroup Identifier Identifier
31    @ingroup Class
32*/
33
34/**
[2171]35    @file
[7401]36    @ingroup Class Identifier
37    @brief Declaration of Identifier, definition of ClassIdentifier<T>; used to identify the class of an object.
[790]38
[7401]39    @anchor IdentifierExample
[790]40
[7401]41    An Identifier "identifies" the class of an object. It contains different information about
42    the class: Its name and ID, a list of all instances of this class, a factory to create new
43    instances of this class, and more.
[790]44
[7401]45    It also contains information about the inheritance of this class: It stores a list of the
46    Identifiers of all parent-classes as well as a list of all child-classes. These relationships
47    can be tested using functions like @c isA(), @c isChildOf(), @c isParentOf(), and more.
[790]48
[7401]49    Every Identifier is in fact a ClassIdentifier<T> (where T is the class that is identified
50    by the Identifier), Identifier is just the common base-class.
51
52    Example:
53    @code
54    MyClass* object = new MyClass();                                            // create an instance of MyClass
55
56    object->getIdentifier()->getName();                                         // returns "MyClass"
57
[11071]58    Identifiable* other = object->getIdentifier()->fabricate(nullptr);                // fabricates a new instance of MyClass
[7401]59
60
61    // test the class hierarchy
62    object->getIdentifier()->isA(Class(MyClass));                               // returns true
63    object->isA(Class(MyClass));                                                // returns true (short version)
64
65    object->isA(Class(BaseClass));                                              // returns true if MyClass is a child of BaseClass
66
67    Class(ChildClass)->isChildOf(object->getIdentifier());                      // returns true if ChildClass is a child of MyClass
68    @endcode
[790]69*/
70
71#ifndef _Identifier_H__
72#define _Identifier_H__
[1052]73
[9563]74#include "core/CorePrereqs.h"
[1062]75
[3196]76#include <cassert>
77#include <map>
[1052]78#include <set>
[790]79#include <string>
[1639]80#include <typeinfo>
[7266]81#include <loki/TypeTraits.h>
[790]82
[8858]83#include "util/Output.h"
[10624]84#include "util/OrxAssert.h"
[9563]85#include "core/object/ObjectList.h"
[9667]86#include "core/object/Listable.h"
87#include "core/object/Context.h"
88#include "core/object/Destroyable.h"
89#include "core/object/WeakPtr.h"
[9564]90#include "IdentifierManager.h"
[5781]91#include "Super.h"
[790]92
93namespace orxonox
94{
95    // ###############################
96    // ###       Identifier        ###
97    // ###############################
98    /**
[7401]99        @brief The Identifier is used to identify the class of an object and to store information about the class.
[790]100
[7401]101        Each Identifier stores information about one class. The Identifier can then be used to identify
102        this class. On the other hand it's also possible to get the corresponding Identifier of a class,
103        for example by using the macro Class().
[790]104
[7401]105        @see See @ref IdentifierExample "Identifier.h" for more information and some examples.
106
107        @note You can't directly create an Identifier, it's just the base-class of ClassIdentifier<T>.
[790]108    */
[9667]109    class _CoreExport Identifier : public Destroyable
[790]110    {
[9667]111        public:
[10624]112            struct InheritsFrom //! helper class to manually define inheritance
113            {
114                virtual ~InheritsFrom() {}
115                virtual Identifier* getParent() const = 0;
116            };
117
118        public:
119            Identifier(const std::string& name, Factory* factory, bool bLoadable);
[9667]120            virtual ~Identifier();
[9564]121
[11071]122            // non-copyable:
123            Identifier(const Identifier&) = delete;
124            Identifier& operator=(const Identifier&) = delete;
125
[7401]126            /// Returns the name of the class the Identifier belongs to.
[5929]127            inline const std::string& getName() const { return this->name_; }
[790]128
[10624]129            /// Returns the type_info of the class as it is returned by typeid(T)
130            virtual const std::type_info& getTypeInfo() = 0;
[9667]131
[7401]132            /// Returns the network ID to identify a class through the network.
[8706]133            inline uint32_t getNetworkID() const { return this->networkID_; }
[5929]134            void setNetworkID(uint32_t id);
[790]135
[7401]136            /// Returns the unique ID of the class.
[8351]137            ORX_FORCEINLINE unsigned int getClassID() const { return this->classID_; }
[5929]138
[7401]139            /// Returns true if the Identifier has a Factory.
[11071]140            inline bool hasFactory() const { return (this->factory_ != nullptr); }
[790]141
[9667]142            Identifiable* fabricate(Context* context);
[5929]143
[7401]144            /// Returns true if the class can be loaded through XML.
[5929]145            inline bool isLoadable() const { return this->bLoadable_; }
146
[10624]147            /// Returns true if child classes should inherit virtually from this class.
148            inline bool isVirtualBase() const { return this->bIsVirtualBase_; }
149            /// Defines if child classes should inherit virtually from this class.
150            inline void setVirtualBase(bool bIsVirtualBase) { this->bIsVirtualBase_ = bIsVirtualBase; }
151
[9667]152            /// Returns true if the Identifier was completely initialized.
153            inline bool isInitialized() const { return this->bInitialized_; }
154
[10624]155            virtual void destroyObjects() = 0;
[9667]156
[10624]157            virtual bool canDynamicCastObjectToIdentifierClass(Identifiable* object) const = 0;
158
159            static bool initConfigValues_s; // TODO: this is a hack - remove it as soon as possible
160
161
[9667]162            /////////////////////////////
163            ////// Class Hierarchy //////
164            /////////////////////////////
[10624]165            Identifier& inheritsFrom(InheritsFrom* directParent);
[9667]166
[10624]167            void initializeParents(const std::list<const Identifier*>& initializationTrace);
[9667]168            void finishInitialization();
[10624]169            void reset();
[9667]170
[790]171            bool isA(const Identifier* identifier) const;
[871]172            bool isExactlyA(const Identifier* identifier) const;
[1052]173            bool isChildOf(const Identifier* identifier) const;
[871]174            bool isDirectChildOf(const Identifier* identifier) const;
[1052]175            bool isParentOf(const Identifier* identifier) const;
[871]176            bool isDirectParentOf(const Identifier* identifier) const;
[790]177
[10624]178            /// Returns the direct parents of the class the Identifier belongs to.
179            inline const std::list<const Identifier*>& getDirectParents() const { return this->directParents_; }
[7401]180            /// Returns the parents of the class the Identifier belongs to.
[10624]181            inline const std::list<const Identifier*>& getParents() const { return this->parents_; }
[1052]182
[10624]183            /// Returns the direct children the class the Identifier belongs to.
184            inline const std::set<const Identifier*>& getDirectChildren() const { return this->directChildren_; }
[7401]185            /// Returns the children of the class the Identifier belongs to.
[5929]186            inline const std::set<const Identifier*>& getChildren() const { return this->children_; }
[1052]187
188
[5929]189            /////////////////////////
190            ///// Config Values /////
191            /////////////////////////
192            virtual void updateConfigValues(bool updateChildren = true) const = 0;
193
[7401]194            /// Returns true if this class has at least one config value.
[5929]195            inline bool hasConfigValues() const { return this->bHasConfigValues_; }
196
197            void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container);
198            ConfigValueContainer* getConfigValueContainer(const std::string& varname);
[1052]199
[5929]200
201            ///////////////////
202            ///// XMLPort /////
203            ///////////////////
[7401]204            /// Returns the map that stores all XMLPort params.
[5781]205            inline const std::map<std::string, XMLPortParamContainer*>& getXMLPortParamMap() const { return this->xmlportParamContainers_; }
206
[7401]207            /// Returns the map that stores all XMLPort objects.
[5781]208            inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortObjectMap() const { return this->xmlportObjectContainers_; }
209
210            void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
211            XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname);
212
213            void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container);
214            XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname);
215
[1052]216        protected:
[5781]217            virtual void createSuperFunctionCaller() const = 0;
[1747]218
219        private:
[10624]220            void verifyIdentifierTrace() const;
221            void addIfNotExists(std::list<const Identifier*>& list, const Identifier* identifierToAdd) const;
[790]222
[10624]223            std::list<const InheritsFrom*> manualDirectParents_;            //!< Manually defined direct parents
224            std::list<const Identifier*> directParents_;                    //!< The direct parents of the class the Identifier belongs to (sorted by their order of initialization)
225            std::list<const Identifier*> parents_;                          //!< The parents of the class the Identifier belongs to (sorted by their order of initialization)
226
[9667]227            std::set<const Identifier*> directChildren_;                   //!< The direct children of the class the Identifier belongs to
[10624]228            std::set<const Identifier*> children_;                         //!< The children of the class the Identifier belongs to
[1052]229
[9667]230            bool bInitialized_;                                            //!< Is true if the Identifier was completely initialized
[5781]231            bool bLoadable_;                                               //!< False = it's not permitted to load the object through XML
[10624]232            bool bIsVirtualBase_;                                          //!< If true, it is recommended to inherit virtually from this class. This changes the order of initialization of child classes, thus this information is necessary to check the class hierarchy.
[1052]233            std::string name_;                                             //!< The name of the class the Identifier belongs to
[5929]234            Factory* factory_;                                             //!< The Factory, able to create new objects of the given class (if available)
[5781]235            uint32_t networkID_;                                           //!< The network ID to identify a class through the network
[10624]236            unsigned int classID_;                                         //!< Uniquely identifies a class (might not be the same as the networkID_)
[1052]237
238            bool bHasConfigValues_;                                        //!< True if this class has at least one assigned config value
239            std::map<std::string, ConfigValueContainer*> configValues_;    //!< A map to link the string of configurable variables with their ConfigValueContainer
[5781]240
241            std::map<std::string, XMLPortParamContainer*> xmlportParamContainers_;     //!< All loadable parameters
242            std::map<std::string, XMLPortObjectContainer*> xmlportObjectContainers_;   //!< All attachable objects
[790]243    };
244
[1052]245    _CoreExport std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list);
[790]246
[1052]247
[790]248    // ###############################
249    // ###     ClassIdentifier     ###
250    // ###############################
251    /**
[7401]252        @brief The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have.
253
254        ClassIdentifier is a Singleton, which means that only one ClassIdentifier for a given type T exists.
[5695]255        This makes it possible to store information about a class, sharing them with all
[1052]256        objects of that class without defining static variables in every class.
257
258        To be really sure that not more than exactly one object exists (even with libraries),
[7401]259        ClassIdentifiers are stored in a static map in Identifier.
[790]260    */
261    template <class T>
262    class ClassIdentifier : public Identifier
[1052]263    {
[11071]264        static_assert(std::is_base_of<Identifiable, T>::value, "ClassIdentifier can only be used with Identifiables");
[10624]265
[7401]266        #ifndef DOXYGEN_SHOULD_SKIP_THIS
267          #define SUPER_INTRUSIVE_DECLARATION_INCLUDE
268          #include "Super.h"
269        #endif
[5781]270
[790]271        public:
[10624]272            ClassIdentifier(const std::string& name, Factory* factory, bool bLoadable) : Identifier(name, factory, bLoadable)
273            {
[11071]274                OrxVerify(ClassIdentifier<T>::classIdentifier_s == nullptr, "Assertion failed in ClassIdentifier of type " << typeid(T).name());
[10624]275                ClassIdentifier<T>::classIdentifier_s = this;
[1052]276
[10624]277                SuperFunctionInitialization<0, T>::initialize(this);
278            }
279            ~ClassIdentifier()
280            {
281                SuperFunctionDestruction<0, T>::destroy(this);
282            }
283
[9667]284            bool initializeObject(T* object);
[3325]285
[11071]286            virtual void updateConfigValues(bool updateChildren = true) const override;
[10624]287
[11071]288            virtual const std::type_info& getTypeInfo() override
[10624]289                { return typeid(T); }
290
[11071]291            virtual bool canDynamicCastObjectToIdentifierClass(Identifiable* object) const override
292                { return dynamic_cast<T*>(object) != nullptr; }
[10624]293
[11071]294            virtual void destroyObjects() override;
[10624]295
296            static ClassIdentifier<T>* getIdentifier();
297
298        private:
[11071]299            // non-copyable:
300            ClassIdentifier(const ClassIdentifier<T>&) = delete;
301            ClassIdentifier& operator=(const ClassIdentifier<T>&) = delete;
[10624]302
[9586]303            void setConfigValues(T* object, Configurable*) const;
304            void setConfigValues(T* object, Identifiable*) const;
305
[9572]306            void addObjectToList(T* object, Listable*);
307            void addObjectToList(T* object, Identifiable*);
308
[10624]309            void destroyObjects(Listable*);
310            void destroyObjects(void*);
[1052]311
[10624]312            void destroyObject(Destroyable* object);
313            void destroyObject(void* object);
[9667]314
315            void updateConfigValues(bool updateChildren, Listable*) const;
316            void updateConfigValues(bool updateChildren, Identifiable*) const;
317
[11071]318            static WeakPtr<ClassIdentifier<T>> classIdentifier_s;
[790]319    };
320
[1543]321    template <class T>
[11071]322    WeakPtr<ClassIdentifier<T>> ClassIdentifier<T>::classIdentifier_s;
[1543]323
[790]324    /**
[1747]325        @brief Returns the only instance of this class.
[1543]326        @return The unique Identifier
327    */
328    template <class T>
[10624]329    /*static*/ inline ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier()
[1543]330    {
[11071]331        if (ClassIdentifier<T>::classIdentifier_s == nullptr)
[10624]332            ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*) IdentifierManager::getInstance().getIdentifierByTypeInfo(typeid(T));
[1543]333
[11071]334        OrxVerify(ClassIdentifier<T>::classIdentifier_s != nullptr, "Did you forget to register the class of type " << typeid(T).name() << "?");
[1543]335        return ClassIdentifier<T>::classIdentifier_s;
336    }
337
338    /**
[790]339        @brief Adds an object of the given type to the ObjectList.
340        @param object The object to add
341    */
342    template <class T>
[9667]343    bool ClassIdentifier<T>::initializeObject(T* object)
[790]344    {
[9667]345        orxout(verbose, context::object_list) << "Register Object: " << this->getName() << endl;
[3325]346
347        object->identifier_ = this;
[9667]348        if (IdentifierManager::getInstance().isCreatingHierarchy())
[3325]349        {
[9667]350            IdentifierManager::getInstance().createdObject(object);
[3325]351
[10624]352            if (Identifier::initConfigValues_s)
353                this->setConfigValues(object, object);
354
[3325]355            return true;
356        }
357        else
358        {
[9572]359            this->addObjectToList(object, object);
[3325]360
[9566]361            // Add pointer of type T to the map in the Identifiable instance that enables "dynamic_casts"
[11071]362            object->objectPointers_.emplace_back(this->getClassID(), static_cast<void*>(object));
[3325]363            return false;
364        }
[790]365    }
366
367    /**
[9586]368     * @brief Only configures the object if is a @ref Configurable
369     */
370    template <class T>
371    void ClassIdentifier<T>::setConfigValues(T* object, Configurable*) const
372    {
373        object->setConfigValues();
374    }
375
376    template <class T>
377    void ClassIdentifier<T>::setConfigValues(T*, Identifiable*) const
378    {
379        // no action
380    }
381
382    /**
[9572]383     * @brief Only adds the object to the object list if is a @ref Listable
384     */
385    template <class T>
[9667]386    void ClassIdentifier<T>::addObjectToList(T* object, Listable* listable)
[9572]387    {
[9667]388        if (listable->getContext())
389            listable->getContext()->addObject(object);
[9572]390    }
391
392    template <class T>
393    void ClassIdentifier<T>::addObjectToList(T*, Identifiable*)
394    {
395        // no action
396    }
397
398    /**
[10624]399     * @brief Destroy all objects of this class (must be Listable).
400     * Destroyables are destroyed with destroy(), all other classes with delete.
401     */
402    template <class T>
403    void ClassIdentifier<T>::destroyObjects()
404    {
[11071]405        this->destroyObjects((T*)nullptr);
[10624]406    }
407
408    /**
409     * @brief Only searches and destroys objects if is a @ref Listable
410     */
411    template <class T>
412    void ClassIdentifier<T>::destroyObjects(Listable*)
413    {
[11071]414        ObjectList<T> list(Context::getRootContext()->getObjectList(this));
415        for (typename ObjectList<T>::iterator it = list.begin(); it != list.end(); )
[10624]416            this->destroyObject(*(it++));
417    }
418
419    template <class T>
420    void ClassIdentifier<T>::destroyObjects(void*)
421    {
422        // no action
423    }
424
425    /**
426     * @brief Call 'object->destroy()' for Destroyables and 'delete object' for all other types.
427     */
428    template <class T>
429    void ClassIdentifier<T>::destroyObject(Destroyable* object)
430    {
431        object->destroy();
432    }
433
434    template <class T>
435    void ClassIdentifier<T>::destroyObject(void* object)
436    {
437        delete static_cast<Identifiable*>(object);
438    }
439
440    /**
[1052]441        @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function.
[790]442    */
443    template <class T>
[1747]444    void ClassIdentifier<T>::updateConfigValues(bool updateChildren) const
[790]445    {
[11071]446        this->updateConfigValues(updateChildren, static_cast<T*>(nullptr));
[9667]447    }
448
449    template <class T>
450    void ClassIdentifier<T>::updateConfigValues(bool updateChildren, Listable*) const
451    {
[1747]452        if (!this->hasConfigValues())
453            return;
[790]454
[11071]455        for (T* object : ObjectList<T>())
456            this->setConfigValues(object, object);
[1052]457
[1747]458        if (updateChildren)
[11071]459            for (const Identifier* child : this->getChildren())
460                child->updateConfigValues(false);
[1052]461    }
462
[9667]463    template <class T>
464    void ClassIdentifier<T>::updateConfigValues(bool updateChildren, Identifiable*) const
465    {
466        // no action
467    }
[1052]468
[9667]469
[790]470    // ###############################
[3325]471    // ###      orxonox_cast       ###
472    // ###############################
473    /**
474    @brief
[9566]475        Casts on object of type Identifiable to any derived type that is
[3325]476        registered in the class hierarchy.
477    @return
[11071]478        Returns nullptr if the cast is not possible
[3325]479    @note
[11071]480        In case of nullptr return (and using MSVC), a dynamic_cast might still be possible if
[3325]481        a class forgot to register its objects.
482        Also note that the function is implemented differently for GCC/MSVC.
483    */
484    template <class T, class U>
[8351]485    ORX_FORCEINLINE T orxonox_cast(U* source)
[3325]486    {
[3332]487#ifdef ORXONOX_COMPILER_MSVC
[3333]488        typedef Loki::TypeTraits<typename Loki::TypeTraits<T>::PointeeType>::NonConstType ClassType;
[11071]489        if (source != nullptr)
[3370]490            return source->template getDerivedPointer<ClassType>(ClassIdentifier<ClassType>::getIdentifier()->getClassID());
491        else
[11071]492            return nullptr;
[3332]493#else
494        return dynamic_cast<T>(source);
495#endif
[3325]496    }
[790]497}
498
499#endif /* _Identifier_H__ */
Note: See TracBrowser for help on using the repository browser.