Pattern-Oriented Design

Slides:



Advertisements
Similar presentations
Design Patterns CMPS Design Patterns Consider previous solutions to problems similar to any new problem ▫ must have some characteristics in common.
Advertisements

OOP Design Patterns Chapters Design Patterns The main idea behind design patterns is to extract the high level interactions between objects and.
Design Patterns Copyright © Vyacheslav Mukhortov, Nikita Nyanchuk-Tatarskiy, Copyright © INTEKS LLC,
Plab – Tirgul 12 Design Patterns
1 Software Testing and Quality Assurance Lecture 12 - The Testing Perspective (Chapter 2, A Practical Guide to Testing Object-Oriented Software)
INTERPRETER Main Topics What is an Interpreter. Why should we learn about them.
Software Testing and Quality Assurance
Design Patterns Module Name - Object Oriented Modeling By Archana Munnangi S R Kumar Utkarsh Batwal ( ) ( ) ( )
PRESENTED BY SANGEETA MEHTA EECS810 UNIVERSITY OF KANSAS OCTOBER 2008 Design Patterns.
Chapter 26 Applying Gang of Four Design Patterns 1CS6359 Fall 2012 John Cole.
CERN – European Organization for Nuclear Research GS Department – Administrative Information Services Design Patterns in Groovy Nicolas Décrevel Advanced.
1 An introduction to design patterns Based on material produced by John Vlissides and Douglas C. Schmidt.
Object Oriented Software Development
1 Pattern-Oriented Design by Rick Mercer based on the GoF book and Design Patterns Explained A New Perspective on Object-Oriented Design Alan Shalloway,
Design Patterns.
Design Dan Fleck CS 421 George Mason University. What is the design phase? Analysis phase describes what the system should do Analysis has provided a.
Design patterns. What is a design pattern? Christopher Alexander: «The pattern describes a problem which again and again occurs in the work, as well as.
CSSE 374: Introduction to Gang of Four Design Patterns
CS 4240: More Design Patterns Readings: Chap. 9. Let’s Recap Some Ideas and Strategies We’ll assume some design-planning is useful up-front Design with.
Software Engineering 1 Object-oriented Analysis and Design Applying UML and Patterns An Introduction to Object-oriented Analysis and Design and Iterative.
Design Pattern. The Observer Pattern The Observer Pattern defines a one-to-many dependency between objects so that when one object changes state, all.
Patterns in programming 1. What are patterns? “A design pattern is a general, reusable solution to a commonly occurring problem in software. A design.
CS 350 – Software Design The Strategy Pattern – Chapter 9 Changes to software, like other things in life, often focus on the immediate concerns and ignore.
Design Patterns CSCI 5801: Software Engineering. Design Patterns.
CS 210 Adapter Pattern October 19 th, Adapters in real life Page 236 – Head First Design Patterns.
Chapter 8 Object Design Reuse and Patterns. Object Design Object design is the process of adding details to the requirements analysis and making implementation.
Patterns in programming1. 2 What are patterns? Answers to common design problems. A language used by developers –To discuss answers to design problems.
Object Oriented Software Development
ECE450 - Software Engineering II1 ECE450 – Software Engineering II Today: Design Patterns VIII Chain of Responsibility, Strategy, State.
CS 4233 Review Feb February Review2 Outline  Previous Business – My.wpi.edu contains all grades to date for course – Review and contact.
Sadegh Aliakbary. Copyright ©2014 JAVACUP.IRJAVACUP.IR All rights reserved. Redistribution of JAVACUP contents is not prohibited if JAVACUP.
Design Patterns David Talby. This Lecture Re-routing method calls Chain of Responsibility Coding partial algorithms Template Method The Singleton Pattern.
CS 210 Final Review November 28, CS 210 Adapter Pattern.
Design Patterns Software Engineering CS 561. Last Time Introduced design patterns Abstraction-Occurrence General Hierarchy Player-Role.
Design Patterns Introduction
Design Patterns SE464 Derek Rayside images from NetObjectives.com & Wikipedia.
Example to motivate discussion We have two lists (of menu items) one implemented using ArrayList and another using Arrays. How does one work with these.
Proxy Pattern defined The Proxy Pattern provides a surrogate or placeholder for another object to control access to it by creating a representative object.
Watching the movie the hard way…. Page 256 – Head First Design Patterns.
The Decorator Pattern (Structural) ©SoftMoore ConsultingSlide 1.
CS 210 Proxy Pattern Nov 16 th, RMI – A quick review A simple, easy to understand tutorial is located here:
StarBuzz Coffee Recipe Boil some water Brew coffee in boiling water Pour coffee in cup Add sugar and milk Tea Recipe Boil some water Steep tea in boiling.
Five Minute Design Patterns Doug Marttila Forest and the Trees May 30, 2009 Template Factory Singleton Iterator Adapter Façade Observer Command Strategy.
Overview of Creational Patterns ©SoftMoore ConsultingSlide 1.
An object's behavior depends on its current state. Operations have large, multipart conditional statements that depend on the object's state.
CS 350 – Software Design The Decorator Pattern – Chapter 17 In this chapter we expand our e-commerce case study and learn how to use the Decorator Pattern.
CLASSIFICATION OF DESIGN PATTERNS Hladchuk Maksym.
Design Patterns: MORE Examples
Sections Inheritance and Abstract Classes
Design Patterns: Brief Examples
Chapter 10 Design Patterns.
MPCS – Advanced java Programming
Design Patterns Lecture part 2.
Factory Patterns 1.
Chapter 12: Collaboration Diagram - PART2
Introduction to Design Patterns
CS 350 – Software Design The Strategy Pattern – Chapter 9
Chapter Nine The Strategy Pattern
Behavioral Design Patterns
How to be a Good Developer
object oriented Principles of software design
Presented by Igor Ivković
Advanced Programming Behnam Hatami Fall 2017.
Software Engineering Lecture 7 - Design Patterns
Informatics 122 Software Design II
Software Design Lecture : 9.
CS 350 – Software Design Singleton – Chapter 21
Informatics 122 Software Design II
Presented by Igor Ivković
GoF Patterns Ch. 26.
Presentation transcript:

