Facade


Definition

Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use.

Summary

The Facade pattern provides an interface which shields clients from complex functionality in one or more subsystems. It is a simple pattern that may seem trivial but it is powerful and extremely useful. It is often present in systems that are built around a multi-layer architecture.

The intent if the Facade is provide high-level interface (properties and methods) that makes a subsystem or toolkit easy to use for the client.

On the server, in a multi-layer web application you frequently have a presentation layer which is a client ti a service layer. Communication between these two layers takes place via a well-defined API. This API, or Facade, hides the complexities of the business objects and their interactions from the presentation layer.

Another area Facades are used is in refactoring. Suppose you have a confusing or messy set of legacy objects that the client should not be concerned about. You can hide this code behind a Facade. The Facade exposes only what is necessary and presents a cleaner and easy-to-use interface.

Facade are frequently combined with other design patterns. Facades themselves are often implemented as singleton factories.

Participants

The objects participating in this pattern are:

Facade -- in sample code: Mortgage

  • knows which subsystems are responsible for a request
  • delegates client request to appropriate subsystem objects

Sub Systems -- in sample code: Bank, Credit, Background

  • implements and performs specialized subsystem functionality
  • have no knowledge of or reference to the facade

Sample code in JavaScript

The Mortgage object is the Facade in the sample code. It presents a simple interface to the client with only a single method: applyFor. Eut underneath this simple API lies considerable complexity.

The applicant's name is passed into the Mortgage constructor function. Then the applyFor method is called with the requested loan amount. Internally, this method uses services from 3 separate subsystems that are complex and possibly take some time to process: they are Bank, Credit and Background.

Based on several criteria (bank statements, credit reports and criminal background) the applicant is either accepted or denied for the requested loan.

// Facade
var Mortgage = function(name) {
    this.name = name;
};

// Method
Mortgage.prototype.applyFor = function(amount) {
    // Access multiple subsystems
    var result = 'approved';

    if (!new Bank().verify(this.name, amount) 
        || !new Credit().get(this.name)
        || !new Background().check(this.name)) {

        result = 'denied';
    }

    return this.name + ' has been ' + result + ' for a ' + amount + ' mortgage.';
};

// Sub system 1
var Bank = function() {
    this.verify = function(name, amount) {
        // Complex logic
        return true;
    };
};

// Sub system 2
var Credit = function() {
    this.get = function(name) {
        // Complex logic
        return true;
    }
};

// Sub  system 3
var Background = function() {
    this.check = function(name) {
        // Complex logic
        return true;
    }
};

// Log helper
var log = (function () {
    var log = "";

    return {
        add: function (msg) { log += msg + "\n"; },
        show: function () { console.log(log); log = ""; }
    }
})();

// Client
function run() {
    var mortgage = new Mortgage('Jhon Templeton');

    log.add(mortgage.applyFor('$100,000'));
    log.show();
};

results matching ""

    No results matching ""