DNN Development Tips:1 - The SOLID Design Principles

Last Modified: May 2 2017
May 5 2014

In this series I intend to present Tips and Tricks as well as some good patterns and practices for DNN development.  In this first post lets take a look at the so-called “SOLID” Design Principles.  These are a series of principles designed to help you build good products.

S – Single Responsibility Principle

The Single Responsibility principle states that a Class (or a Method within a class) should have a single responsibility. 

For instance a method that is designed to Get something should not also Create something.  It should instead just indicate that the item does not exist and allow the caller of the method to take the appropriate action.  There are many ways it could indicate that the item doesn’t exist.  One is to return null or nothing - another is to throw a specific exception - perhaps a custom ItemNotFoundException. 

Robert Martin, when he introduced the so-called “SOLID” Design principles defined a responsibility as a reason to change, and he stated the a class or a module should have one, and only one reason to change.  For example a module what compiles and prints a report can be changed for two reasons - first, the content of the report can change, but second the format of the report can change.  This module therefore breaks the single responsibility principle and should be refactored into two modules - one to compile the report and one to print it.

O –Open-Closed Principle

The Open-Closed Principle, while made popular by Robert Martin was originally defined in 1988 by Bertrand Meyer. Meyer’s Open-Closed Principle states that once completed the implementation of a class could only be modified to correct errors, new or enhance features would require a new class to be created.

Robert Martin and others redefined this to refer to interfaces. Interface specifications can be re-used through inheritance but the implementation need not be. The existing interface is closed to modifications and new implementations must, at a minimum implement that interface.

L – Liskov Substitution Principle

The Liskov Substitution Principle, original introduced in 1987 by Barbara Liskov states that “in a computer program, if S is a subtype of T, then objects of type T may be replaced (substituted) by objects of type S without altering any of the properties of the program.

The most often cited example of classes which violate the Liskov Substitution principle is that of a Square and Rectangle.  In OO (Object-Oriented) development we would be happy to define a Rectangle as a base class and Square as a subtype of Rectangle.  A Square has four sides, all the angles are 900.  

However, a Square requires all sides to be equal.  This poses a problem when managing the height and width properties.  A Rectangle can have its height and width set separately - it would have two separate setters.  If the Square object subtypes Rectangle then in order to keep the height and width the same the setters would need to be modified so that setting the width would also set the height.  Thus a Square could not be substituted for a Rectangle in a computer program without altering the properties of the program.

I – Interface Segregation Principle

The Interface Segregation Principle encourages the use of smaller and more-specific Interfaces.  Larger interfaces often require clients to implement pieces that they will never use.

The example cited by Robert Martin to describe the benefits of this principle is the ATM usage case.  In designing an ATM the design must support a Braille UI, a Speech UI and a Screen UI.  This would normally be done by implementing an abstract ATM UI base class (or interface).  A better design which follows the Interface Segregation principle would be to split the abstract base class into three (or more) interfaces - a Deposit UI, a Withdrawal UI and a Transfer UI - i.e. a separate thin interface for each action that needs to be implemented.

D – Dependency Inversion Principle

One of the problems with the Interface Segregation principle is that now we have components with lots of dependencies that could be highly coupled.  The Dependency Inversion Principle states that high level modules should not depend on low level modules - both should depend on abstractions.  It also states that abstractions should not depend on details, details should depend on abstractions.

The goal is to decouple high-level components from low-level components such that reuse with different low-level component implementations becomes possible. This is facilitated by the separation of high-level components and low-level components into separate packages/libraries, where interfaces defining the behavior/services required by the high-level component are owned by, and exist within the high-level component's package.

Various patterns such as Plugin, Service Locator or Dependency Injection are then employed to facilitate the run-time provisioning of the chosen low-level component implementation to the high-level component.

This a very short summary of the SOLID Principles of Software design.  For readers wanting to delve deeper into the subject I highly recommend Robert Martin’s book “Agile Principles, Patterns and Practices in C#” published by Prentice-Hall.

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

Tags