Pattern-Oriented Design CSC 335: Object-Oriented Programming and Design Pattern-Oriented Design by Rick Mercer based on the GoF book and Design Patterns Explained A New Perspective on Object-Oriented Design Alan Shalloway, James R. Trott Addison Wesley ISBN 0-201-71594-5

Using Patterns to Design There are 23 Object-Oriented design patterns cataloged in the GoF book--we’ve considered 10 so far (Fall 09) Iterator, Observer, Strategy, Composite, Singleton, Flyweight, Command, Template, Chain of Responsibility, Decorator We'll use some patterns to help design a system The new case study is in electronic retailing over the internet (An Ecommerce system) Several design decisions will be aided by knowledge of existing design patterns at a fairly high level of abstraction

Plan too much, plan ahead, or don’t plan at all? Development of software systems can suffer from analysis paralysis: attempt to consider all possible changes in the future At other times developers jump to code too quickly there is tremendous pressure to deliver, not maintain Life’s three certainties for software developers Death, Taxes, and Changes in Requirements There is a middle ground for planning for change

How will change occur First, anticipate that changes will occur Consider where they will change, rather than the exact nature of the changes These issues will come up in the Ecommerce case study

What is variable in the design? Consider what is variable in your design Instead of focusing on what might force a change to your design Consider what you might want to change Encapsulate the concept that varies this is a theme of many design patterns Hopefully there are long term benefits without a lot of extra work up front

OO Design Patterns Used In the upcoming case study, these design patterns will help make for a system that is good design Strategy Singleton Decorator Observer We've considered all four

