Abstract factory pattern |
A software design pattern, the Abstract Factory Pattern provides a way to encapsulate a group of individual Factory method pattern that have a common theme. In normal usage, the client software would create a concrete implementation of the abstract factory and then use the generic interfaces to create the concrete Object (computer science)s that are part of the theme. The client (computing) does not know (nor care) about which concrete objects it gets from each of these internal factories since it uses only the generic interfaces of their products. This pattern separates the details of implementation of a set of objects from its general usage.
An example of this would be an abstract factory class documentCreator that provides interfaces to create a number of products (eg. createLetter() and createResume() ). The system would have any number of derived concrete versions of the documentCreator class like fancyDocumentCreator or modernDocumentCreator , each with a different implementation of createLetter() and createResume() that would create a corresponding object (computer science) like fancyLetter or modernResume . Each of these products is derived from a simple abstract class like Letter or Resume of which the client is aware. The client code would get an appropriate instantiation of the documentCreator and call its factory functions. Each of the resulting objects would be created from the same documentCreator implementation and would share a common theme. (They would all be fancy or modern objects.) The client would need to know how to handle only the abstract Letter or Resume class, not the specific version that it got from the concrete factory.
In software development, a Factory is the location in the code at which object creation. The intent in employing the pattern is to insulate the creation of objects from their usage. This allows for new derived types to be introduced with no change to the code that uses the base object.
Use of this pattern makes it possible to interchange concrete classes without changing the code that uses them, even at Runtime. However, employment of this pattern, as with similar Design pattern (computer science)s, incurs the risk of unnecessary complexity and extra work in the initial writing of code.
= How to use it =
The factory determines the actual concrete type of object (computer science) to be created, and it is here that the object is actually created (in C++, for instance, via the new operator). However, the factory only returns an abstract Pointer (or wrapper class) to the created concrete object.
This insulates client code from object creation by having clients ask a factory object to create an object of the desired abstract type and to return an abstract pointer to the object.
As the factory only returns an abstract pointer, the client code (which requested the object from the factory) does not know - and is not burdened by - the actual concrete type of the object which was just created. In particular, this means:
= Example =
An example in C Sharp programming language
/* * GUIFactory example */ abstract class GUIFactory { public static GUIFactory getFactory() { int sys = readFromConfigFile( OS_TYPE ); if (sys==0) { return(new WinFactory()); } else { return(new OSXFactory()); } } public abstract Button createButton(); } class WinFactory:GUIFactory { public override Button createButton() { return(new WinButton()); } } class OSXFactory:GUIFactory { public override Button createButton() { return(new OSXButton()); } } abstract class Button { public string caption; public abstract void paint(); } class WinButton:Button { public override void paint() { Console.WriteLine( I m a WinButton: +caption); } } class OSXButton:Button { public override void paint() { Console.WriteLine( I m a OSXButton: +caption); } } class Application { static void Main(string[] args) { GUIFactory aFactory = GUIFactory.getFactory(); Button aButton = aFactory.createButton(); aButton.caption = Play ; aButton.paint(); } //output is //I m a WinButton: Play //or //I m a OSXButton: Play }
An example in C plus plus
class Control {}; class PushControl : public Control {};
class Factory { public: static Factory * getFactory(int classKey) { switch(classKey){ // ... conditional logic here: return new ControlFactory(); } } virtual Control * getControl() = 0; }; class ControlFactory : public Factory { public: Control * getControl() { return new PushControl(); } };
NB - this code does not compile on some c++ compilers (eg. gcc, solaris). The Factory::getFactory(string classKey) method attempts to create an object of the derived class ... which the compiler knows nothing about at this point in the compilation.
= See also =
*object creation *concrete class *ClassFactory|
|