The facade pattern (also spelled as façade) is a software-design pattern commonly used with object-oriented programming. The name is an analogy to an architectural façade.
A facade is an object that provides a simplified interface to a larger body of code, such as a class library. A facade can:
- make a software library easier to use, understand, and test, since the facade has convenient methods for common tasks
- make the library more readable, for the same reason
- reduce dependencies of outside code on the inner workings of a library, since most code uses the facade, thus allowing more flexibility in developing the system
- wrap a, subjectively, poorly-designed collection of APIs with a single well-designed API
Implementors often use the facade design pattern when a system is very complex or difficult to understand because the system has a large number of interdependent classes or because its source code is unavailable. This pattern hides the complexities of the larger system and provides a simpler interface to the client. It typically involves a single wrapper class that contains a set of members required by the client. These members access the system on behalf of the facade client and hide the implementation details.
Video Facade pattern
Overview
The Facade design pattern is one of the twenty-three well-known GoF design patterns that describe how to solve recurring design problems to design flexible and reusable object-oriented software, that is, objects that are easier to implement, change, test, and reuse.
What problems can the Facade design pattern solve?
- To make a complex subsystem easier to use, a simple interface should be provided for a set of interfaces in the subsystem.
- The dependencies on a subsystem should be minimized.
Clients that access a complex subsystem directly refer to (depend on) many different objects having different interfaces (tight coupling), which makes the clients hard to implement, change, test, and reuse.
What solution does the Facade design pattern describe?
Define a Facade
object that
- implements a simple interface in terms of (by delegating to) the interfaces in the subsystem and
- may perform additional functionality before/after forwarding a request.
This enables to work through a Facade
object to minimize the dependencies on a subsystem.
See also the UML class and sequence diagram below.
Maps Facade pattern
Usage
A Facade is used when an easier or simpler interface to an underlying object is desired. Alternatively, an adapter can be used when the wrapper must respect a particular interface and must support polymorphic behavior. A decorator makes it possible to add or alter behavior of an interface at run-time.
The facade pattern is typically used when
- a simple interface is required to access a complex system,
- a system is very complex or difficult to understand,
- an entry point is needed to each level of layered software, or
- the abstractions and implementations of a subsystem are tightly coupled.
Structure
UML class and sequence diagram
In the above UML class diagram, the Client
class doesn't access the subsystem classes directly. Instead, the Client
works through a Facade
class that implements a simple interface in terms of (by delegating to) the subsystem classes (Class1
, Class2
, and Class3
). The Client
depends only on the simple Facade
interface and is independent of the complex subsystem.
The sequence diagram shows the run-time interactions: The Client
object works through a Facade
object that delegates the request to the Class1
, Class2
, and Class3
instances that perform the request.
UML class diagram
- Facade
- The facade class abstracts Packages 1, 2, and 3 from the rest of the application.
- Clients
- The objects are using the Facade Pattern to access resources from the Packages.
Example
This is an abstract example of how a client ("you") interacts with a facade (the "computer") to a complex system (internal computer parts, like CPU and HardDrive).
C#
Implementation
Sample code
Java
Ruby
PHP
Python
Output:
PowerShell
Output:
References
External links
- Description from the Portland Pattern Repository
Source of the article : Wikipedia