[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 | /** |
---|
[2114] | 30 | @file |
---|
[790] | 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> |
---|
[2084] | 59 | #include <vector> |
---|
[790] | 60 | #include <string> |
---|
| 61 | #include <utility> |
---|
[1639] | 62 | #include <typeinfo> |
---|
| 63 | #include <stdlib.h> |
---|
[1952] | 64 | #include <cassert> |
---|
[790] | 65 | |
---|
[1747] | 66 | #include "MetaObjectList.h" |
---|
[1052] | 67 | #include "Iterator.h" |
---|
[1747] | 68 | #include "Super.h" |
---|
[2086] | 69 | #include "Functor.h" |
---|
[1747] | 70 | #include "util/Debug.h" |
---|
[1505] | 71 | #include "util/String.h" |
---|
[790] | 72 | |
---|
| 73 | namespace orxonox |
---|
| 74 | { |
---|
| 75 | // ############################### |
---|
| 76 | // ### Identifier ### |
---|
| 77 | // ############################### |
---|
| 78 | //! The Identifier is used to identify the class of an object and to store informations about the class. |
---|
| 79 | /** |
---|
| 80 | The Identifier contains all needed informations about the class it belongs to: |
---|
| 81 | - the name |
---|
| 82 | - a list with all objects |
---|
[1755] | 83 | - parents and children |
---|
[790] | 84 | - the factory (if available) |
---|
| 85 | - the networkID that can be synchronised with the server |
---|
| 86 | - all configurable variables (if available) |
---|
| 87 | |
---|
| 88 | Every object has a pointer to the Identifier of its class. This allows the use isA(...), |
---|
[871] | 89 | isExactlyA(...), isChildOf(...) and isParentOf(...). |
---|
[790] | 90 | |
---|
| 91 | You can't directly create an Identifier, it's just the base-class for ClassIdentifier. |
---|
| 92 | */ |
---|
| 93 | class _CoreExport Identifier |
---|
| 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 | |
---|
[2019] | 104 | BaseObject* fabricate(BaseObject* creator); |
---|
[790] | 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 | |
---|
[1940] | 112 | /** @brief Returns true if the class can be loaded through XML. */ |
---|
| 113 | inline bool isLoadable() const { return this->bLoadable_; } |
---|
| 114 | /** @brief Set the class to be loadable through XML or not. */ |
---|
| 115 | inline void setLoadable(bool bLoadable) { this->bLoadable_ = bLoadable; } |
---|
| 116 | |
---|
[1747] | 117 | /** @brief Returns the list of all existing objects of this class. @return The list */ |
---|
| 118 | inline ObjectListBase* getObjects() const |
---|
| 119 | { return this->objects_; } |
---|
[790] | 120 | |
---|
[871] | 121 | /** @brief Returns the name of the class the Identifier belongs to. @return The name */ |
---|
[790] | 122 | inline const std::string& getName() const { return this->name_; } |
---|
[1747] | 123 | void setName(const std::string& name); |
---|
[790] | 124 | |
---|
[1747] | 125 | virtual void updateConfigValues(bool updateChildren = true) const = 0; |
---|
[1052] | 126 | |
---|
| 127 | /** @brief Returns the parents of the class the Identifier belongs to. @return The list of all parents */ |
---|
| 128 | inline const std::set<const Identifier*>& getParents() const { return this->parents_; } |
---|
| 129 | /** @brief Returns the begin-iterator of the parents-list. @return The begin-iterator */ |
---|
| 130 | inline std::set<const Identifier*>::const_iterator getParentsBegin() const { return this->parents_.begin(); } |
---|
| 131 | /** @brief Returns the end-iterator of the parents-list. @return The end-iterator */ |
---|
| 132 | inline std::set<const Identifier*>::const_iterator getParentsEnd() const { return this->parents_.end(); } |
---|
| 133 | |
---|
| 134 | /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */ |
---|
| 135 | inline const std::set<const Identifier*>& getChildren() const { return (*this->children_); } |
---|
| 136 | /** @brief Returns the begin-iterator of the children-list. @return The begin-iterator */ |
---|
| 137 | inline std::set<const Identifier*>::const_iterator getChildrenBegin() const { return this->children_->begin(); } |
---|
| 138 | /** @brief Returns the end-iterator of the children-list. @return The end-iterator */ |
---|
| 139 | inline std::set<const Identifier*>::const_iterator getChildrenEnd() const { return this->children_->end(); } |
---|
| 140 | |
---|
| 141 | /** @brief Returns the direct parents of the class the Identifier belongs to. @return The list of all direct parents */ |
---|
| 142 | inline const std::set<const Identifier*>& getDirectParents() const { return this->directParents_; } |
---|
| 143 | /** @brief Returns the begin-iterator of the direct-parents-list. @return The begin-iterator */ |
---|
| 144 | inline std::set<const Identifier*>::const_iterator getDirectParentsBegin() const { return this->directParents_.begin(); } |
---|
| 145 | /** @brief Returns the end-iterator of the direct-parents-list. @return The end-iterator */ |
---|
| 146 | inline std::set<const Identifier*>::const_iterator getDirectParentsEnd() const { return this->directParents_.end(); } |
---|
| 147 | |
---|
| 148 | /** @brief Returns the direct children the class the Identifier belongs to. @return The list of all direct children */ |
---|
| 149 | inline const std::set<const Identifier*>& getDirectChildren() const { return (*this->directChildren_); } |
---|
| 150 | /** @brief Returns the begin-iterator of the direct-children-list. @return The begin-iterator */ |
---|
| 151 | inline std::set<const Identifier*>::const_iterator getDirectChildrenBegin() const { return this->directChildren_->begin(); } |
---|
| 152 | /** @brief Returns the end-iterator of the direct-children-list. @return The end-iterator */ |
---|
| 153 | inline std::set<const Identifier*>::const_iterator getDirectChildrenEnd() const { return this->directChildren_->end(); } |
---|
| 154 | |
---|
| 155 | |
---|
| 156 | /** @brief Returns the map that stores all Identifiers. @return The map */ |
---|
| 157 | static inline const std::map<std::string, Identifier*>& getIdentifierMap() { return Identifier::getIdentifierMapIntern(); } |
---|
| 158 | /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers. @return The const_iterator */ |
---|
| 159 | static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapBegin() { return Identifier::getIdentifierMap().begin(); } |
---|
| 160 | /** @brief Returns a const_iterator to the end of the map that stores all Identifiers. @return The const_iterator */ |
---|
| 161 | static inline std::map<std::string, Identifier*>::const_iterator getIdentifierMapEnd() { return Identifier::getIdentifierMap().end(); } |
---|
| 162 | |
---|
| 163 | /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */ |
---|
| 164 | static inline const std::map<std::string, Identifier*>& getLowercaseIdentifierMap() { return Identifier::getLowercaseIdentifierMapIntern(); } |
---|
| 165 | /** @brief Returns a const_iterator to the beginning of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */ |
---|
| 166 | static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapBegin() { return Identifier::getLowercaseIdentifierMap().begin(); } |
---|
| 167 | /** @brief Returns a const_iterator to the end of the map that stores all Identifiers with their names in lowercase. @return The const_iterator */ |
---|
| 168 | static inline std::map<std::string, Identifier*>::const_iterator getLowercaseIdentifierMapEnd() { return Identifier::getLowercaseIdentifierMap().end(); } |
---|
| 169 | |
---|
| 170 | |
---|
| 171 | /** @brief Returns the map that stores all config values. @return The const_iterator */ |
---|
| 172 | inline const std::map<std::string, ConfigValueContainer*>& getConfigValueMap() const { return this->configValues_; } |
---|
| 173 | /** @brief Returns a const_iterator to the beginning of the map that stores all config values. @return The const_iterator */ |
---|
| 174 | inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapBegin() const { return this->configValues_.begin(); } |
---|
| 175 | /** @brief Returns a const_iterator to the end of the map that stores all config values. @return The const_iterator */ |
---|
| 176 | inline std::map<std::string, ConfigValueContainer*>::const_iterator getConfigValueMapEnd() const { return this->configValues_.end(); } |
---|
| 177 | |
---|
| 178 | /** @brief Returns the map that stores all config values with their names in lowercase. @return The const_iterator */ |
---|
| 179 | inline const std::map<std::string, ConfigValueContainer*>& getLowercaseConfigValueMap() const { return this->configValues_LC_; } |
---|
| 180 | /** @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 */ |
---|
| 181 | inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapBegin() const { return this->configValues_LC_.begin(); } |
---|
| 182 | /** @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 */ |
---|
| 183 | inline std::map<std::string, ConfigValueContainer*>::const_iterator getLowercaseConfigValueMapEnd() const { return this->configValues_LC_.end(); } |
---|
| 184 | |
---|
| 185 | |
---|
| 186 | /** @brief Returns the map that stores all console commands. @return The const_iterator */ |
---|
[1502] | 187 | inline const std::map<std::string, ConsoleCommand*>& getConsoleCommandMap() const { return this->consoleCommands_; } |
---|
[1052] | 188 | /** @brief Returns a const_iterator to the beginning of the map that stores all console commands. @return The const_iterator */ |
---|
[1502] | 189 | inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapBegin() const { return this->consoleCommands_.begin(); } |
---|
[1052] | 190 | /** @brief Returns a const_iterator to the end of the map that stores all console commands. @return The const_iterator */ |
---|
[1502] | 191 | inline std::map<std::string, ConsoleCommand*>::const_iterator getConsoleCommandMapEnd() const { return this->consoleCommands_.end(); } |
---|
[1052] | 192 | |
---|
| 193 | /** @brief Returns the map that stores all console commands with their names in lowercase. @return The const_iterator */ |
---|
[1502] | 194 | inline const std::map<std::string, ConsoleCommand*>& getLowercaseConsoleCommandMap() const { return this->consoleCommands_LC_; } |
---|
[1052] | 195 | /** @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] | 196 | inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapBegin() const { return this->consoleCommands_LC_.begin(); } |
---|
[1052] | 197 | /** @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] | 198 | inline std::map<std::string, ConsoleCommand*>::const_iterator getLowercaseConsoleCommandMapEnd() const { return this->consoleCommands_LC_.end(); } |
---|
[1052] | 199 | |
---|
[1856] | 200 | /** @brief Returns the map that stores all XMLPort params. @return The const_iterator */ |
---|
| 201 | inline const std::map<std::string, XMLPortParamContainer*>& getXMLPortParamMap() const { return this->xmlportParamContainers_; } |
---|
| 202 | /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort params. @return The const_iterator */ |
---|
| 203 | inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapBegin() const { return this->xmlportParamContainers_.begin(); } |
---|
| 204 | /** @brief Returns a const_iterator to the end of the map that stores all XMLPort params. @return The const_iterator */ |
---|
| 205 | inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapEnd() const { return this->xmlportParamContainers_.end(); } |
---|
[1052] | 206 | |
---|
[1856] | 207 | /** @brief Returns the map that stores all XMLPort objects. @return The const_iterator */ |
---|
| 208 | inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortObjectMap() const { return this->xmlportObjectContainers_; } |
---|
| 209 | /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort objects. @return The const_iterator */ |
---|
| 210 | inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapBegin() const { return this->xmlportObjectContainers_.begin(); } |
---|
| 211 | /** @brief Returns a const_iterator to the end of the map that stores all XMLPort objects. @return The const_iterator */ |
---|
| 212 | inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapEnd() const { return this->xmlportObjectContainers_.end(); } |
---|
| 213 | |
---|
[2063] | 214 | /** @brief Returns the map that stores all XMLPort events. @return The const_iterator */ |
---|
| 215 | inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortEventMap() const { return this->xmlportEventContainers_; } |
---|
| 216 | /** @brief Returns a const_iterator to the beginning of the map that stores all XMLPort events. @return The const_iterator */ |
---|
| 217 | inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortEventMapBegin() const { return this->xmlportEventContainers_.begin(); } |
---|
| 218 | /** @brief Returns a const_iterator to the end of the map that stores all XMLPort events. @return The const_iterator */ |
---|
| 219 | inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortEventMapEnd() const { return this->xmlportEventContainers_.end(); } |
---|
| 220 | |
---|
[1052] | 221 | /** @brief Returns true if this class has at least one config value. @return True if this class has at least one config value */ |
---|
| 222 | inline bool hasConfigValues() const { return this->bHasConfigValues_; } |
---|
| 223 | /** @brief Returns true if this class has at least one console command. @return True if this class has at least one console command */ |
---|
| 224 | inline bool hasConsoleCommands() const { return this->bHasConsoleCommands_; } |
---|
[2084] | 225 | /** @brief Returns true if this class has at least one construction callback Functor registered. */ |
---|
| 226 | inline bool hasConstructionCallback() const { return this->bHasConstructionCallback_; } |
---|
[1052] | 227 | |
---|
[871] | 228 | /** @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] | 229 | inline static bool isCreatingHierarchy() { return (hierarchyCreatingCounter_s > 0); } |
---|
| 230 | |
---|
[871] | 231 | /** @brief Returns the network ID to identify a class through the network. @return the network ID */ |
---|
[790] | 232 | inline const unsigned int getNetworkID() const { return this->classID_; } |
---|
| 233 | |
---|
| 234 | /** @brief Sets the network ID to a new value. @param id The new value */ |
---|
| 235 | void setNetworkID(unsigned int id); |
---|
| 236 | |
---|
[1052] | 237 | void addConfigValueContainer(const std::string& varname, ConfigValueContainer* container); |
---|
[871] | 238 | ConfigValueContainer* getConfigValueContainer(const std::string& varname); |
---|
[1052] | 239 | ConfigValueContainer* getLowercaseConfigValueContainer(const std::string& varname); |
---|
| 240 | |
---|
[1747] | 241 | void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container); |
---|
| 242 | XMLPortParamContainer* getXMLPortParamContainer(const std::string& paramname); |
---|
[1052] | 243 | |
---|
[1747] | 244 | void addXMLPortObjectContainer(const std::string& sectionname, XMLPortObjectContainer* container); |
---|
| 245 | XMLPortObjectContainer* getXMLPortObjectContainer(const std::string& sectionname); |
---|
[1052] | 246 | |
---|
[2063] | 247 | void addXMLPortEventContainer(const std::string& eventname, XMLPortObjectContainer* container); |
---|
| 248 | XMLPortObjectContainer* getXMLPortEventContainer(const std::string& eventname); |
---|
| 249 | |
---|
[1502] | 250 | ConsoleCommand& addConsoleCommand(ConsoleCommand* command, bool bCreateShortcut); |
---|
| 251 | ConsoleCommand* getConsoleCommand(const std::string& name) const; |
---|
| 252 | ConsoleCommand* getLowercaseConsoleCommand(const std::string& name) const; |
---|
[1052] | 253 | |
---|
[2084] | 254 | void addConstructionCallback(Functor* functor); |
---|
| 255 | void removeConstructionCallback(Functor* functor); |
---|
| 256 | |
---|
[1856] | 257 | void initializeClassHierarchy(std::set<const Identifier*>* parents, bool bRootClass); |
---|
| 258 | |
---|
[1052] | 259 | protected: |
---|
[1747] | 260 | Identifier(); |
---|
| 261 | Identifier(const Identifier& identifier); // don't copy |
---|
| 262 | virtual ~Identifier(); |
---|
| 263 | |
---|
| 264 | static Identifier* getIdentifierSingleton(const std::string& name, Identifier* proposal); |
---|
| 265 | virtual void createSuperFunctionCaller() const = 0; |
---|
| 266 | |
---|
[1052] | 267 | /** @brief Returns the map that stores all Identifiers. @return The map */ |
---|
| 268 | static std::map<std::string, Identifier*>& getIdentifierMapIntern(); |
---|
| 269 | /** @brief Returns the map that stores all Identifiers with their names in lowercase. @return The map */ |
---|
| 270 | static std::map<std::string, Identifier*>& getLowercaseIdentifierMapIntern(); |
---|
| 271 | |
---|
| 272 | /** @brief Returns the children of the class the Identifier belongs to. @return The list of all children */ |
---|
| 273 | inline std::set<const Identifier*>& getChildrenIntern() const { return (*this->children_); } |
---|
| 274 | /** @brief Returns the direct children of the class the Identifier belongs to. @return The list of all direct children */ |
---|
| 275 | inline std::set<const Identifier*>& getDirectChildrenIntern() const { return (*this->directChildren_); } |
---|
| 276 | |
---|
[2084] | 277 | bool bHasConstructionCallback_; //!< True if at least one Functor is registered to get informed when an object of type T is created. |
---|
| 278 | std::vector<Functor*> constructionCallbacks_; //!< All construction callback Functors of this class. |
---|
| 279 | |
---|
[1747] | 280 | ObjectListBase* objects_; //!< The list of all objects of this class |
---|
| 281 | |
---|
| 282 | private: |
---|
[790] | 283 | /** |
---|
| 284 | @brief Increases the hierarchyCreatingCounter_s variable, causing all new objects to store their parents. |
---|
| 285 | */ |
---|
| 286 | inline static void startCreatingHierarchy() |
---|
| 287 | { |
---|
| 288 | hierarchyCreatingCounter_s++; |
---|
[871] | 289 | COUT(4) << "*** Identifier: Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl; |
---|
[790] | 290 | } |
---|
| 291 | |
---|
| 292 | /** |
---|
| 293 | @brief Decreases the hierarchyCreatingCounter_s variable, causing the objects to stop storing their parents. |
---|
| 294 | */ |
---|
| 295 | inline static void stopCreatingHierarchy() |
---|
| 296 | { |
---|
| 297 | hierarchyCreatingCounter_s--; |
---|
[871] | 298 | COUT(4) << "*** Identifier: Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl; |
---|
[1052] | 299 | } |
---|
[790] | 300 | |
---|
[1856] | 301 | void initialize(std::set<const Identifier*>* parents); |
---|
| 302 | |
---|
[1747] | 303 | static void destroyAllIdentifiers(); |
---|
[1543] | 304 | |
---|
[1052] | 305 | std::set<const Identifier*> parents_; //!< The parents of the class the Identifier belongs to |
---|
| 306 | std::set<const Identifier*>* children_; //!< The children of the class the Identifier belongs to |
---|
[790] | 307 | |
---|
[1052] | 308 | std::set<const Identifier*> directParents_; //!< The direct parents of the class the Identifier belongs to |
---|
| 309 | std::set<const Identifier*>* directChildren_; //!< The direct children of the class the Identifier belongs to |
---|
| 310 | |
---|
[1856] | 311 | bool bCreatedOneObject_; //!< True if at least one object of the given type was created (used to determine the need of storing the parents) |
---|
[1747] | 312 | bool bSetName_; //!< True if the name is set |
---|
[1940] | 313 | bool bLoadable_; //!< False = it's not permitted to load the object through XML |
---|
[1052] | 314 | std::string name_; //!< The name of the class the Identifier belongs to |
---|
| 315 | BaseFactory* factory_; //!< The Factory, able to create new objects of the given class (if available) |
---|
| 316 | 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) |
---|
| 317 | unsigned int classID_; //!< The network ID to identify a class through the network |
---|
| 318 | |
---|
| 319 | bool bHasConfigValues_; //!< True if this class has at least one assigned config value |
---|
| 320 | std::map<std::string, ConfigValueContainer*> configValues_; //!< A map to link the string of configurable variables with their ConfigValueContainer |
---|
| 321 | std::map<std::string, ConfigValueContainer*> configValues_LC_; //!< A map to link the string of configurable variables with their ConfigValueContainer |
---|
| 322 | |
---|
| 323 | bool bHasConsoleCommands_; //!< True if this class has at least one assigned console command |
---|
[1502] | 324 | std::map<std::string, ConsoleCommand*> consoleCommands_; //!< All console commands of this class |
---|
| 325 | std::map<std::string, ConsoleCommand*> consoleCommands_LC_; //!< All console commands of this class with their names in lowercase |
---|
[1747] | 326 | |
---|
| 327 | std::map<std::string, XMLPortParamContainer*> xmlportParamContainers_; //!< All loadable parameters |
---|
| 328 | std::map<std::string, XMLPortObjectContainer*> xmlportObjectContainers_; //!< All attachable objects |
---|
[2063] | 329 | std::map<std::string, XMLPortObjectContainer*> xmlportEventContainers_; //!< All events |
---|
[790] | 330 | }; |
---|
| 331 | |
---|
[1052] | 332 | _CoreExport std::ostream& operator<<(std::ostream& out, const std::set<const Identifier*>& list); |
---|
[790] | 333 | |
---|
[1052] | 334 | |
---|
[790] | 335 | // ############################### |
---|
| 336 | // ### ClassIdentifier ### |
---|
| 337 | // ############################### |
---|
| 338 | //! The ClassIdentifier is derived from Identifier and holds all class-specific functions and variables the Identifier cannot have. |
---|
| 339 | /** |
---|
| 340 | ClassIdentifier is a Singleton, which means that only one object of a given type T exists. |
---|
| 341 | This makes it possible to store informations about a class, sharing them with all |
---|
[1052] | 342 | objects of that class without defining static variables in every class. |
---|
| 343 | |
---|
| 344 | To be really sure that not more than exactly one object exists (even with libraries), |
---|
[1543] | 345 | ClassIdentifiers are stored in the Identifier Singleton. |
---|
[790] | 346 | */ |
---|
| 347 | template <class T> |
---|
| 348 | class ClassIdentifier : public Identifier |
---|
[1052] | 349 | { |
---|
[1747] | 350 | #define SUPER_INTRUSIVE_DECLARATION_INCLUDE |
---|
| 351 | #include "Super.h" |
---|
| 352 | |
---|
[790] | 353 | public: |
---|
[1747] | 354 | static ClassIdentifier<T> *getIdentifier(); |
---|
| 355 | static ClassIdentifier<T> *getIdentifier(const std::string& name); |
---|
[1856] | 356 | void addObject(T* object); |
---|
[1747] | 357 | static bool isFirstCall(); |
---|
[1052] | 358 | |
---|
[1747] | 359 | void updateConfigValues(bool updateChildren = true) const; |
---|
[1052] | 360 | |
---|
[790] | 361 | private: |
---|
| 362 | ClassIdentifier(const ClassIdentifier<T>& identifier) {} // don't copy |
---|
[1747] | 363 | ClassIdentifier() |
---|
| 364 | { |
---|
| 365 | SuperFunctionInitialization<0, T>::initialize(this); |
---|
| 366 | } |
---|
| 367 | ~ClassIdentifier() |
---|
| 368 | { |
---|
| 369 | SuperFunctionDestruction<0, T>::destroy(this); |
---|
| 370 | } |
---|
[790] | 371 | |
---|
[1856] | 372 | static ClassIdentifier<T>* classIdentifier_s; |
---|
[790] | 373 | }; |
---|
| 374 | |
---|
[1543] | 375 | template <class T> |
---|
[1856] | 376 | ClassIdentifier<T>* ClassIdentifier<T>::classIdentifier_s; |
---|
[1543] | 377 | |
---|
[790] | 378 | /** |
---|
[1747] | 379 | @brief Returns true if the function gets called the first time, false otherwise. |
---|
| 380 | @return True if this function got called the first time. |
---|
| 381 | */ |
---|
| 382 | template <class T> |
---|
| 383 | bool ClassIdentifier<T>::isFirstCall() |
---|
| 384 | { |
---|
| 385 | static bool bFirstCall = true; |
---|
| 386 | |
---|
| 387 | if (bFirstCall) |
---|
| 388 | { |
---|
| 389 | bFirstCall = false; |
---|
| 390 | return true; |
---|
| 391 | } |
---|
| 392 | else |
---|
| 393 | { |
---|
| 394 | return false; |
---|
| 395 | } |
---|
[790] | 396 | } |
---|
| 397 | |
---|
| 398 | /** |
---|
[1747] | 399 | @brief Returns the only instance of this class. |
---|
[1543] | 400 | @return The unique Identifier |
---|
| 401 | */ |
---|
| 402 | template <class T> |
---|
| 403 | ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier() |
---|
| 404 | { |
---|
| 405 | // check if the static field has already been filled |
---|
[1747] | 406 | if (ClassIdentifier<T>::isFirstCall()) |
---|
[1543] | 407 | { |
---|
| 408 | // Get the name of the class |
---|
| 409 | std::string name = typeid(T).name(); |
---|
| 410 | |
---|
| 411 | // create a new identifier anyway. Will be deleted in Identifier::getIdentifier if not used. |
---|
[1747] | 412 | ClassIdentifier<T>* proposal = new ClassIdentifier<T>(); |
---|
[1543] | 413 | |
---|
| 414 | // Get the entry from the map |
---|
[1747] | 415 | ClassIdentifier<T>::classIdentifier_s = (ClassIdentifier<T>*)Identifier::getIdentifierSingleton(name, proposal); |
---|
| 416 | |
---|
| 417 | if (ClassIdentifier<T>::classIdentifier_s == proposal) |
---|
| 418 | { |
---|
| 419 | COUT(4) << "*** Identifier: Requested Identifier for " << name << " was not yet existing and got created." << std::endl; |
---|
| 420 | } |
---|
| 421 | else |
---|
| 422 | { |
---|
| 423 | COUT(4) << "*** Identifier: Requested Identifier for " << name << " was already existing and got assigned." << std::endl; |
---|
| 424 | } |
---|
[1543] | 425 | } |
---|
| 426 | |
---|
| 427 | // Finally return the unique ClassIdentifier |
---|
| 428 | return ClassIdentifier<T>::classIdentifier_s; |
---|
| 429 | } |
---|
| 430 | |
---|
| 431 | /** |
---|
[1747] | 432 | @brief Does the same as getIdentifier() but sets the name if this wasn't done yet. |
---|
| 433 | @param name The name of this Identifier |
---|
| 434 | @return The Identifier |
---|
[790] | 435 | */ |
---|
| 436 | template <class T> |
---|
[1747] | 437 | ClassIdentifier<T>* ClassIdentifier<T>::getIdentifier(const std::string& name) |
---|
[790] | 438 | { |
---|
[1747] | 439 | ClassIdentifier<T>* identifier = ClassIdentifier<T>::getIdentifier(); |
---|
| 440 | identifier->setName(name); |
---|
| 441 | return identifier; |
---|
[790] | 442 | } |
---|
| 443 | |
---|
| 444 | /** |
---|
| 445 | @brief Adds an object of the given type to the ObjectList. |
---|
| 446 | @param object The object to add |
---|
| 447 | */ |
---|
| 448 | template <class T> |
---|
| 449 | void ClassIdentifier<T>::addObject(T* object) |
---|
| 450 | { |
---|
[871] | 451 | COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl; |
---|
[1747] | 452 | object->getMetaList().add(this->objects_, this->objects_->add(new ObjectListElement<T>(object))); |
---|
[2084] | 453 | if (this->bHasConstructionCallback_) |
---|
| 454 | { |
---|
| 455 | // Call all registered callbacks that a new object of type T has been created. |
---|
| 456 | // Do NOT deliver a T* pointer here because it's way too risky (object not yet fully created). |
---|
| 457 | for (unsigned int i = 0; i < this->constructionCallbacks_.size(); ++i) |
---|
| 458 | (*constructionCallbacks_[i])(); |
---|
| 459 | } |
---|
[790] | 460 | } |
---|
| 461 | |
---|
| 462 | /** |
---|
[1052] | 463 | @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function. |
---|
[790] | 464 | */ |
---|
| 465 | template <class T> |
---|
[1747] | 466 | void ClassIdentifier<T>::updateConfigValues(bool updateChildren) const |
---|
[790] | 467 | { |
---|
[1747] | 468 | if (!this->hasConfigValues()) |
---|
| 469 | return; |
---|
[790] | 470 | |
---|
[1747] | 471 | for (ObjectListIterator<T> it = ObjectList<T>::begin(); it; ++it) |
---|
| 472 | it->setConfigValues(); |
---|
[1052] | 473 | |
---|
[1747] | 474 | if (updateChildren) |
---|
| 475 | for (std::set<const Identifier*>::const_iterator it = this->getChildrenBegin(); it != this->getChildrenEnd(); ++it) |
---|
| 476 | (*it)->updateConfigValues(false); |
---|
[1052] | 477 | } |
---|
| 478 | |
---|
| 479 | |
---|
[790] | 480 | // ############################### |
---|
| 481 | // ### SubclassIdentifier ### |
---|
| 482 | // ############################### |
---|
| 483 | //! The SubclassIdentifier acts almost like an Identifier, but has some prerequisites. |
---|
| 484 | /** |
---|
| 485 | You can only assign an Identifier that belongs to a class T (or derived) to a SubclassIdentifier<T>. |
---|
| 486 | If you assign something else, the program aborts. |
---|
[2101] | 487 | Because we know the minimum type, a dynamic_cast is done, which makes it easier to create a new object. |
---|
[790] | 488 | */ |
---|
| 489 | template <class T> |
---|
| 490 | class SubclassIdentifier |
---|
| 491 | { |
---|
| 492 | public: |
---|
| 493 | /** |
---|
| 494 | @brief Constructor: Automaticaly assigns the Identifier of the given class. |
---|
[1052] | 495 | */ |
---|
[790] | 496 | SubclassIdentifier() |
---|
[1052] | 497 | { |
---|
[1543] | 498 | this->identifier_ = ClassIdentifier<T>::getIdentifier(); |
---|
[790] | 499 | } |
---|
| 500 | |
---|
| 501 | /** |
---|
[1052] | 502 | @brief Copyconstructor: Assigns the given Identifier. |
---|
| 503 | @param identifier The Identifier |
---|
| 504 | */ |
---|
| 505 | SubclassIdentifier(Identifier* identifier) |
---|
| 506 | { |
---|
[1856] | 507 | this->operator=(identifier); |
---|
[1052] | 508 | } |
---|
| 509 | |
---|
| 510 | /** |
---|
[790] | 511 | @brief Overloading of the = operator: assigns the identifier and checks its type. |
---|
| 512 | @param identifier The Identifier to assign |
---|
| 513 | @return The SubclassIdentifier itself |
---|
| 514 | */ |
---|
| 515 | SubclassIdentifier<T>& operator=(Identifier* identifier) |
---|
| 516 | { |
---|
[2024] | 517 | if (!identifier || !identifier->isA(ClassIdentifier<T>::getIdentifier())) |
---|
[1052] | 518 | { |
---|
| 519 | COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; |
---|
[2024] | 520 | if (identifier) |
---|
| 521 | { |
---|
| 522 | COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl; |
---|
| 523 | COUT(1) << "Error: SubclassIdentifier<" << ClassIdentifier<T>::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden." << std::endl; |
---|
| 524 | } |
---|
| 525 | else |
---|
| 526 | { |
---|
| 527 | COUT(1) << "Error: Can't assign NULL identifier" << std::endl; |
---|
| 528 | } |
---|
[790] | 529 | } |
---|
[2024] | 530 | else |
---|
| 531 | { |
---|
| 532 | this->identifier_ = identifier; |
---|
| 533 | } |
---|
[790] | 534 | return *this; |
---|
| 535 | } |
---|
| 536 | |
---|
| 537 | /** |
---|
| 538 | @brief Overloading of the * operator: returns the assigned identifier. |
---|
| 539 | */ |
---|
[2019] | 540 | inline Identifier* operator*() const |
---|
[790] | 541 | { |
---|
| 542 | return this->identifier_; |
---|
| 543 | } |
---|
| 544 | |
---|
| 545 | /** |
---|
| 546 | @brief Overloading of the -> operator: returns the assigned identifier. |
---|
| 547 | */ |
---|
[1856] | 548 | inline Identifier* operator->() const |
---|
[790] | 549 | { |
---|
| 550 | return this->identifier_; |
---|
| 551 | } |
---|
| 552 | |
---|
| 553 | /** |
---|
[1856] | 554 | @brief Returns the assigned identifier. This allows you to assign a SubclassIdentifier to a normal Identifier*. |
---|
| 555 | */ |
---|
| 556 | inline operator Identifier*() const |
---|
| 557 | { |
---|
| 558 | return this->identifier_; |
---|
| 559 | } |
---|
| 560 | |
---|
| 561 | /** |
---|
[790] | 562 | @brief Creates a new object of the type of the assigned Identifier and dynamic_casts it to the minimal type given by T. |
---|
| 563 | @return The new object |
---|
| 564 | */ |
---|
[2019] | 565 | T* fabricate(BaseObject* creator) const |
---|
[790] | 566 | { |
---|
[2019] | 567 | BaseObject* newObject = this->identifier_->fabricate(creator); |
---|
[790] | 568 | |
---|
| 569 | // Check if the creation was successful |
---|
| 570 | if (newObject) |
---|
| 571 | { |
---|
[1856] | 572 | return dynamic_cast<T*>(newObject); |
---|
[790] | 573 | } |
---|
| 574 | else |
---|
| 575 | { |
---|
| 576 | // Something went terribly wrong |
---|
| 577 | if (this->identifier_) |
---|
| 578 | { |
---|
[1052] | 579 | COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; |
---|
[1543] | 580 | COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl; |
---|
[790] | 581 | COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl; |
---|
| 582 | COUT(1) << "Aborting..." << std::endl; |
---|
| 583 | } |
---|
| 584 | else |
---|
| 585 | { |
---|
[1052] | 586 | COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; |
---|
[790] | 587 | COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl; |
---|
| 588 | COUT(1) << "Aborting..." << std::endl; |
---|
| 589 | } |
---|
| 590 | |
---|
[1947] | 591 | assert(false); |
---|
| 592 | return 0; |
---|
[790] | 593 | } |
---|
| 594 | } |
---|
| 595 | |
---|
[871] | 596 | /** @brief Returns the assigned identifier. @return The identifier */ |
---|
[1856] | 597 | inline Identifier* getIdentifier() const |
---|
[790] | 598 | { return this->identifier_; } |
---|
| 599 | |
---|
[1856] | 600 | // /** @brief Returns true, if the assigned identifier is at least of the given type. @param identifier The identifier to compare with */ |
---|
| 601 | // inline bool isA(const Identifier* identifier) const |
---|
| 602 | // { return this->identifier_->isA(identifier); } |
---|
| 603 | // |
---|
| 604 | // /** @brief Returns true, if the assigned identifier is exactly of the given type. @param identifier The identifier to compare with */ |
---|
| 605 | // inline bool isExactlyA(const Identifier* identifier) const |
---|
| 606 | // { return this->identifier_->isExactlyA(identifier); } |
---|
| 607 | // |
---|
| 608 | // /** @brief Returns true, if the assigned identifier is a child of the given identifier. @param identifier The identifier to compare with */ |
---|
| 609 | // inline bool isChildOf(const Identifier* identifier) const |
---|
| 610 | // { return this->identifier_->isChildOf(identifier); } |
---|
| 611 | // |
---|
| 612 | // /** @brief Returns true, if the assigned identifier is a direct child of the given identifier. @param identifier The identifier to compare with */ |
---|
| 613 | // inline bool isDirectChildOf(const Identifier* identifier) const |
---|
| 614 | // { return this->identifier_->isDirectChildOf(identifier); } |
---|
| 615 | // |
---|
| 616 | // /** @brief Returns true, if the assigned identifier is a parent of the given identifier. @param identifier The identifier to compare with */ |
---|
| 617 | // inline bool isParentOf(const Identifier* identifier) const |
---|
| 618 | // { return this->identifier_->isParentOf(identifier); } |
---|
| 619 | // |
---|
| 620 | // /** @brief Returns true, if the assigned identifier is a direct parent of the given identifier. @param identifier The identifier to compare with */ |
---|
| 621 | // inline bool isDirectParentOf(const Identifier* identifier) const |
---|
| 622 | // { return this->identifier_->isDirectParentOf(identifier); } |
---|
[790] | 623 | |
---|
| 624 | private: |
---|
[1052] | 625 | Identifier* identifier_; //!< The assigned identifier |
---|
[790] | 626 | }; |
---|
| 627 | } |
---|
| 628 | |
---|
| 629 | #endif /* _Identifier_H__ */ |
---|