28
Structural Pattern Dr. Himanshu Hora SRMS College of Engineering & Technology Bareilly (UP) INDIA 02/19/22 Structural Pattern 1

Structural patterns

Embed Size (px)

Citation preview

Structural PatternDr. Himanshu Hora

SRMS College of Engineering & TechnologyBareilly (UP) INDIA

05/01/23Structural Pattern

1

Content

• History of Design Pattern• Definitions of Design Pattern• Types of Pattern• Adapter • Bridge• Composite• Decorator • Facade• Flyweight• Proxy • Benefits and Possible problems05/01/23 Structural Pattern 2

History of Design Pattern

• In 1994, Design Patterns: Elements of Reusable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides explained the usefulness of patterns and resulted in the widespread popularity of design patterns.

• These four authors together are referred to as the Gang of Four (GoF).

05/01/23 Structural Pattern 3

Definitions of Design Pattern

• Design patterns are recurring solutions to software design

problems you find again and again in real-world application development

OR• Design patterns represent solutions to problems that arise

when developing software within a particular contextOR

• Design patterns are standard solutions to common problems in software design

05/01/23 Structural Pattern 4

Types of Pattern

There are 3 types of pattern

• Creational: address problems of creating an object in a flexible way. Separate creation, from operation/use.

• Structural: address problems of using O-O constructs like inheritance to organize classes and objects

• Behavioral: address problems of assigning responsibilities to classes. Suggest both static relationships and patterns of communication (use cases)

05/01/23 Structural Pattern 5

Types of Pattern

Creational Patterns (concerned with abstracting the object-instantiation process)• Factory Method Abstract Factory Singleton• Builder PrototypeStructural Patterns

(concerned with how objects/classes can be combined to form larger structures)• Adapter Bridge Composite• Decorator Facade Flyweight• ProxyBehavioral Patterns

(concerned with communication between objects)• Command Interpreter Iterator• Mediator Observer State• Strategy Chain of Responsibility Visitor• Template Method

05/01/23 Structural Pattern 6

Adapter

• Convert the interface of a class into another interface clients expect

• Adapter lets classes work together that couldn't otherwise because of incompatible interfaces

• Use the Adapter pattern when:– you want to use an existing class and its interface does not

match the one you need – you need to use several existing subclasses, but it's

impractical to adapt their interface by subclassing everyone. An object adapter can adapt the interface of its parent class

05/01/23 Structural Pattern 7

Adapter

05/01/23 Structural Pattern 8

Bridge

• Decouple an abstraction from its implementation so that the two can vary independently

• Use the Bridge pattern when: – you want run-time binding of the implementation – you want to share an implementation among multiple

objects

05/01/23 Structural Pattern 9

Bridge

05/01/23 Structural Pattern 10

Composite

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

• Use this pattern whenever you have "composites that contain components, each of which could be a composite".

05/01/23 Structural Pattern 11

Composite

05/01/23 Structural Pattern 12

Decorator

• Attach additional responsibilities to an object dynamically

• Decorators provide a flexible alternative to subclassing for extending functionality

05/01/23 Structural Pattern 13

Problems

• Several classes with a similar operation (method), but different behavior.

• We want to use many combinations of these behaviors

05/01/23 Structural Pattern 14

Example - Automated Hospital

• People come to the reception with problems

• They describe their problems

• A special doctoRobot is created that is specialized to treat their special situations.

05/01/23 Structural Pattern 15

Automated Hospital - Solution 1

DoctoRobot

Cure (p : Patient)

DentistRobot

Cure (p : Patient)

DermaRobot

Cure (p : Patient)

PsychoRobot

Cure (p : Patient)

DentistDermaRobot DentistPsychoRobot DermaPsychoRobot

05/01/23 Structural Pattern 16

Problems with solution-1

• Sometimes we don’t have multiple inheritance.

• Even if we have, if is problematic, and bad design.

05/01/23 Structural Pattern 17

A Better idea: Use Decorator

ConcreteComponent

Operation( )

ConcreteDecoratorAaddedState

Operation( )

ConcreteDecoratorB

Operation( )

Decorator

Operation( )

Component

Operation( )

component

05/01/23 Structural Pattern 18

Decorator in our case

DentistRobot

Cure (p : Patient)

DermaRobot

Cure (p : Patient)

PhsychoRobot

Cure (p : Patient)

DoctorRobotDecoratorinnerDoctor

Cure (p : Patient)

DoctoRobot

Cure (p : Patient)

component

05/01/23 Structural Pattern 19

Facade

• 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 • Create a class that is the interface to the subsystem• Clients interface with the Facade class to deal with the

subsystem • It hides the implementation of the subsystem from clients• It promotes weak coupling between the subsystems and its

clients • It does not prevent clients from using subsystems class, should

it?

05/01/23 Structural Pattern 20

Facade

05/01/23 Structural Pattern 21

Flyweight

• Use sharing to support large numbers of fine-grained objects efficiently

• The pattern can be used when:– The program uses a large number of objects and– The program does not use object identity (==)

05/01/23 Structural Pattern 22

Flyweight

05/01/23 Structural Pattern 23

Proxy

• Provide a surrogate or placeholder for another object to control access to it.

• The proxy has the same interface as the original object• Virtual Proxy:

– Creates/accesses expensive objects on demand – You may wish to delay creating an expensive object until it

is really accessed – It may be too expensive to keep entire state of the object in

memory at one time

05/01/23 Structural Pattern 24

• Protection Proxy– Provides different objects different level of access to

original object

• Cache Proxy (Server Proxy)– Multiple local clients can share results from expensive

operations: remote accesses or long computations

• Firewall Proxy– Protect local clients from outside world

05/01/23 Structural Pattern 25

Proxy

05/01/23 Structural Pattern 26

Benefits• Flexible• Don’t have to foresee all combinations• Little objects

Possible problems• Performance• Decorators are not necessarily always cummutative

(surgeon and Anastasiolic)

05/01/23 Structural Pattern 27

Thank You

05/01/23 Structural Pattern 28

Dr. Himanshu HoraSRMS College of Engineering & Technology

Bareilly (UP) INDIA