Appendixes- C# Design Pattern Essentials (2012)

C# Design Pattern Essentials (2012)

Part VII. Appendixes

This part contains the appendixes, which includes a brief explanation of the Unified Modeling Language (UML) diagram formats for those unfamiliar with UML, and a quick reference for each of the 23 main patterns.

Appendix A. UML Diagrams

This book uses a simplified version of Unified Modeling Language (UML) diagrams to illustrate class hierarchies and usages for the patterns in this book. Each separate class is shown as a bounded rectangle with three horizontal sections, the top section containing the name of the class, the second section any relevant state (i.e. instance variables) and the third section containing the protocol (i.e. methods).

Representing types

Abstract classes, interfaces and abstract methods are shown in italicised text. The following figure shows an example of each sort of type and method:

Figure A.1 : Normal class (left), abstract class (centre), interface (right)

In this book any properties and relevant instance variables will be shown in the "state" section. The "method" section will only show relevant methods and not property getters or setters. Unless specified otherwise, you can assume that all listed methods are public.

Representing inheritance

Inheritance is shown by a line connection between classes, with a hollow triangle pointing to the class being inherited or interfaces being implemented. Solid lines are shown for classes and dashed lines for interface connections:

Figure A.2 : Extending a class (left & centre), implementing an interface (right)

Representing composition and usage

When one class 'uses' another (i.e. holds a reference to it), this is shown by a dashed line with an open arrow pointing toward the class being used. The usage is usually through being an instance variable or by passing a reference to the using object’s constructor or a method, or by instantiating the object being used. In the following diagram each instance of ClassA holds or obtains a reference to an instance of ClassB:

Figure A.3 : ClassA uses ClassB

Code snippets

Where useful, snippets of code will be shown in a grey box attached to a class with a dashed line:

Figure A.4 : Code snippet

'Client' and other grey coloured classes

If a class rectangle is shown in grey this only for aesthetic purposes to separate it from other classes in the diagram. This is most often used in this book for 'client' classes, i.e. classes which make use of a particular pattern, as the following example for the Chain of Responsibility pattern illustrates:

Figure A.5 : Client class in grey

Appendix B. Design Pattern Quick Reference

This appendix provides an alphabetical quick-reference of each of the 23 main design patterns described in this book in their most general form.

Note that many of the patterns make use of abstract classes or interfaces. In most cases these are interchangeable and the choice of which to use depends entirely upon your project requirements. It may also appear that the general form of a particular pattern described in this chapter differs from the detailed example in the main body of this book, but this is just a consequence of the fact that patterns are adaptable to the needs of the situation, and the general form should not be construed as the only or 'correct' approach.

Abstract Factory

Type: Creational

Purpose: Provide an interface for creating families of related or dependent objects without specifying their concrete classes.

Example usage: Commonly used when generating graphical 'widgets' for different look-and-feels.

Consequences: Isolates concrete classes. Enables easy exchange of product families. Promotes consistency among products.

· AbstractFactory defines an interface for methods that create abstract product objects;

· ConcreteFactory1 and ConcreteFactory2 take care of instantiating the appropriate product families (e.g. ConcreteFactory1 creates ProductA1 and ProductB1);

· AbstractProductA and AbstractProductB defines the interface of each different type of product;

Client programs only use the interfaces declared by AbstractFactory and AbstractProductA and AbstractProductB.

Adapter

Type: Structural

Purpose: Convert the interface of a class into another interface clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.

Example usage: Integration of independent and incompatible classes.

Consequences: A single adapter can work with many adaptees.

· ITarget refers to the interface that the client program requires;

· Adapter is the class used by client programs to forward requests to Adaptee;

· Adaptee is the class that needs adapting.

Bridge

Type: Structural

Purpose: Decouple an abstraction from its implementation so that each may vary independently.

Example usage: GUI frameworks and persistence frameworks.

Consequences: An implementation is not permanently bound to an interface, and can be switched at run-time.

· IAbstraction is the abstraction of the interface;

· ConcreteClass implements the IAbstraction interface and holds a reference to IImplementor. It provides an implementation in terms of IImplementor;

· IImplementor is the implementation interface which may be quite different to the IAbstraction interface;

· ConcreteImplementor1 and ConcreteImplementor2 implement the IImplementor interface.

Builder

Type: Creational

Purpose: Separate the construction of a complex object from its representation so that the same construction process can create different representations.

Example usage: Useful when there are several steps needed to create an object.

Consequences: Enables variations of a products internal representation. Isolates construction and representation.

· IBuilder defines an interface for creating parts of a 'product' object;

· ConcreteBuilder creates and assembles the 'product' parts step-by-step and provides a method to retrieve it during or after assembly;

· Director controls the actual assembly process.

Chain of Responsibility

Type: Behavioural

Purpose: Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain until an object handles it.

Example usage: When more than one object can handle a request and the handler is not known in advance.

Consequences: Not every request needs to be handled, or maybe it needs to be handled by more than one handler.

· IHandler defines an interface for handling requests;

