Good Interactions

Table of Contents


1 About This Sprint

This sprint focus on how to identify what is a good design through the use of basic object oriented principles.

Please note that while the text for this sprint is short, the concepts taught in it are central to object oriented design. Understanding the basic object oriented principles (for example as expressed in the GRASP patterns) is essential to create a good and sustainable software design. Please do spend some extra time on the concepts in this sprint to make sure you fully understand how to use them in your design work.

2 User Stories covered in this Sprint

  • As a software designer I want to create a design that adheres to basic design principles so that I am sure that it will “hold” when I add more functionality and start maintaining the system.
  • As a software designer I want to understand how to best design the interaction between objects so that I can create a robust and maintainable system.

3 Introduction

The ordering between this sprint and the next is a bit off. In the screencast for this sprint I am discussing the dynamic behaviour in terms of UML Interaction Diagrams and the static structure in terms of UML Class Diagrams even though these aren’t introduced until the next sprint. I do this because I want to save you some work, and because I think you will be able to grok this sprint anyway. The alternative would be for you to first create early versions of all your interaction diagrams and class diagrams, then learn more about design principles to make them good, and then go back and revise them. That’s not how you are supposed to work with these design principles. Object Oriented design principles are so deeply ingrained in how we do OO design that we rarely even think about them once we know them – we just do. You will not list that “you have created class X according to design principle Y” anywhere, since it is expected that you have used all principles all the time (or have had a very good reason not to use them). Therefore, let’s briefly discuss them first.

3.1 Fundamental Design Principles

Some design principles have fancy names (you’ll find them under Further Reading (Section 4.3), and they are often described one by one as if you can first apply one, then the next, and so on. In reality you work with all of them at once, and they are essentially different aspects of a few fundamental principles:

Table 1: Fundamental Design Principles
Principle Description
Abstraction Focus on relevant properties
Coupling and Cohesion Independent entities, but where the internals are strongly related
Decomposition and Modularisation Small entities with well defined and non-overlapping functionalities or responsibilities
Encapsulation Hide the internals so they are inaccessible from outside the entity
Separation of Interface and Implementation Separate the public interface from implementation details
Sufficiently, Completeness, and Primitiveness Keep entities as small as possible, but not smaller. Entities should capture all important characteristica of an abstraction but nothing more.

To put this into the context of a single class, this means that a good class has:

  • A single, well-defined abstraction and well-defined responsibilities
    • Tip: Let classes distribute work to other classes
    • Tip: avoid “God Classes” that tries to do everything
  • Has low coupling to other classes
    • Tip: Minimise fan-out in a class
  • Has a sufficient and complete public interface to be able to access the behaviour and state relevant for the abstraction that the class models
  • Has a primitive public interface that does not expose anything more than necessary to the outside.
    • Tip: All data should be hidden within the class.
    • Tip: Do not clutter the public interface with items that users of that class are not interested in or able to use.
  • Has high cohesion (the methods and attributes belong strongly together)
    • Tip: Most of the methods defined on a class should be using most of the data in the class most of the time.

3.2 Responsibility Driven Design

These are just some of the principles for how to define classes. Under Further Reading (Section 4.3) I have listed some more. Luckily, many of these have also been expressed in a slightly more accessible way in the course book. Larman calls them GRASP patterns, and the idea is that when you are doing your design you always try to define the responsibilities of the involved objects and classes according to these GRASP patterns. This is why he also refers to them as Responsibility Driven Design. The patterns are listed on the inside of the book cover:

  • Information Expert
  • Creator
  • Controller
  • Low Coupling
  • High Cohesion
  • Polymorphism
  • Pure Fabrication
  • Indirection
  • Protected Variations

Make sure you understand the principles of each one of these. Think about how you may apply them in different settings. Discuss them with your classmates, and use the course discussion forum. How might they impact your design?

4 Learning Material

4.1 Book Chapters

  • C. Larman, Applying UML and Patterns, 3rd Edition, Chapters:
    1. GRASP: Designing Objects with Responsibilities
    2. Object Design Examples with GRASP
    3. Designing for Visibility
    4. GRASP More Objects with Responsibilities

4.2 Screencasts

4.3 Further Reading

5 Experiential Learning

5.1 Sprint Test Plan

Go through the user stories for this sprint and make sure you have a clear understanding of how to solve each of them.

Revisit and update your risks and contingencies section.

Add and/or revise the following items to your glossary:

  • Abstraction
  • Coupling and Cohesion
  • Encapsulation
  • Code Refactoring
  • Design Principles
  • Design Patterns
  • Responsibility Driven Design
  • GRASP Patterns
    • Information Expert
    • Creator
    • Controller
    • Low Coupling
    • High Cohesion
    • Polymorphism
    • Pure Fabrication
    • Indirection
    • Protected Variations

Make sure you understand what each item is, the notation for them, and how to use them either in isolation or together with the other concepts.

5.2 Self-Study: GRASP Patterns

Use a small system that you know well, for exampe a Pacman game. Think about the GRASP patterns in the context of this game. For example:

  • Who is the information expert on knowing the location of pacman on the game board?
  • Who creates the ghosts?
  • Who takes care of input and orchestrates navigation in the main menu (controller)?
  • How should the ghosts be made aware of pacman’s position so that you maintain low coupling and information expert?
  • How do you design the game board so that it still has high cohesion?
  • How does polymorphism work with the different ghosts?
  • etc.

5.3 Update Course Backlog

Are there similar principles that can help you decide how a larger collection of classes can interact? How do you find the classes in the first place? How do you explore the interactions between objects?

Are there any other questions that you want answered? Add them, along with a brief strategy for how to find an answer.

6 Sprint Acceptance Tests

You are done with this sprint when:

  • You have studied the Fundamental Design Principles and understood them
  • You have studied the GRASP patterns and understood them

You may also have

  • Reflected upon the GRASP patterns in the context of a small, well-known system.
  • Updated your Sprint Test Plan
  • Updated your Course Backlog

Author: Mikael Svahnberg

Email: Mikael.Svahnberg@bth.se

Created: 2018-04-06 Fri 08:35

Validate