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

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, ...?

share|improve this question

3 Answers

up vote 1 down vote accepted

A lot of "what, why, how..." you can find here:

1 Agile Software Development, Principles, Patterns, and Practices
2 Clean Code: A Handbook of Agile Software Craftsmanship

first book has examples written in Java, but if I'm not wrong there is also edition dedicated to c#.
I think what you are asking about is related to Object-oriented analysis and design, so you can look for books about it (Robert Martin covered them in books mentioned above). Head First Object-Oriented Analysis and Design - this one should be easy to read (but again, code examples inside are written in java)

Also I didn't read, but it should be valuable (just saw on that wiki page): Analysis Patterns: Reusable Object Models

share|improve this answer
Very good references, Thanks. – Patrick Jan 19 '11 at 8:13

I usually pass a factory only when the client actually has to create objects, and just passing a reference to an existing object would not do. That is usually because the creation depends on parameters that are only known to the client. So, in your example it would be overkill.

share|improve this answer

If you only need a single object implementing a specific interface, go with the simplest approach of injecting just that object.

If, however, you need multiple objects of the same kind, or a family of interrelated objects (such as various widgets in a GUI framework), it is probably better to inject the factory which can then create the desired objects.

The bottom line is: patterns are only useful if they solve your problems, making the code simpler and easier to extend/maintain. However, patterns themselves have a price: they do complicate the code to some extent. Stuffing patterns into the code just because it is so nice to enumerate how many patterns one has used is counterproductive in the long run (I believe that most pattern users, including myself, have been there and done that - but it is good to get over that initial "infatuation" phase as quickly as possible :-).

Strive for the simplest approach which could possibly work - often you don't even need any famous pattern, where a simpler approach can do the job as well :-)

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.