· ConcreteHandler1 and ConcreteHandler2 each decide if they can handle the request itself or if it should be passed on to its successor.

Client programs send their requests to the first object in the chain.

Command

Type: Behavioural

Purpose: Encapsulate a request as an object, thereby letting you parameterise clients with different requests, queue or log requests, and support undoable operations.

Example usage: UI controls such as menu items and toolbar buttons. Undo/redo mechanisms.

Consequences: Strive to keep separate the objects that invoke the operation from the object that performs it.

· ICommand is the interface for executing an operation;

· ConcreteCommand performs the operation on the Receiver;

· Invoker asks the command to be carried out;

· Receiver knows how to perform the operations.

Composite

Type: Structural

Purpose: Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly.

Example usage: Graphical component hierarchies, etc.

Consequences: Simple objects can be combined into complex assemblies and all treated through a common interface. Adding new components should be straightforward.

· IComponent is the interface for both leaves and composites;

· LeafComponent defines objects that have no children;

· CompositeComponent defines objects that may have children.

Decorator

Type: Structural

Purpose: Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.

Example usage: GUI toolkits, file and object input/output streams (e.g. buffering).

Consequences: Can be more flexible than direct inheritance and reduce number of classes required.

· IComponent defines the interface for objects that can have responsibilities added to them dynamically;

· ConcreteComponent implements the IComponent interface;

· Decorator maintains a reference to an IComponent object as well as defining an interface that matches that of IComponent;

· AddedStateDecorator and AddedBehaviourDecorator each decorate an IComponent by adding additional instance variables and/or methods.

Facade

Type: Structural

Purpose: 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.

Example usage: To simplify access to several objects through a single 'facade' object.

Consequences: Needs a new class to be created to serve as the 'facade'.

· Facade defines the class that provides the simplified interface to other classes;

· SomeClassA, etc. are various classes, related or not.

Factory Method

Type: Creational

Purpose: Define an interface for creating an object, but let subclasses decide which class to instantiate.

Example usage: When you can't anticipate the specific type of object to be created, or you want to localise the knowledge of which class gets created.

Consequences: Reduces the need for clients to use 'new' to instantiate objects.

· IProduct defines the interface of the product that is to be created;

· ConcreteProduct is an implementation of a particular product;

· Factory declares the factory method that returns a IProduct object;

· ConcreteFactory implements the factory method defined in Factory to return an instance of IProduct.

Flyweight

Type:Structural

Purpose: Use sharing to support large numbers of fine-grained objects efficiently.

Example usage: Text/graphic editors, etc.

Consequences: Saves memory through sharing shared state.

· IFlyweight defines the interface through which flyweight objects can act on extrinsic state;

· ConcreteFlyweight implements IFlyweight and stores intrinsic state. Must be shareable;

· FlyweightFactory creates and manages the flyweight objects through a 'pooling' mechanism.

Client programs maintain references to the flyweights obtained through the factory.

Interpreter

Type: Behavioural

Purpose: Given a language, define a representation for its grammar along with an interpreter that uses the representation to interpret sentences in the language.

Example usage: Simple grammars and mini-language processing.

Consequences: Not suitable for complex grammars and language processing.

· AbstractExpression defines the abstract method to interpret an element;

· TerminalExpression extends AbstractExpression for language elements that terminate an expression;

· NonTerminalExpression extends AbstractExpression for language elements that are just part of an expression;

· Context is the object that is being parsed (e.g. the grammar or language).

Iterator

Type: Behavioural

Purpose: Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation.

Example usage: Wherever a collection or array of objects or values need to be processed in turn.

Consequences: The for-each syntax simplifies usage.

· IIterator defines the interface for the iterator;

· ConcreteIterator implements IIterator to perform the processing of each element in IAggregate;

· IAggregate defines the interface for the collection to be processed;

· ConcreteAggregate implements IAggregate for the actual collection.

Mediator

Type: Behavioural

Purpose: Define an object that encapsulates how a set of objects interact. Mediator promotes loose coupling by keeping objects from referring to each other explicitly, and it lets you vary their interaction independently.

Example usage: Dialogs that control UI components, etc.

Consequences: The Mediator could be defined to use the Observer pattern to monitor the components.

· IMediator defines the interface for communication with IColleague objects;

· ConcreteMediator implements the IMediator interface and performs the communication;

· IColleague defines the interface for a component that needs communication with the IMediator;

· ConcreteColleague1 and ConcreteColleague2 implement the IColleague interface and performs the communication with the IMediator such that it needs no knowledge of any other IColleague.

Memento

Type: Behavioural

Purpose: Without violating encapsulation, capture and externalise an object's internal state so that it can be restored to this state later.

Example usage: Undo & Redo processing, database transactions, etc.

Consequences: Encapsulates the storage of state external to the originating object, but might be expensive in terms of memory or performance.

· Originator creates the Memento object and uses it to restore its state;

· Memento stores the state of Originator;

· Caretaker keeps the memento.

Observer

Type: Behavioural

Purpose: Define a one-to-many dependency between objects so that when one object changes its state, all its dependants are notified and updated automatically.

