1 #ifndef __PHGENERICFACTORYT_H__
2 #define __PHGENERICFACTORYT_H__
34 class AbstractProduct,
41 typedef AbstractProduct* (*ProductCreator)();
48 : creator_(), name_() {}
70 AbstractProduct*
create(
const char*
id)
77 typename CreatorMap::const_iterator it =
80 if ( it != fCreators.end() )
83 return (it->second.creator())();
95 void print(std::ostream& os = std::cout)
const
97 typename CreatorMap::const_iterator it;
98 for ( it = fCreators.begin(); it != fCreators.end(); ++it )
100 os <<
"Creator id=" << it->first
101 <<
" for product " << it->second.productname()
109 const char* productname)
111 bool ok = fCreators.insert(
typename CreatorMap::value_type(
id,
ProductCreatorPair(creator,productname))).second;
115 std::cerr <<
"PHGenericFactoryT::registerCreator : registry of creator "
116 <<
"id " <<
id <<
" for product " << productname
117 <<
"failed!" << std::endl;
122 std::cout <<
"PHGenericFactoryT::registerCreator : creator id "
123 <<
id <<
" for product " << productname
124 <<
" registered." << std::endl;
133 return fCreators.erase(
id) == 1;
144 typedef std::map<IdentifierType,ProductCreatorPair> CreatorMap;
145 CreatorMap fCreators;
AbstractProduct * OnUnknownType(const std::string &id)
ProductCreator creator() const
ProductCreatorPair(ProductCreator creator, const char *productname)
std::string productname() const
bool registerCreator(const IdentifierType &id, ProductCreator creator, const char *productname)
Register a creator function for id.
AbstractProduct * create(const char *id)
Create an object identified by the string id.
void print(std::ostream &os=std::cout) const
Print the list of creators we have.
static PHGenericFactoryT< AbstractProduct, FactoryErrorPolicy > & instance()
The factory is a singleton.
AbstractProduct *(* ProductCreator)()
std::string IdentifierType
bool unregisterCreator(const IdentifierType &id)
Unregister a creator.