Introduction
In this tip, I will discuss what an adapter design pattern is with an example from our daily life.
In my early days of programming, I always used to find design patterns as a dangerous subject that always used to haunt me in team meetings and training. Because the example taken to describe these patterns were often language oriented and complex, I always thought if I could get an example as simple that a layman can understand it. So today, I will try and explain what an Adapter patterns is and how simple it is to understand that.
Using the Code
An adapter pattern converts the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.
It comprises three components:
Target
: This is the interface with which the client interacts. Adaptee
: This is the interface the client wants to interact with, but can’t interact without the help of the Adapter
. Adapter
: This is derived from Target and contains the object of Adaptee
.
When I shifted from India to London, I took along many of my electrical appliances with me. But there was one problem using them, the pin shape. In India, all the appliances have round pins whereas in London they are flat pinned. Now how do we overcome this problem as I was not ready to buy new plugs. So the adapter came to my rescue (and saved lots of pounds!!!)
I got hold of an adapter plug which has round pins as input and the other end with flat pins (India to UK adapters). This is how I used them with the adapter pattern.
Class description:
<AbstractPlug>
: Abstract Target class <Plug>
: Concrete Target class <AbstractSwitchBoard>
: Abstract Adaptee class <SwitchBoard>
: Concrete Adaptee class <Adapter>
: Adapter class, our saviour
class AbstractPlug {
public:
void virtual RoundPin(){}
void virtual PinCount(){}
};
class Plug : public AbstractPlug {
public:
void RoundPin() {
cout << " I am Round Pin" << endl;
}
void PinCount() {
cout << " I have two pins" << endl;
}
};
class AbstractSwitchBoard {
public:
void virtual FlatPin() {}
void virtual PinCount() {}
};
class SwitchBoard : public AbstractSwitchBoard {
public:
void FlatPin() {
cout << " Flat Pin" << endl;
}
void PinCount() {
cout << " I have three pins" << endl;
}
};
class Adapter : public AbstractPlug {
public:
AbstractSwitchBoard *T;
Adapter(AbstractSwitchBoard *TT) {
T = TT;
}
void RoundPin() {
T->FlatPin();
}
void PinCount() {
T->PinCount();
}
};
void _tmain(int argc, _TCHAR* argv[])
{
SwitchBoard *mySwitchBoard = new SwitchBoard; AbstractPlug *adapter = new Adapter(mySwitchBoard);
adapter->RoundPin();
adapter->PinCount();
}
Points of Interest
Whenever I try to write a blog, I always think how easy and interesting I can make an article so that you never forget its concept and can make other people understand it with a simple example! I hope to do that here as well.
History
- 20th May, 2013: First version