Example usage: GUI controls, events, etc.

Consequences: Decouples classes through a common interface.

· Observable defines the mechanisms to register observers and notify them of events;

· ConcreteObservable extends Observable for a particular subject class;

· IObserver defines an interface for interested classes;

· ConcreteObserver implements IObserver for a particular interested class.

Prototype

Type: Creational

Purpose: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying the prototype.

Example usage: Where easier or faster to clone than to instantiate.

Consequences: Cloning might become difficult in certain situations.

· IPrototype defines an interface that can 'clone' itself;

· ConcretePrototype performs the self-cloning.

Client programs create new objects by asking a prototype to clone itself.

Proxy

Type: Structural

Purpose: Provide a surrogate or place-holder for another object to control access to it.

Example usage: Netwotk connections, security proxies, etc.

Consequences: Possible descrease in performance.

· ISubject defines the interface that needs to be accessed through a proxy;

· RealSubject defines the actual object which Proxy represents;

· Proxy maintains a reference to RealSubject so it can act on its behalf.

Singleton

Type: Creational

Purpose: Ensure a class allows only one object to be created, providing a single point of access to it.

Example usage: Log files, configuration settings, etc.

Consequences: Often overused, difficult to subclass, can lead to tight coupling.

· Singleton defines a private constructor together with a public class (i.e. static) method as the only means of getting the instance.

Note that this book recommends using an enum to implement the Singleton pattern in most instances.

State

Type: Behavioural

Purpose: Allow an object to alter its behaviour when its internal state changes. The object will appear to change its class.

Example usage: UI shape components, etc.

Consequences: Localises state-specific behaviour and separates behaviour for different states.

· IState defines the interface for handling different states in the Handle() method;

· ConcreteStateA and ConcreteStateB implement the IState interface for each separate state;

· Context holds a reference to an IState object to request a particular state.

Strategy

Type: Behavioural

Purpose: Define a family of algorithms, encapsulate each one, and make them interchangeable. Strategy lets the algorithm vary independently from clients that use it.

Example usage: Need to change algorithms.

Consequences: Might need to pass data to each strategy.

· IStrategy defines the interface for the algorithms;

· ConcreteStrategyA and ConcreteStrategyB implement IStrategy for a particular algorithm;

· Context holds a reference to the IStrategy that is being used.

Template Method

Type: Behavioural

Purpose: Define the skeleton of an algorithm in a method, deferring some steps to subclasses. Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm's structure.

Example usage: When an algorithm's steps can be performed in different ways.

Consequences: Should prevent the template method from being overridden.

· AbstractClass defines the non-overridable TemplateMethod() that invokes a series of abstract methods defined in subclasses;

· Subclass1 and Subclass2 extend AbstractClass to define the code for each abstract method invoked by TemplateMethod().

Visitor

Type: Behavioural

Purpose: Represent a method to be performed on the elements of an object structure. Visitor lets you define a new method without changing the classes of the elements on which it operates.

Example usage: Similar operations need performing on different types in a structure, or as a means to add functionality without extensive modifications.

Consequences: Adding new visitable objects can require modifying visitors.

· IVisitor defines the interface that declares methods to visit each kind of visitable IElement;

· ConcreteVisitor1 and ConcreteVisitor2 implement the IVisitor interface for each element that could be visited;

· IElement defines the interface for all classes which could be visited;

· ConcreteElementA and ConcreteElementB implement the IElement interface for each class that could be visited.

· ObjectStructure contains references to all objects that can be visited, enabling iteration through them.

Appendix C. Bibliography

Beck, Kent. Extreme programming explained; Embrace Change. Reading, MA: Addison-Wesley, 1999.

Bevis, Tony. Java design pattern essentials - second edition. Essex, UK: Ability First Limited, 2012.

Bevis, Tony. Java programming step-by-step. Essex, UK: Ability First Limited, 2012.

Bloch, Joshua. Effective Java: programming language guide. River, NJ: Addison-Wesley, 2001.

Cooper, James W. Java design patterns: a tutorial. Reading, MA: Addison-Wesley, 2000.

Court, Lindsey, et al. Software development with Java. Milton Keynes, The Open University, 2007.

Fowler, Martin, et al. Refactoring: improving the design of existing code. River, NJ: Addison-Wesley, 2000.

Fowler, Martin, and Kendall Scott. UML distilled, second edition: a brief guide to the standard object modeling language. River, NJ: Addison-Wesley, 1999.

Freeman, Eric, et al. Head first design patterns. Sebastopol, CA : O'Reilly, 2004.

Gamma, Erich, et al. Design patterns: elements of reusable object-oriented software. River, NJ: Addison-Wesley, 1995.

Gilbert, Stephen, and Bill McCarty. Object-oriented design in java. Corte Madera, CA: Waite Group Press, 1998.

Laney, Robin, et al. Software engineering with objects. Milton Keynes, The Open University, 2008.

Langr, Jeff. Java style: patterns for implementation. River, NJ: Prentice-Hall PTR, 2000.