Coming from a pure C background, I gradually started using C++ in the late nineties, and also started to use design patterns a bit later.
Although I frequently use design patterns like observer, proxy, decorator, ... I still seem to struggle with the factory concept. Until now I didn't use the factory pattern a lot, but some my colleagues start to use them more and more, especially to obtain a certain degree of separation between modules (think: dependency injection). Let me give some examples to clarify this:
Suppose we have a module that handles files, and needs to be told what to do when a file is missing (besides tons of other configuration options). What I would do is to make a configuration class and pass this to the module, something like this:
ConfigurationClass conf;
conf.handleMissingFile = ConfigurationClass::SHOW_MESSAGEBOX;
FileHandlingModule module;
module.handleFile("abc.txt",conf);
Some of my colleagues go one step further, and instead of passing the configuration class, they pass an implementation of an interface, like this:
class MyConfigurationClass : public IConfigurationClass
{
public:
virtual IConfigurationClass::HandleMissingFileEnum getHandleMissingFile() const {return IConfigurationClass::SHOW_MESSAGEBOX);}
...
};
MyConfigurationClass conf;
FileHandlingModule module;
module.handleFile("abc.txt",conf);
Other colleagues go even one step further, and don't pass an implementation of the configuration interface, but pass a factory that can create the implementation of the configuration interface, like this:
class MyConfigurationFactory : public IConfigurationFactory
{
public:
virtual IConfigurationClass *create() const {return new MyConfigurationClass();}
};
MyConfigurationFactory fac;
FileHandlingModule module;
module.handleFile("abc.txt",fac);
Notice this is not the actual code, but just some examples to clarify my point, so don't start to shoot on these specific examples.
I don't seem to get a grip on when to use which approach. The factory approach seems to be to much overkill in this case, although it allows the flexibility to return other configurations at run time using the same factory. (please no references to Joel's splendid article about factory factory factories, http://discuss.joelonsoftware.com/default.asp?joel.3.219431.12).
My question is: are there any guidelines (or common sense rules, or books, ...) on when to pass class instances to other modules, when to pass interface implementations, when to pass factories, ...?
