Presentation on GRASP Patterns Submitted by WWW ASSIGNMENTPOINT
Presentation on GRASP Patterns Submitted by WWW. ASSIGNMENTPOINT. COM www. assignmentpoint. com
Patterns A pattern describes a problem and solution, and given a name. Examples are Singleton, Adapter, Factory etc. A pattern Example Name: Information Expert Context/Problem: What is a basic principle by which to assign responsibilities to objects? Solution: Assign a responsibility to the class that has the information needed to fulfill it. www. assignmentpoint. com
Repeating Patterns The very term Pattern means a repeating thing. The point of pattern is not to express new design ideas Instead patterns codify existing tried-and-true knowledge, idioms, and principles: the more honed and widely use, the better. www. assignmentpoint. com
Naming Patterns Improves Communication Engineers can discuss among themselves a complex principle or design idea with a simple name. Fred: “Where do you think we should place the responsibility for creating a Sales. Line. Item? I think a Factory. ” Wilma: “By Creator, I think Sale will be suitable. ” Fred: “Oh, right – I agree”. www. assignmentpoint. com
GRASP Patterns Question: What is GRASP patters? Answer: They describe fundamental principles of object design and responsibility assignment, expressed as patterns. GRASP stands for General Responsibility Assignment Software Patterns. Information Expert Creator High Cohesion Low Coupling Controller www. assignmentpoint. com
1. Information Expert (or Expert) Context/Problem: What is a basic principle by which to assign responsibilities to objects? Solution: Assign a responsibility to the class that has the information needed to fulfill it. Example: In Next. Gen POS application, some class needs to know the grand total of a sale. Start by asking “Who should be responsible for knowing the grand total of a sale? ” By Information Expert we should look for a class that has the information needed to determine the total. Where should we look, domain or design model? First look into design model, if not then look into domain www. assignmentpoint. com model
Domain Model vs. Design Model Let’s assume we are starting from domain model www. assignmentpoint. com
Next. Gen POS System Domain Model Who has the information to determine the sales total? www. assignmentpoint. com
Add Responsibilities So we add a software class into design model similarly called Sale, and give the responsibility of knowing its total, expressed with the method named get. Total (). A responsibility is not the same thing as a method, but methods are implemented to fulfill responsibilities. Responsibilities are implemented using methods that either act alone or collaborate with other methods and objects www. assignmentpoint. com
Types of Responsibility Two types of responsibilities, knowing and doing. Knowing responsibilities of an object include: Knowing about private encapsulated data Knowing about related objects Knowing about things it can derive or calculate E. g. Sale object is responsible for knowing its total. Doing responsibilities of an object include: Doing something itself e. g. creating object or doing a calculation Initiating action in other objects Controlling and coordinating activities in other objects E. g. a Sale is responsible for creating Sales. Line. Items” (a www. assignmentpoint. com doing)
Associations of Sale www. assignmentpoint. com
Determining Sales Total Determining sales total needs Sales. Line. Item. quantity and Product. Specification. price. By Information Expert Sales. Line. Item should determine the subtotal. Thus Sale should send get. Subtotal messages to each of Sales. Line. Items and sum the results. www. assignmentpoint. com
Determining Sales Total Product. Specification is an information expert on answering its price; Therefore, a message must be sent to it asking for its price. www. assignmentpoint. com
Implementation Classes Class Product. Specification String desription; float price ; int item. ID void set. Item. ID (int item. ID) { this. item. ID = item. ID ; } int get. Item. ID () { return this. item. ID ; Class Sales. Line. Item Product. Specification ps ; int quantity ; void set. Product. Specification (…) Pro. . Spec. . get. Product. Specification () void set. Quantity (int qty) } int get. Price () void set. Price (float price) void set. Description (String desc) float get. Price () String get. Description () void set. Description (String desc) float get. Subtotal (){ String get. Description () www. assignmentpoint. com End Class return quantity * ps. get. Price () }
Class Sales. Line. Item Linked. List <Sales. Lineitem> sli. List; Product. Specification ps ; Date date ; void set. Product. Specification (…) Time time ; Pro. . Spec. . get. Product. Specification () float get. Total (){ int quantity ; float total = 0 ; void set. Quantity (int qty) for each item in sli. List int get. Price () total = total + item. get. Sub. Total () void set. Description (String desc) String get. Description () end For float get. Subtotal (){ return total ; return quantity * ps. get. Price () } www. assignmentpoint. com End Class }
Contradictions Sometimes a solutions suggested by Information Expert is undesirable, usually because of problems in coupling and cohesion. Who should be responsible for saving a Sale in a database? Certainly Sale object contains much of the information so Sale object is the natural choice. But then Sale class mush have codes related to SQL, JDBC etc. Related Patterns Low Coupling High Cohesion www. assignmentpoint. com
GRASP Patterns Information Expert Creator Low Coupling High Cohesion Controller www. assignmentpoint. com
2. Creator Context/Problem: Who should be responsible for creating a new instance of some class? Solution: Assign class B the responsibility to create a class A, if: B aggregates A objects B contains A B records instances of A B closely uses A B has the initializing data that will be passed to A when it is created Example: In Next. Gen POS application, who should be responsible for creating a Sales. Line. Item instance? www. assignmentpoint. com
Creating a Sales. Line. Item www. assignmentpoint. com
Finding Creator Class Sometimes a creator is found by looking for the class that has the initializing data that will be passed in during creation. Example: A Payment instance needs to be initialized, when created, with the Sale total. A Payment object will create Sale object or A Sale object will create Payment object Since Sale knows the total, Sale is a candidate creator for Payment www. assignmentpoint. com
Contradictions Often creation requires significant complexity such as conditional creation based on external property, using recycled instances for performance reason etc. Delegate creation to a helper class called a Factory rather than suggested by Creator. Related Patterns Low coupling Factory www. assignmentpoint. com
GRASP Patterns Information Expert Creator Low Coupling High Cohesion Controller www. assignmentpoint. com
3. Low Coupling Context/Problem: How to support low dependency, low change of cost and increased reuse? Solution: Assign a responsibility so that coupling remains low Coupling is a measure of how strongly one element is connected to, has knowledge of, or relies on other elements. Low coupling means not dependent on too many elements e. g. classes, subsystems etc. High Coupling has the following problem Changes in related classes force local changes Harder to understand in isolation Harder to reuse because its use requires other classes on which it is dependent. www. assignmentpoint. com
Low Coupling Example Consider the following partial class diagram form POS study Assume we need to create a Payment instance and associate with Sale. What Class should be responsible for this? Creator pattern suggests Register as a candidate because UML notation Register “records” a Payment. www. assignmentpoint. com Register class is coupled with Payment class Design 1
Low Coupling Example Alternatively create Payment and associate with the Sale class Which design is best? In any case Sale must eventually be coupled to knowledge of a Payment. So design 2 is better. www. assignmentpoint. com
Suggestions In practice, the level of coupling alone can't be considered in isolation from other principles such as Information Expert and High Cohesion. Nevertheless, it is one factor to consider in improving design. There is no absolute measure of when coupling is too high. It depends on developer’s design skill. Even extremely low coupling is not desirable. OO systems means “a system of connected objects that communicate via messages. ” Extreme low/zero coupling means single object with lot of responsibilities that is in-cohesive, bloated and complex. Moderate degree of coupling is normal and necessary in www. assignmentpoint. com OOA/D
Contradictions High coupling to stable elements and to pervasive elements is seldom a problem. For example, J 2 EE application can safely couple to the Java libraries, because they are stable and widespread. Pick your battles It is not high coupling per se that is the problem; it is high coupling to elements that are unstable in some dimension such as their interface, implementation, or mere presence. www. assignmentpoint. com
Pick the Battles Pick the battles between lowering coupling and encapsulating things. Focus on points of realistic high instability or evolution Example: In Next. Gen project, different third-party tax calculators (with unique interface) need to be connected to the system. Therefore designing for Low Coupling at this point is practical. Benefits Not affected by change in other components Simple to understand in isolation Convenient to reuse. www. assignmentpoint. com Related patters
GRASP Patterns Information Expert Creator Low Coupling High Cohesion Controller www. assignmentpoint. com
4. High Cohesion Context/Problem: How to keep complexity manageable? Solution: Assign a responsibility so that cohesion remains high. Cohesion: In object design cohesion is a measure of how strongly related and focused the responsibilities or an element are. Object with high cohesion does not do a tremendous amount of work. Low cohesion does many unrelated things. www. assignmentpoint. com
High Cohesion Example In this case probably its ok because there are only three classes. But if there are fifty system operations, all received by Register, then it would become bloated in-cohesive object. www. assignmentpoint. com
High Cohesion Example This Register class is highly cohesive. www. assignmentpoint. com
Cohesion and Coupling, Yin and Yang Bad cohesion usually begets bad coupling, and vice versa They have inter-dependant influence, thus the term “yin and yang of software engineering”. Example: consider a GUI widget class that represents and paints a widget, saves data to a database, and invokes remote object services. It is not only profoundly in-cohesive, but it is coupled to many disparate elements. www. assignmentpoint. com
GRASP Patterns Information Expert Creator Low Coupling High Cohesion Controller www. assignmentpoint. com
5. Controller Context/Problem: Who should be responsible for handling an input system event? Solution: Assign system handling responsibility to a class if: Represents the overall system, device or sub-system (façade controller) Represents a use case scenario within which the system event occurs, often named <Use. Case. Name>Handler, <Use. Case. Name>Coordinator, <Use. Case. Name>Sesssion www. assignmentpoint. com
Controller Example www. assignmentpoint. com
Choice of Controllers A controller is a non-user interface object responsible for receiving or handling a system event. First category of controller is a façade controller representing the overall system, device or a subsystem. Suitable when there are not too-many system events. Second category is a use-case controller, when there should be many controllers Façade Controller Use-case Controller www. assignmentpoint. com
Façade Controller www. assignmentpoint. com Allocation of System Operations Use-case Controllers
Desirable Coupling between Interface Layer and Domain www. assignmentpoint. com Layer
Less Desirable Coupling between Interface Layer and Domain www. assignmentpoint. com Layer
- Slides: 40