| 31 | 
  | 
 */ | 
| 32 | 
  | 
#ifndef UTIL_GENERICFACTORY_HPP | 
| 33 | 
  | 
#define UTIL_GENERICFACTORY_HPP | 
| 34 | 
+ | 
#include <cassert> | 
| 35 | 
  | 
#include <map> | 
| 36 | 
  | 
#include <string> | 
| 37 | 
  | 
#include <vector> | 
| 48 | 
  | 
 * @param Creator  the callable entity that creates objects. This type must support operator(), | 
| 49 | 
  | 
 * taking no parameters and returning a pointer to Object. Default type is function pointer. | 
| 50 | 
  | 
 * | 
| 51 | 
+ | 
 * Usage: | 
| 52 | 
  | 
 * @code | 
| 53 | 
  | 
 * //Shape class | 
| 54 | 
  | 
 * class Shape { | 
| 69 | 
  | 
 * } | 
| 70 | 
  | 
 * | 
| 71 | 
  | 
 * //register createLine | 
| 72 | 
< | 
 * ShapeFactory::getInstance()->registerCreator("Line", createLine); | 
| 72 | 
> | 
 * //note: must put ShapeFactory::getInstance()->registerCreator("Line", createLine) on the right | 
| 73 | 
> | 
 * //hand side, otherwise the compiler will consider it as a function declaration | 
| 74 | 
> | 
 * const bool registeredLine = ShapeFactory::getInstance()->registerCreator("Line", createLine); | 
| 75 | 
  | 
 * | 
| 76 | 
  | 
 * //Circle class | 
| 77 | 
  | 
 * class Circle : public Shape{ | 
| 84 | 
  | 
 * } | 
| 85 | 
  | 
 * | 
| 86 | 
  | 
 * //register createCircle | 
| 87 | 
< | 
 * ShapeFactory::getInstance()->registerCreator("Circle", createCircle);  | 
| 87 | 
> | 
 * const bool registeredCircle = ShapeFactory::getInstance()->registerCreator("Circle", createCircle);  | 
| 88 | 
  | 
 * | 
| 89 | 
  | 
 * //create object by ident | 
| 90 | 
  | 
 * Line* line = ShapeFactory::getInstance()->createObject("Line"); | 
| 91 | 
  | 
 * Circle* circle = ShapeFactory::getInstance()->createObject("Circle");  | 
| 92 | 
  | 
 * @endcode | 
| 93 | 
+ | 
 * | 
| 94 | 
+ | 
 * Or the user can use predefined macro DECLARE_CREATOR and REGISTER_CREATOR | 
| 95 | 
+ | 
 * @code | 
| 96 | 
+ | 
 * //Shape class | 
| 97 | 
+ | 
 * class Shape { | 
| 98 | 
+ | 
 * ... | 
| 99 | 
+ | 
 * }; | 
| 100 | 
+ | 
 *  | 
| 101 | 
+ | 
 * //instantiating a new object factory | 
| 102 | 
+ | 
 * typedef GenericFactory<Shape> ShapeFactory; | 
| 103 | 
+ | 
 * | 
| 104 | 
+ | 
 * //Line class | 
| 105 | 
+ | 
 * class Line : public Shape{ | 
| 106 | 
+ | 
 * ... | 
| 107 | 
+ | 
 * }; | 
| 108 | 
+ | 
 * | 
| 109 | 
+ | 
 * //declare function using macro  | 
| 110 | 
+ | 
 * DECLARE_CREATOR(Shape, Line) | 
| 111 | 
+ | 
 *  | 
| 112 | 
+ | 
 * //register using macro | 
| 113 | 
+ | 
 * REGISTER_CREATOR(ShapeFactory, "Line", Line); | 
| 114 | 
+ | 
  | 
| 115 | 
+ | 
 * //Circle class | 
| 116 | 
+ | 
 * class Circle : public Shape{ | 
| 117 | 
+ | 
 * ... | 
| 118 | 
+ | 
 * }; | 
| 119 | 
+ | 
 * | 
| 120 | 
+ | 
 * //declare function using macro  | 
| 121 | 
+ | 
 * DECLARE_CREATOR(Shape, Circle) | 
| 122 | 
+ | 
 *  | 
| 123 | 
+ | 
 * //register using macro | 
| 124 | 
+ | 
 * REGISTER_CREATOR(ShapeFactory, "Circle", Circle); | 
| 125 | 
+ | 
 * @endcode | 
| 126 | 
  | 
 */ | 
| 127 | 
  | 
template<class Object, typename IdentType = std::string, typename Creator = Object* (*)()> | 
| 128 | 
  | 
class GenericFactory { | 
| 172 | 
  | 
        Object* createObject(const IdentType& id) { | 
| 173 | 
  | 
            typename CreatorMapType::iterator i = creatorMap_.find(id); | 
| 174 | 
  | 
            if (i != creatorMap_.end()) { | 
| 175 | 
+ | 
                //invoke functor to create object | 
| 176 | 
  | 
                return (i->second)(); | 
| 177 | 
  | 
            } else { | 
| 178 | 
  | 
                return NULL; | 
| 199 | 
  | 
        CreatorMapType creatorMap_; | 
| 200 | 
  | 
}; | 
| 201 | 
  | 
 | 
| 202 | 
< | 
/** write out all of the type identifier to a output stream */ | 
| 202 | 
> | 
/** write out all of the type identifiers to an output stream */ | 
| 203 | 
  | 
template<typename O, typename I, typename C> | 
| 204 | 
  | 
std::ostream& operator <<(std::ostream& o, GenericFactory<O, I, C>& factory) { | 
| 205 | 
  | 
    std::vector<I> idents; | 
| 219 | 
  | 
template<class Object, typename IdentType,typename Creator> | 
| 220 | 
  | 
GenericFactory<Object,IdentType,Creator>* GenericFactory<Object,IdentType,Creator>::instance_ ;  | 
| 221 | 
  | 
 | 
| 222 | 
+ | 
 | 
| 223 | 
  | 
#define DECLARE_CREATOR(abstractObject, concreteObject) \ | 
| 224 | 
< | 
    abstractObject* create##concreteObject(){\ | 
| 224 | 
> | 
    inline abstractObject* create##concreteObject(){\ | 
| 225 | 
  | 
        return new concreteObject;\ | 
| 226 | 
  | 
    } | 
| 227 | 
  | 
 | 
| 228 | 
+ | 
#define REGISTER_CREATOR(factory, ident, concreteObject) \ | 
| 229 | 
+ | 
        const bool registered##concreteObject = factory::getInstance()->registerCreator(ident, create##concreteObject);  | 
| 230 | 
+ | 
 | 
| 231 | 
+ | 
 | 
| 232 | 
  | 
}//namespace oopse | 
| 233 | 
  | 
#endif //UTIL_GENERICFACTORY_HPP | 
| 234 | 
  | 
 |