An Ecommerce System There is a TaskController object that handles sales requests over the internet When the sales order is requested, the controller delegates to a SalesOrder object

Assign Responsibilities SalesOrder responsibilities: Allow users to make an order using GUI input Process the order Print a sales receipt

Changing Requirements Start charging taxes on order from customers need to add rules for taxation, but how? modify existing SalesOrder to handle U.S. taxes extend the existing SalesOrder object and modify the tax rules so it applies to the new country This is an inheritance solution

Subclassing Solution +calcTax():double US Tax Rules Canadian Tax Rules TaskController SalesOrder SalesTicketPrinter +calcTax():double US Tax Rules Canadian Tax Rules CanadianSalesOrder +calcTax():double

Favor Composition Over Inheritance Design pattern theme of composition over inheritance is ignored in previous design Here is a different approach consider what is variable in the design encapsulate the concept the varies Accept the fact that tax rules vary country to country and state to state and county to county, and sometimes city to city (like in Arizona) and they change

Alternate Designs Or use an abstract class with an abstract double calcTax() and many classes in a hierarchy Or design an interface to be implemented by different classes using different algorithms Then have SalesOrder contain a reference to the correct object (composition over inheritance) public interface TaxCalculator { // A Salable object knows price and how it is taxed public double taxAmount(Salable itemSold, double quantity); }

A Better Design with Strategy

Why does Strategy make this design better? Better Cohesion (hangs together) sales tax details are in its own class Easy to add tax rules from different countries Easier to shift responsibilities In the first design where CanadianSalesOrder extends USSalesOrder, only TaskController is able to determine which type of sales order to use With Strategy, either TaskController or SalesOrder could set the TaxCalculator

Determine What Varies What Varies? The business rules for taxation Current design handles variations at least as well as the other design design Current design will handle future variations as well A family of tax calculation algorithms have been encapsulated as objects, they are interchangeable, Strategy pattern applied in an Ecommerce system

Using the Strategy Pattern What happens when EnglishTaxer is added In England, old-age pensioners are not required to pay taxes on sales items How can this be handled? 1) Pass age of the Customer to TaxCalculator object 2) Be more general and pass a Customer object 3) Be even more general and pass a reference to the SalesOrder object (this) to the TaxCalculator and let that EnglishStrategy object ask SalesOrder for customer age (post some html to the client)

Is this change bad? To handle this new requirement, SalesOrder and TaxCalculator have to be modified But the change is small and certainly doable Not likely to cause a new problem If a Strategy needs more information, pass the information to the object as an argument Some objects may ignore the extra parameter Strategy can be applied anywhere you hear this "At different times, different rules apply"

Singleton Pattern Singleton Ensure a class only has one instance and provide a global point of access to it The singleton pattern works by having a special method that is used to instantiate the object when called, the method checks to see if the object has already been instantiated it returns the singleton if instantiated or constructs a new one if this is the first call to get the instance to guarantee this, have a private constructor

Using Singleton TaxCalculators are currently encapsulated as Strategy objects How many USTaxer objects are required in this system? How many CanadianTaxers? Forces: The same object is being used over and over again More efficient to avoid instantiating them and throwing them away again and again Doing all at once could be slow to start up Could instantiate these objects as needed

Only want one when needed Don’t need more than one instance of each TaxCalculator class Solution: Let Strategy objects handle the instantiation Let there be only one instance Don’t concern clients (SalesOrder) over this detail In other words, use the Singleton design pattern

