Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/cpp11_v2/src/libraries/core/class/Identifier.h @ 10817

Last change on this file since 10817 was 10817, checked in by muemart, 8 years ago

Run clang-modernize -add-override
A few notes:

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