Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file: Base.h

class Base;
class DerivedA : public Base;
class DerivedB : public Base;

/*etc...*/

and another file: BaseFactory.h

#include "Base.h"

class BaseFactory
{
public:
  BaseFactory(const string &sClassName){msClassName = sClassName;};

  Base * Create()
  {
    if(msClassName == "DerivedA")
    {
      return new DerivedA();
    }
    else if(msClassName == "DerivedB")
    {
      return new DerivedB();
    }
    else if(/*etc...*/)
    {
      /*etc...*/
    }
  };
private:
  string msClassName;
};

/*etc.*/

Is there a way to somehow convert this string to an actual type (class), so that BaseFactory wouldn't have to know all the possible Derived classes, and have if() for each one of them? Can I produce a class from this string?

I think this can be done in C# through Reflection. Is there something similar in C++?

share|improve this question
its partially possible with C++0x and variadic templates.. – smerlin Jan 16 '10 at 19:02

8 Answers

up vote 83 down vote accepted

Nope, there is none. You have to do the mapping yourself. C++ has no mechanism to create objects whose types are determined at runtime. You can use a map to do that mapping yourself, though:

template<typename T> Base * createInstance() { return new T; }

typedef std::map<std::string, Base*(*)()> map_type;

map_type map;
map["DerivedA"] = &createInstance<DerivedA>;
map["DerivedB"] = &createInstance<DerivedB>;

And then you can do

return map[some_string]();

Getting a new instance. Another idea is to have the types register themself:

// in base.hpp:
template<typename T> Base * createT() { return new T; }

struct BaseFactory {
    typedef std::map<std::string, Base*(*)()> map_type;

    static Base * createInstance(std::string const& s) {
        map_type::iterator it = getMap()->find(s);
        if(it == getMap()->end())
            return 0;
        return it->second();
    }

protected:
    static map_type * getMap() {
        // never delete'ed. (exist until program termination)
        // because we can't guarantee correct destruction order 
        if(!map) { map = new map_type; } 
        return map; 
    }

private:
    static map_type * map;
};

template<typename T>
struct DerivedRegister : BaseFactory { 
    DerivedRegister(std::string const& s) { 
        getMap()->insert(std::make_pair(s, &createT<T>));
    }
};

// in derivedb.hpp
class DerivedB {
    ...;
private:
    static DerivedRegister<DerivedB> reg;
};

// in derivedb.cpp:
DerivedRegister<DerivedB> DerivedB::reg("DerivedB");

You could decide to create a macro for the registration

#define REGISTER_DEC_TYPE(NAME) \
    static DerivedRegister<NAME> reg