USTaxer is now a Singleton public class USTaxer implements TaxCalculator { private static USTaxer instance; // Only one private static double taxRate; private USTaxer() { taxRate = 0.06; // greatly simplified } public static USTaxer getInstance() { if (instance == null) instance = new USTaxer(); return instance; public double taxAmount(Salable item, double quan) { return 0; // TODO: Implement tax algorithm

aggregation (Salable is one part of SalesOrder) dependency aggregation (Salable is one part of SalesOrder) composition implements

Aggregation vs. Composition Definitions from the Unified Modeling Language Guide Aggregation A special form of association that specifies a whole/part relationship between the aggregate (the whole) and a component (the part) When a class has an instance variable Composition A form of aggregation with strong ownership. Once a component is created, its lives and dies with its whole A TaxCalculator object is only necessary with a SalesOrder not used elsewhere

Other Patterns applied In the Ecommerce system, we will now “Decorate” a SalesTicket and “Observe” a Customer

Decorate SalesTicketPrinter Assume the SalesTicketPrinter currently creates an html sales receipt Airline Ticket New Requirement: Add header with company name, add footer that is an advertisement, during the holidays add holiday relevant header(s) and footer(s), we’re not sure how many One solution Place control in SalesTicketPrinter Then you need flags to control what header(s) get printed

underline indicates static methods One Solution This works well if there are few header and footer options or perhaps just add a few private helper methods underline indicates static methods

Strategy Pattern? If there are many types of headers and footers, with only one being printed each time, use Strategy If there are more than one header and footer, and the ordering changes, and the number of combinations grows, use the Decorator design pattern to chain together the desired functionality in the correct order needed

Decorator Again Decorator summary repeated Attach additional Responsibilities to an object dynamically GoF book states: Decorators provide a flexible alternative to subclassing for functionality Start chain with decorators, end with original object Decorator 1 Decorator 2 Concrete Component Example: keyboard = new BufferedReader( new InputStreamReader( System.in));

A Simple SalesTicket abstract class Component { abstract public void printTicket(); } // Instances of this class are sales tickets // that may be decorated class SalesTicket extends Component { @Override public void printTicket() { // Hard coded here, but simpler than // adding a new Customer class . . . System.out.println("Customer: Kim"); System.out.println("The sales ticket itself"); System.out.println("Total: $123.45");

TicketDecorator abstract class TicketDecorator extends Component { private Component myComponent; public TicketDecorator() { myComponent = null; } public TicketDecorator(Component c) { myComponent = c; @Override public void printTicket() { if (myComponent != null) myComponent.printTicket();

A Header Decorator class HeaderDecorator1 extends TicketDecorator { public HeaderDecorator1(Component c) { super(c); } @Override public void printTicket() { this.printHeader(); super.printTicket(); public void printHeader() { System.out.println("@@ Header One @@");

A Footer Decorator class FooterDecorator1 extends TicketDecorator { public FooterDecorator1(Component c) { super(c); } @Override public void printTicket() { super.printTicket(); this.printFooter(); public void printFooter() { System.out.println("%% FOOTER one %%");

A Client public class Client { public static void main(String[] args) { Component myST = Configuration.getSalesTicket(); myST.printTicket(); }

Simple Configuration // This method determines how to decorate SalesTicket class Configuration { public static Component getSalesTicket() { // Return a decorated SalesTicket return new HeaderDecorator1( new HeaderDecorator2( new FooterDecorator2( new FooterDecorator1( new SalesTicket() ) ; }

Output with Current Configuration @@ Header One @@ >> Header Two << Customer: Bob The sales ticket itself Total: $123.45 %% FOOTER one %% ## FOOTER two ##

SalesOrder delegates to Component to print ticket The system on 2 slides

Observe Customer New Requirements: Send an email to a new customer and verify the customer's address with the post office If this was it, hard code Customer behavior when being added to data base

Or Use Observer With additional behaviors (such as send advertisements via snail mail), there may be a changing list of objects that need notification that a new customer is being added These objects will have different interfaces SendEmail, SendCouponsViaSnailMail, SellPrivateInformationToTelemarketers, .... Next up: change two objects into "Observers"

Observer Have Customer extend Observable Have all of the objects that need notification implement Observer (all have the update method) Have some configurer add the correct observers to the Customer object with addObservers Have the addCustomer method send the message notifyObservers

Design with Observer gatherCoupons()