SlideShare ist ein Scribd-Unternehmen logo
1 von 32
GRASP
General Responsibility Assignment Software Patterns

author: Yuriy Shapovalov (Yurii_Shapovalov@epam.com)
Where it came from?
• GRASP like a term and principles firstly was described at Craig
Larman’s book “Applying UML and Patterns”

GRASP stands for:
• General
• Responsibility

• Assignment
• Software
• Patterns (Principles)
Nine Patterns
• Creator
• Informational Expert
• Controller
• Low Coupling
• High Cohesion
• Polymorphism
• Pure Fabrication
• Indirection
• Protected Variation
Differences from GoF and SOLID
• Patterns of assigning responsibilities (RDD)
• GRASP declares more common principles responsibility
separation, when GoF describe more specific and complex
design patterns.

• SOLID – more common OOP principles less oriented on
responsibility segregation
• GRASP somewhere between GoF patterns and SOLID principles.
Representation in Sequence Diagram (UML)
• Relationship between methods and responsibilities.
• Assuming that Sale objects are responsible to create Payment
objects
:Sale

makePayment(cashTendered)
create(cashTendered)

Confidential

:Payment

5
Responsibility-Driven Design
• “doing” responsibilities
– Doing something itself, such as creation an object or doing a
calculation.

– Initiating action in other objects
– Controlling and coordinating activities in other objects.

• “knowing” responsibilities
– Knowing about encapsulated data.
– Knowing about related objects.

– Knowing about things it can derive or calculate.
Informational Expert
Problem: Which class possesses information about object A?
More common question: What is a general principle of assigning
responsibilities to objects?
Assign the responsibility to the class that knows the necessary
information for performing required action and fulfill the
responsibility.
Informational Expert
Tell, Don’t Ask.
“Procedural code gets information then, makes decisions. Objectoriented code tells object to do things” © Alec Sharp
Informational Expert

A

B

C

D

GetDataX()
GetDataY()
GetDataZ()

return Z
return Y
return X
DO
Informational Expert

A

B

C

D

DoAction()
DoAction(X)
DoAction(Y)

DO
Creator
Problem: Who should be responsible for creating object A?
In general, a class B should be responsible for creating instances of
class A if one, or preferably more, of the following apply:
• Instances of B contain or compositely aggregate instances of A
• Instances of B record instances of A

• Instances of B closely use instances of A
• Instances of B have the initializing information for instances of A
and pass it on creation.
Creator
• The goal is to define creator-object, which will be related to all
created objects.
64
Board

create

Square

Board

create

Square
Creator
In case of complex creation login, based on some external
cases, make sense to use Factory pattern, and delegate creation
responsibility to auxiliary class.
• Related patterns: Concrete Factory and Abstract Factory
Low Coupling
• Problem: How to reduce design change impact, support low
dependency and increase reuse?

Coupling is the degree, defines how tightly one component linked
to other components, or how much information it knows about
other components.
• A change in one module usually forces a ripple effect of changes in other
modules.
• Assembly of modules might require more effort and/or time due to the
increased inter-module dependency.

• A particular module might be harder to reuse and/or test because
dependent modules must be included.
Tightly Coupled Application

Confidential

15
Low Coupling
• Assign a responsibility so that coupling remains low.
Low Coupling is an evaluative pattern, which dictates how to
assign responsibilities to support:
• lower dependency between the classes,
• change in one class having lower impact on other classes,

• higher reuse potential.

http://en.wikipedia.org/wiki/Coupling_(computer_science)#Module_coupling
High Cohesion
• Problem: How to keep objects
focused, understandable, manageable, and support low
coupling?
Cohesion is a measure of how strongly related or focused the
responsibilities of a single module are.
High Cohesion is an evaluative pattern that attempts to keep
objects appropriately focused, manageable and understandable.

Alternatively, low cohesion is a situation in which a given element
has too many unrelated responsibilities (“God Object”)
High Cohesion
Cohesion is decreased if:
• The functionalities embedded in a class, accessed through its methods, have
little in common.

• Methods carry out many varied activities, often using coarsely grained or
unrelated sets of data.

Disadvantages of low cohesion (or “weak cohesion”) are:
• Increased difficulty in understanding modules.

• Increased difficulty in maintaining a system, because logical changes in the
domain affect multiple modules, and because changes in one module require
changes in related modules.
• Increased difficulty in reusing a module because most applications won’t
need the random set of operations provided by a module.
High Cohesion