#define REGISTER_DEF_TYPE(NAME) \
    DerivedRegister<NAME> NAME::reg(#NAME)

I'm sure there are better names for those two though. Another thing which probably makes sense to use here is shared_ptr.

If you have a set of unrelated types that have no common base-class, you can give the function pointer a return type of boost::variant<A, B, C, D, ...> instead. Like if you have a class Foo, Bar and Baz, it looks like this:

typedef boost::variant<Foo, Bar, Baz> variant_type;
template<typename T> variant_type createInstance() { 
    return variant_type(T()); 
}

typedef std::map<std::string, variant_type (*)()> map_type;

A boost::variant is like an union. It knows which type is stored in it by looking what object was used for initializing or assigning to it. Have a look at its documentation here. Finally, the use of a raw function pointer is also a bit oldish. Modern C++ code should be decoupled from specific functions / types. You may want to look into Boost.Function to look for a better way. It would look like this then (the map):

typedef std::map<std::string, boost::function<variant_type()> > map_type;

std::function will be available in the next version of C++ too, including std::shared_ptr.

share|improve this answer
Loved the idea that the derived classes will register themselves. It's exactly what I was looking for, a way to remove the hard-coded knowledge of which derived classes exist from the factory. – Gal Goldman Feb 25 '09 at 7:50
Originally posted by somedave in another question, this code fails on VS2010 with ambiguous template errors because of make_pair. To fix, change make_pair to std::pair<std::string,Base*()()> and it should fix those errors. I also got some linking errors which were fixed by adding BaseFactory::map_type BaseFactory::map = new map_type(); to base.cpp – Spencer Rose Sep 25 '11 at 1:21
I am having problems implementing this, using Vs2010 and using std::pair instead of make_pair. When compiling i get link errors. Adding my counterpart to static DerivedRegister<DerivedB> reg, static MouseFeatureRegister mouse_reg; compiles fine. but when adding MouseFeatureRegister CvMaskOverlay::mouse_reg("Masking - Polygon"); i do get some link errors. The idea are only for subclasses to register a string in a map with an increasing counter assigned to it. so not using templates – s093294 Nov 28 '11 at 7:50
Great answer, that's exactly what I was looking for. Thx! – Nils Apr 17 '12 at 9:57
1  
How do you ensure that DerivedB::reg is actually initialized? My understanding is that it may not be constructed at all if no function or object defined in the translation unit derivedb.cpp, as per 3.6.2. – musiphil Dec 8 '12 at 5:28

No there isn't. My preferred solution to this problem is to create a dictionary which maps name to creation method. Classes that want to be created like this then register a creation method with the dictionary. This is discussed in some detail in the GoF patterns book.

share|improve this answer

I have answered in another SO question about C++ factories. Please see there if a flexible factory is of interest. I try to describe an old way from ET++ to use macros which has worked great for me.

ET++ was a project to port old MacApp to C++ and X11. In the effort of it Eric Gamma etc started to think about Design Patterns

share|improve this answer

The short answer is you can't. See these SO questions for why:

  1. Why does C++ not have reflection?
  2. How can I add reflection to a C++ application?
share|improve this answer

Meaning reflection as in Java. there is some info here: http://msdn.microsoft.com/en-us/library/y0114hz2(VS.80).aspx

Generally speaking, search google for "c++ reflection"

share|improve this answer
The stuff on the page you refer to is very far from standard c++ – anon Feb 24 '09 at 16:17

I'm trying to work with the Factory pattern presented by Johannes, where classes register themselves with the factory. Unfortunately, I'm having some difficulty being a novice.

    //base.h
    #include <map>
#include <typeinfo>
#include <string>
#include <cstddef>

#define REGISTER_DEC_TYPE(NAME) \
static DerivedRegister<NAME> reg

#define REGISTER_DEF_TYPE(NAME) \
DerivedRegister<NAME> NAME::reg(#NAME)

class Base {

public:
    Base(){};
    ~Base(){};


};

  template<typename T> Base * createT() { return new T; }
struct BaseFactory {
    typedef std::map<std::string, Base*(*)()> map_type;

    static Base * createInstance(std::string const& s) {
        map_type::iterator it = getMap()->find(s);
        if(it == getMap()->end())
            return 0;
        return it->second();
    }

protected:
    static map_type * getMap() {
        // never delete'ed. (exist until program termination)
        // because we can't guarantee correct destruction order 
        if(!map) { map = new map_type; } 
        return map; 
    }

private:
    static map_type * map;
};

template<typename T>
struct DerivedRegister : BaseFactory { 
    DerivedRegister(std::string const& s) { 
        getMap()->insert(std::make_pair(s, &createT<T>));
    }

};

//derivedA.h
#include "base.h"

class derivedA : public Base {
public: 
    derivedA();
    ~derivedA(){};

private:
    REGISTER_DEC_TYPE(derivedA);
};

//derivedA.cxx
#include "derivedA.h"

derivedA::derivedA () : Base()

{


}


REGISTER_DEF_TYPE(derivedA);

//main.cxx
#include "derivedA.h"
int main (int argc, char * const argv[]) {

return 0;
}

I was making progress up until this point and had the first example working nicely when I tried to compile the self registering version and I'm getting an undefined symbol error:

 Undefined symbols:
  "BaseFactory::map", referenced from:
      BaseFactory::getMap()      in derivedA.o
      BaseFactory::getMap()      in derivedA.o
      BaseFactory::getMap()      in derivedA.o

Any ideas on what I'm doing wrong? I'm trying to learn patterns better as I'm obviously pretty weak in this area.

share|improve this answer

This is the factory pattern. See wikipedia (and this example). You cannot create a type per se from a string without some egregious hack. Why do you need this?

share|improve this answer
I need this because I read the strings from a file, and if I have this, then I can have the factory so generic, that it wouldn't have to know anything in order to create the right instance. This is very powerful. – Gal Goldman Feb 24 '09 at 16:14
So, are you saying you won't need different class definitions for a Bus and a Car since they are both Vehicles? However, if you do, adding another line shouldn't really be a problem :) The map approach has the same problem -- you update the map contents. The macro thingy works for trivial classes. – dirkgently Feb 24 '09 at 16:18
I am saying that in order to CREATE a Bus or a Car in my case, I don't need different definitions, otherwise the Factory design pattern would never be in use. My goal was to have the factory as stupid as it can be. But I see here that there's no escape :-) – Gal Goldman Feb 24 '09 at 16:24

Tor Brede Vekterli provides a boost extension that gives exactly the functionality you seek. Currently, it is slightly awkward fitting with current boost libs, but I was able to get it working with 1.48_0 after changing its base namespace.

http://arcticinteractive.com/static/boost/libs/factory/doc/html/factory/factory.html#factory.factory.reference

In answer to those who question why such a thing (as reflection) would be useful for c++ - I use it for interactions between the UI and an engine - the user selects an option in the UI, and the engine takes the UI selection string, and produces an object of the desired type.

The chief benefit of using the framework here (over maintaining a fruit-list somewhere) is that the registering function is in each class's definition (and only requires one line of code calling the registration function per registered class) - as opposed to a file containing the fruit-list, which must be manually added to each time a new class is derived.

I made the factory a static member of my base class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.