(Updated: 1999.10.21 10:24:41 PM)
| |
Bridge Pattern is one of the 23
Design Patterns elucidated in the most excellent
Gamma And Helm book, Design Patterns: Elements of Reusable
Object - Oriented Software by Gamma and Helm et al.
ISBN 0201633612
, which is cited below:
Intent: Decouple an abstraction from its implementation so that the two can vary independently. (Also known as
Handle/Body)
Design Pattern Classification: Structural Object
Applicability:
Use the Bridge pattern when:
- you want to avoid a permanent binding between an abstraction and its implementation. This might be the case, for example, when the implementation must be selected or switched at run-time.
- both the abstractions and their implementations should be extensible by subclassing. In this case, the Bridge pattern lets you combine the different abstractions and implementations and extend them independently.
- changes in the implementation of an abstraction should have no impact on clients; that is, their code should not have to be recompiled.
- (C++) you want to hide the implementation of an abstraction completely from clients. In C++ the representation of a class is visible in the class interface.
- you have a proliferation of classes as shown earlier in the first Motivation diagram. Such a class hierarchy indicates the need for splitting an object into two parts. Rumbaugh uses the term "nested generalizations" [RBP+91] to refer to such class hierarchies.
- you want to share an implementation among multiple objects (perhaps using reference counting), and this fact should be hidden from the client. A simple example is Coplien's String class [Cop92], in which multiple objects can share the same string representation (StringRep).
Structure:
Participants:
- Abstraction (Window) -defines the abstraction's interface. maintains a reference to an object of type Implementor.
- RefinedAbstraction (IconWindow) -Extends the interface defined by Abstraction.
- Implementor (WindowImp) -defines the interface for implementation classes. This interface doesn't have to correspond exactly to Abstraction's interface; in fact the two interfaces can be quite different. Typically the Implementor interface provides only primitive operations, and Abstraction defines higher-level operations based on these primitives.
- ConcreteImplementor (XWindowImp, PMWindowImp) -implements the Implementor interface and defines its concrete implementation.
Collaborations:
- Abstraction forwards client requests to its Implementor object.
Consequences:
The Bridge pattern has the following consequences:
1.
Decoupling interface and implementation. An implementation is not bound permanently to an interface. The implementation of an abstraction can be configured at run-time. It's even possible for an object to change its implementation at run-time.
Decoupling Abstraction and Implementor also eliminates compile-time dependencies on the implementation. Changing an implementation class doesn't require recompiling the Abstraction class and its clients. This property is essential when you must ensure binary compatibility between different versions of a class library.
Furthermore, this decoupling encourages layering that can lead to a better-structured system. The high-level part of a system only has to know about Abstraction and Implementor.
2.
Improved extensibility. You can extend the Abstraction and Implementor hierarchies independently.
3.
Hiding implementation details from clients. You can shield clients from implementation details, like the sharing of implementor objects and the accompanying reference count mechanism (if any).
Related Patterns:
An
Abstract Factory can create and configure a particular Bridge.
The
Adapter Pattern is geared toward making unrelated classes work together. It is usually applied to systems after they're designed. Bridge, on the other hand, is used up-front in a design to let abstractions and implementations vary independently.
See article:
http://www.stevenblack.com/PTN-Bridge.asp
See also:
VFP Design Pattern Catalog
Category Design Patterns