A

A

??
DoA()

DoA()

DoB()

DoC()

DoB()

DoC()

??
Controller
• Problem: Who should be responsible for handling events and
messages from external actors (UI, …)?

• Assign the responsibility to a class, such as:
– A class that represents the overall system, device, or subsystem.
• Façade Controller Pattern

– A class that represent a use case, whereby performs handling
particular system operation.
• Use Case Controller Pattern

• Generally does not perform operation by itself, but delegate
responsibility to component objects.
Polymorphism
• Problem: How to act different depending in object’s class, or
how to design pluggable components?

• In case of class behavior might changes, responsibilities
segregates to different behavior specific classes, using
polymorphic operations for this class.
• Advise: Do not use type checking, but conditional logic for
implementation different variations based on object type.
Polymorphism
Square

Player

landedOn

RegularSquare

landedOn

GoSquare

landedOn

OtherSquare

landedOn

• There are (roughly) 3 types a polymorphism:
– Ad hoc Polymorphism
– Parametric Polymorphism

– Subtype Polymorphism
Pure Fabrication
• Problem: How to assign responsibilities if applying the
Informational Expert principle decreases cohesion and increases
coupling?
• Assign the responsibility to an artificial class that does not
belongs to the domain model.
• Pure Fabrication is a class that does not reflect any business
domain object, but required only for increase cohesion and
decrease coupling.
Indirection
• Problem: How to assign responsibilities in order to avoid direct
coupling between two components, and keep ability for reuse.

• Assign responsibility to intermediate class for providing linking
between objects not linking directly.
• Related design patterns: Adapter, Bridge, Mediator.
Protected Variations
• Problem: How to design system and subsystems, that changes in
these components does not affects on other components.

• Identify points of possible variations and instability; create
stable interfaces upon instable components.
• Open-Closed Principle almost equivalent to PV pattern.
Protected Variations
• There are 2 types of points:
– Variation point – branching point on existing system or in
requirements. For example we need to support several types of
interfaces for tax payment system
– Evolution point – supposed branching point, which might occur in
future, but does not declared by existing requirements.

• Protected variation pattern applying for both variation and
evolution points.
Law of Demeter (not part of GRASP)
Specific case of loose coupling.
• Each unit should have only limited knowledge about other units
• Each unit should only talk to its friend (“don’t talk to strangers”)

A

B

C
Law of Demeter (not part of GRASP)
More formally, the Law of Demeter for functions requires that a
method m of an object O may only invoke the methods of the
following kinds of objects:

• O itself
• m's parameters
• Any objects created/instantiated within m

• O's direct component objects
• A global variable, accessible by O, in the scope of m
“Don’t talk to strangers”
RDD conflicts with Law of Demeter
• Therefore, sending a message to the result of a previous
message send isn't allowed.

However, "returned values are part of the
client/server contract. There need be no
correlation between the structure of an object
and the object returned by the message.“

Wirfs-Brock, Rebecca; McKean, Alan
(November 2002). Object Design:
Roles, Responsibilities, and Collaborations.
Overview
Informational Expert

Assign a responsibility to the class that has the information
needed to fulfill it.

Creator

Assign class B the responsibility to create an instance of
class A if one of these is true (the more the better):
• B "contains" or compositely aggregates A.
• B records A.
• B closely uses A.
• B has the initializing data for A that will be passed to A
when it is crated. Thus B is an Expert with respect to
creating A.

Controller

Assign the responsibility to a class representing one of the
following choices:
• Major subsystem classes
• A use case scenario classes within which the system
event occurs

Low Coupling

Assign a responsibility so that coupling remains low.

High Cohesion

Assign a responsibility so that cohesion remains high.
Overview
Polymorphism

The same name operations (methods) in the difference
classes is defined. And assign a responsibility to the class
the class that the behavior is changed.

Pure Fabrication

Define a class for convenience' sake that doesn't express
the concept of the problem area at all.

Indirection

Assign the responsibility to an intermediate object to
mediate between other components or services, so that
they are not directly coupled.

Protected Variations

Assign responsibility to create a stable interface around an
unstable or predictably variable subsystem or component.
Questions?

Contacts:
Yuriy Shapovalov ( Yurii_Shapovalov@epam.com )
email:
skype:
twitter:

shapovalov.yuri@gmail.com
shapovalov.yuriy
@YuriyShapovalov

Weitere ähnliche Inhalte

Was ist angesagt?

Design Pattern For C# Part 1
Design Pattern For C# Part 1Design Pattern For C# Part 1
Design Pattern For C# Part 1Shahzad
 
Coupling , Cohesion and there Types
Coupling , Cohesion and there TypesCoupling , Cohesion and there Types
Coupling , Cohesion and there TypesMunaam Munawar
 
Interaction Modeling
Interaction ModelingInteraction Modeling
Interaction ModelingHemant Sharma
 
Activity Diagram
Activity DiagramActivity Diagram
Activity DiagramAshesh R
 
Design Patterns
Design PatternsDesign Patterns
Design Patternssoms_1
 
SE_Lec 09_ UML Behaviour Diagrams
SE_Lec 09_ UML Behaviour DiagramsSE_Lec 09_ UML Behaviour Diagrams
SE_Lec 09_ UML Behaviour DiagramsAmr E. Mohamed
 
Class diagram
Class diagramClass diagram
Class diagramSESP123
 
Chapter 01: A brief introduction to cloud computing
Chapter 01: A brief introduction to cloud computingChapter 01: A brief introduction to cloud computing
Chapter 01: A brief introduction to cloud computingSsendiSamuel
 
Domain Driven Design (DDD)
Domain Driven Design (DDD)Domain Driven Design (DDD)
Domain Driven Design (DDD)Tom Kocjan
 
Design patterns ppt
Design patterns pptDesign patterns ppt
Design patterns pptAman Jain
 
The Object Model
The Object Model  The Object Model
The Object Model yndaravind
 
Java Course 11: Design Patterns
Java Course 11: Design PatternsJava Course 11: Design Patterns
Java Course 11: Design PatternsAnton Keks
 
Grasp patterns and its types
Grasp patterns and its typesGrasp patterns and its types
Grasp patterns and its typesSyed Hassan Ali
 
Package Diagram
Package DiagramPackage Diagram
Package DiagramWASI ALI
 
Adapter Design Pattern
Adapter Design PatternAdapter Design Pattern
Adapter Design PatternSalem-Kabbani
 

Was ist angesagt? (20)

Design Pattern For C# Part 1
Design Pattern For C# Part 1Design Pattern For C# Part 1
Design Pattern For C# Part 1
 
Coupling , Cohesion and there Types
Coupling , Cohesion and there TypesCoupling , Cohesion and there Types
Coupling , Cohesion and there Types
 
Interaction Modeling
Interaction ModelingInteraction Modeling
Interaction Modeling
 
Cohesion and coupling
Cohesion and couplingCohesion and coupling
Cohesion and coupling
 
Activity Diagram
Activity DiagramActivity Diagram
Activity Diagram
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
SE_Lec 09_ UML Behaviour Diagrams
SE_Lec 09_ UML Behaviour DiagramsSE_Lec 09_ UML Behaviour Diagrams
SE_Lec 09_ UML Behaviour Diagrams
 
Class diagram
Class diagramClass diagram
Class diagram
 
UML
UMLUML
UML
 
Chapter 01: A brief introduction to cloud computing
Chapter 01: A brief introduction to cloud computingChapter 01: A brief introduction to cloud computing
Chapter 01: A brief introduction to cloud computing
 
Design patterns tutorials
Design patterns tutorialsDesign patterns tutorials
Design patterns tutorials
 
Domain Driven Design (DDD)
Domain Driven Design (DDD)Domain Driven Design (DDD)
Domain Driven Design (DDD)
 
Design patterns ppt
Design patterns pptDesign patterns ppt
Design patterns ppt
 
The Object Model
The Object Model  The Object Model
The Object Model
 
Java Course 11: Design Patterns
Java Course 11: Design PatternsJava Course 11: Design Patterns
Java Course 11: Design Patterns
 
Grasp patterns and its types
Grasp patterns and its typesGrasp patterns and its types
Grasp patterns and its types
 
Package Diagram
Package DiagramPackage Diagram
Package Diagram
 
Adapter Design Pattern
Adapter Design PatternAdapter Design Pattern
Adapter Design Pattern
 
CS8592-OOAD Lecture Notes Unit-3
CS8592-OOAD Lecture Notes Unit-3CS8592-OOAD Lecture Notes Unit-3
CS8592-OOAD Lecture Notes Unit-3
 
Data-Persistency
Data-PersistencyData-Persistency
Data-Persistency
 

Andere mochten auch

GRASP Staff Final Presentation
GRASP Staff Final PresentationGRASP Staff Final Presentation
GRASP Staff Final PresentationRadu Florea
 
Assessment in the K12 Classroom
Assessment in the K12 ClassroomAssessment in the K12 Classroom
Assessment in the K12 ClassroomPatricia Dickenson
 
GRASP PERFORMANCE ASSESSMENT
GRASP PERFORMANCE ASSESSMENTGRASP PERFORMANCE ASSESSMENT
GRASP PERFORMANCE ASSESSMENTMarvin Broñoso
 
Simple k12 performance task assessment
Simple k12 performance task assessmentSimple k12 performance task assessment
Simple k12 performance task assessmentJonathan Martin
 
Craig Larman - Scaling Lean & Agile Development
Craig Larman - Scaling Lean & Agile Development Craig Larman - Scaling Lean & Agile Development
Craig Larman - Scaling Lean & Agile Development Valtech
 
SOLID & GRASP
SOLID & GRASPSOLID & GRASP
SOLID & GRASPdevel123
 
Standards based assessment and grading in the k-12 system
Standards based assessment and grading in the k-12 systemStandards based assessment and grading in the k-12 system
Standards based assessment and grading in the k-12 systemFeljone Ragma
 
Chapter 01
Chapter 01Chapter 01
Chapter 01bmcfad01
 
Chapter 07
Chapter 07Chapter 07
Chapter 07bmcfad01
 
probability and statistics Chapter 1 (1)
probability and statistics Chapter 1 (1)probability and statistics Chapter 1 (1)
probability and statistics Chapter 1 (1)abfisho
 
Real World & Performance Assessment
Real World & Performance AssessmentReal World & Performance Assessment
Real World & Performance Assessmentguestd0c8f7
 
Performance assessment using grasps
Performance assessment  using graspsPerformance assessment  using grasps
Performance assessment using graspsShyne De Vera
 

Andere mochten auch (20)

GRASP Principles
GRASP PrinciplesGRASP Principles
GRASP Principles
 
GRASP Staff Final Presentation
GRASP Staff Final PresentationGRASP Staff Final Presentation
GRASP Staff Final Presentation
 
Week4 grasp-into
Week4 grasp-intoWeek4 grasp-into
Week4 grasp-into
 
L12 GRASP
L12 GRASPL12 GRASP
L12 GRASP
 
Assessment in the K12 Classroom
Assessment in the K12 ClassroomAssessment in the K12 Classroom
Assessment in the K12 Classroom
 
14 grasp-1
14 grasp-114 grasp-1
14 grasp-1
 
GRASP PERFORMANCE ASSESSMENT
GRASP PERFORMANCE ASSESSMENTGRASP PERFORMANCE ASSESSMENT
GRASP PERFORMANCE ASSESSMENT
 
OOA&D Lecture1
OOA&D Lecture1OOA&D Lecture1
OOA&D Lecture1
 
OOA&D Lecture 2 uml notations
OOA&D Lecture 2 uml notations OOA&D Lecture 2 uml notations
OOA&D Lecture 2 uml notations
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Simple k12 performance task assessment
Simple k12 performance task assessmentSimple k12 performance task assessment
Simple k12 performance task assessment
 
Craig Larman - Scaling Lean & Agile Development
Craig Larman - Scaling Lean & Agile Development Craig Larman - Scaling Lean & Agile Development
Craig Larman - Scaling Lean & Agile Development
 
SOLID & GRASP
SOLID & GRASPSOLID & GRASP
SOLID & GRASP
 
Standards based assessment and grading in the k-12 system
Standards based assessment and grading in the k-12 systemStandards based assessment and grading in the k-12 system
Standards based assessment and grading in the k-12 system
 
Domain object model
Domain object modelDomain object model
Domain object model
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
 
Chapter 07
Chapter 07Chapter 07
Chapter 07
 
probability and statistics Chapter 1 (1)
probability and statistics Chapter 1 (1)probability and statistics Chapter 1 (1)
probability and statistics Chapter 1 (1)
 
Real World & Performance Assessment
Real World & Performance AssessmentReal World & Performance Assessment
Real World & Performance Assessment
 
Performance assessment using grasps
Performance assessment  using graspsPerformance assessment  using grasps
Performance assessment using grasps
 

Ähnlich wie Grasp principles

UNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptxUNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptxanguraju1
 
Effective Software Design
Effective Software Design Effective Software Design
Effective Software Design Darshan Ashpal
 
Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)stanbridge
 
Design pattern and their application
Design pattern and their applicationDesign pattern and their application
Design pattern and their applicationHiệp Tiến
 
Design engineering cohesion by dinesh
Design engineering cohesion by dineshDesign engineering cohesion by dinesh
Design engineering cohesion by dineshDinesh Kumar
 
12266422.ppt
12266422.ppt12266422.ppt
12266422.pptCSEC5
 
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design PatternsNina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design Patternsiasaglobal
 
session on pattern oriented software architecture
session on pattern oriented software architecturesession on pattern oriented software architecture
session on pattern oriented software architectureSUJOY SETT
 
Entity Framework: To the Unit of Work Design Pattern and Beyond
Entity Framework: To the Unit of Work Design Pattern and BeyondEntity Framework: To the Unit of Work Design Pattern and Beyond
Entity Framework: To the Unit of Work Design Pattern and BeyondSteve Westgarth
 
Microservice architecture design principles
Microservice architecture design principlesMicroservice architecture design principles
Microservice architecture design principlesSanjoy Kumar Roy
 
effective modular design.pptx
effective modular design.pptxeffective modular design.pptx
effective modular design.pptxDr.Shweta
 
Unit3 Software engineering UPTU
Unit3 Software engineering UPTUUnit3 Software engineering UPTU
Unit3 Software engineering UPTUMohammad Faizan
 
Tech challenges in a large scale agile project
Tech challenges in a large scale agile projectTech challenges in a large scale agile project
Tech challenges in a large scale agile projectHarald Soevik
 
Design poo my_jug_en_ppt
Design poo my_jug_en_pptDesign poo my_jug_en_ppt
Design poo my_jug_en_pptagnes_crepet
 
Clean Code .Net Cheetsheets
Clean Code .Net CheetsheetsClean Code .Net Cheetsheets
Clean Code .Net CheetsheetsNikitaGoncharuk1
 

Ähnlich wie Grasp principles (20)

UNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptxUNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptx
 
Effective Software Design
Effective Software Design Effective Software Design
Effective Software Design
 
Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)
 
Design pattern and their application
Design pattern and their applicationDesign pattern and their application
Design pattern and their application
 
Software Design principales
Software Design principalesSoftware Design principales
Software Design principales
 
Design engineering cohesion by dinesh
Design engineering cohesion by dineshDesign engineering cohesion by dinesh
Design engineering cohesion by dinesh
 
12266422.ppt
12266422.ppt12266422.ppt
12266422.ppt
 
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design PatternsNina Grantcharova - Approach to Separation of Concerns via Design Patterns
Nina Grantcharova - Approach to Separation of Concerns via Design Patterns
 
TEST PPT
TEST PPTTEST PPT
TEST PPT
 
Patterns
PatternsPatterns
Patterns
 
session on pattern oriented software architecture
session on pattern oriented software architecturesession on pattern oriented software architecture
session on pattern oriented software architecture
 
Entity Framework: To the Unit of Work Design Pattern and Beyond
Entity Framework: To the Unit of Work Design Pattern and BeyondEntity Framework: To the Unit of Work Design Pattern and Beyond
Entity Framework: To the Unit of Work Design Pattern and Beyond
 
Microservice architecture design principles
Microservice architecture design principlesMicroservice architecture design principles
Microservice architecture design principles
 
OOM Unit I - III.pdf
OOM Unit I - III.pdfOOM Unit I - III.pdf
OOM Unit I - III.pdf
 
effective modular design.pptx
effective modular design.pptxeffective modular design.pptx
effective modular design.pptx
 
Unit3 Software engineering UPTU
Unit3 Software engineering UPTUUnit3 Software engineering UPTU
Unit3 Software engineering UPTU
 
EFFECTIVE MODULAR DESIGN.pptx
EFFECTIVE MODULAR DESIGN.pptxEFFECTIVE MODULAR DESIGN.pptx
EFFECTIVE MODULAR DESIGN.pptx
 
Tech challenges in a large scale agile project
Tech challenges in a large scale agile projectTech challenges in a large scale agile project
Tech challenges in a large scale agile project
 
Design poo my_jug_en_ppt
Design poo my_jug_en_pptDesign poo my_jug_en_ppt
Design poo my_jug_en_ppt
 
Clean Code .Net Cheetsheets
Clean Code .Net CheetsheetsClean Code .Net Cheetsheets
Clean Code .Net Cheetsheets
 

Kürzlich hochgeladen

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 

Kürzlich hochgeladen (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

Grasp principles

  • 1. GRASP General Responsibility Assignment Software Patterns author: Yuriy Shapovalov (Yurii_Shapovalov@epam.com)
  • 2. Where it came from? • GRASP like a term and principles firstly was described at Craig Larman’s book “Applying UML and Patterns” GRASP stands for: • General • Responsibility • Assignment • Software • Patterns (Principles)
  • 3. Nine Patterns • Creator • Informational Expert • Controller • Low Coupling • High Cohesion • Polymorphism • Pure Fabrication • Indirection • Protected Variation
  • 4. Differences from GoF and SOLID • Patterns of assigning responsibilities (RDD) • GRASP declares more common principles responsibility separation, when GoF describe more specific and complex design patterns. • SOLID – more common OOP principles less oriented on responsibility segregation • GRASP somewhere between GoF patterns and SOLID principles.
  • 5. Representation in Sequence Diagram (UML) • Relationship between methods and responsibilities. • Assuming that Sale objects are responsible to create Payment objects :Sale makePayment(cashTendered) create(cashTendered) Confidential :Payment 5
  • 6. Responsibility-Driven Design • “doing” responsibilities – Doing something itself, such as creation an object or doing a calculation. – Initiating action in other objects – Controlling and coordinating activities in other objects. • “knowing” responsibilities – Knowing about encapsulated data. – Knowing about related objects. – Knowing about things it can derive or calculate.
  • 7. Informational Expert Problem: Which class possesses information about object A? More common question: What is a general principle of assigning responsibilities to objects? Assign the responsibility to the class that knows the necessary information for performing required action and fulfill the responsibility.
  • 8. Informational Expert Tell, Don’t Ask. “Procedural code gets information then, makes decisions. Objectoriented code tells object to do things” © Alec Sharp
  • 11. Creator Problem: Who should be responsible for creating object A? In general, a class B should be responsible for creating instances of class A if one, or preferably more, of the following apply: • Instances of B contain or compositely aggregate instances of A • Instances of B record instances of A • Instances of B closely use instances of A • Instances of B have the initializing information for instances of A and pass it on creation.
  • 12. Creator • The goal is to define creator-object, which will be related to all created objects. 64 Board create Square Board create Square
  • 13. Creator In case of complex creation login, based on some external cases, make sense to use Factory pattern, and delegate creation responsibility to auxiliary class. • Related patterns: Concrete Factory and Abstract Factory
  • 14. Low Coupling • Problem: How to reduce design change impact, support low dependency and increase reuse? Coupling is the degree, defines how tightly one component linked to other components, or how much information it knows about other components. • A change in one module usually forces a ripple effect of changes in other modules. • Assembly of modules might require more effort and/or time due to the increased inter-module dependency. • A particular module might be harder to reuse and/or test because dependent modules must be included.
  • 16. Low Coupling • Assign a responsibility so that coupling remains low. Low Coupling is an evaluative pattern, which dictates how to assign responsibilities to support: • lower dependency between the classes, • change in one class having lower impact on other classes, • higher reuse potential. http://en.wikipedia.org/wiki/Coupling_(computer_science)#Module_coupling
  • 17. High Cohesion • Problem: How to keep objects focused, understandable, manageable, and support low coupling? Cohesion is a measure of how strongly related or focused the responsibilities of a single module are. High Cohesion is an evaluative pattern that attempts to keep objects appropriately focused, manageable and understandable. Alternatively, low cohesion is a situation in which a given element has too many unrelated responsibilities (“God Object”)
  • 18. High Cohesion Cohesion is decreased if: • The functionalities embedded in a class, accessed through its methods, have little in common. • Methods carry out many varied activities, often using coarsely grained or unrelated sets of data. Disadvantages of low cohesion (or “weak cohesion”) are: • Increased difficulty in understanding modules. • Increased difficulty in maintaining a system, because logical changes in the domain affect multiple modules, and because changes in one module require changes in related modules. • Increased difficulty in reusing a module because most applications won’t need the random set of operations provided by a module.
  • 20. Controller • Problem: Who should be responsible for handling events and messages from external actors (UI, …)? • Assign the responsibility to a class, such as: – A class that represents the overall system, device, or subsystem. • Façade Controller Pattern – A class that represent a use case, whereby performs handling particular system operation. • Use Case Controller Pattern • Generally does not perform operation by itself, but delegate responsibility to component objects.
  • 21. Polymorphism • Problem: How to act different depending in object’s class, or how to design pluggable components? • In case of class behavior might changes, responsibilities segregates to different behavior specific classes, using polymorphic operations for this class. • Advise: Do not use type checking, but conditional logic for implementation different variations based on object type.
  • 22. Polymorphism Square Player landedOn RegularSquare landedOn GoSquare landedOn OtherSquare landedOn • There are (roughly) 3 types a polymorphism: – Ad hoc Polymorphism – Parametric Polymorphism – Subtype Polymorphism
  • 23. Pure Fabrication • Problem: How to assign responsibilities if applying the Informational Expert principle decreases cohesion and increases coupling? • Assign the responsibility to an artificial class that does not belongs to the domain model. • Pure Fabrication is a class that does not reflect any business domain object, but required only for increase cohesion and decrease coupling.
  • 24. Indirection • Problem: How to assign responsibilities in order to avoid direct coupling between two components, and keep ability for reuse. • Assign responsibility to intermediate class for providing linking between objects not linking directly. • Related design patterns: Adapter, Bridge, Mediator.
  • 25. Protected Variations • Problem: How to design system and subsystems, that changes in these components does not affects on other components. • Identify points of possible variations and instability; create stable interfaces upon instable components. • Open-Closed Principle almost equivalent to PV pattern.
  • 26. Protected Variations • There are 2 types of points: – Variation point – branching point on existing system or in requirements. For example we need to support several types of interfaces for tax payment system – Evolution point – supposed branching point, which might occur in future, but does not declared by existing requirements. • Protected variation pattern applying for both variation and evolution points.
  • 27. Law of Demeter (not part of GRASP) Specific case of loose coupling. • Each unit should have only limited knowledge about other units • Each unit should only talk to its friend (“don’t talk to strangers”) A B C
  • 28. Law of Demeter (not part of GRASP) More formally, the Law of Demeter for functions requires that a method m of an object O may only invoke the methods of the following kinds of objects: • O itself • m's parameters • Any objects created/instantiated within m • O's direct component objects • A global variable, accessible by O, in the scope of m “Don’t talk to strangers”
  • 29. RDD conflicts with Law of Demeter • Therefore, sending a message to the result of a previous message send isn't allowed. However, "returned values are part of the client/server contract. There need be no correlation between the structure of an object and the object returned by the message.“ Wirfs-Brock, Rebecca; McKean, Alan (November 2002). Object Design: Roles, Responsibilities, and Collaborations.
  • 30. Overview Informational Expert Assign a responsibility to the class that has the information needed to fulfill it. Creator Assign class B the responsibility to create an instance of class A if one of these is true (the more the better): • B "contains" or compositely aggregates A. • B records A. • B closely uses A. • B has the initializing data for A that will be passed to A when it is crated. Thus B is an Expert with respect to creating A. Controller Assign the responsibility to a class representing one of the following choices: • Major subsystem classes • A use case scenario classes within which the system event occurs Low Coupling Assign a responsibility so that coupling remains low. High Cohesion Assign a responsibility so that cohesion remains high.
  • 31. Overview Polymorphism The same name operations (methods) in the difference classes is defined. And assign a responsibility to the class the class that the behavior is changed. Pure Fabrication Define a class for convenience' sake that doesn't express the concept of the problem area at all. Indirection Assign the responsibility to an intermediate object to mediate between other components or services, so that they are not directly coupled. Protected Variations Assign responsibility to create a stable interface around an unstable or predictably variable subsystem or component.
  • 32. Questions? Contacts: Yuriy Shapovalov ( Yurii_Shapovalov@epam.com ) email: skype: twitter: shapovalov.yuri@gmail.com shapovalov.yuriy @YuriyShapovalov