User Tools

Site Tools


principles:open-closed_principle

This is an old revision of the document!


Open-Closed Principle (OCP)

Variants and Alternative Names

Context

Principle Statement

Modules should be open for enhancement but closed for modification.

Descriptions

Rationale

Strategies

Caveats

Beware that wrong application of OCP may lead to the anti-pattern onion.

See also section contrary principles.

Origin

Bertrand Meyer: Object-Oriented Software Construction, p. 57pp.

Evidence

Relations to Other Principles

Generalizations

  • Encapsulate the Concept that Varies (ECV): The OCP demands encapsulating abstract concepts in base classes (or interfaces) in order to be able to enhance the module by subclassing which is possible without changing the previously written code. In this case several variations of a concept may exist in the code at the same time. There is always the abstract base class plus one or usually more concrete subclasses. So the OCP is about encapsulating abstract concepts that vary “in space”.

Specializations

Contrary Principles

  • more Is More Complex (MIMC): The OCP demands introducing abstract base classes or interfaces.
  • Keep It Simple Stupid (KISS): The OCP demands introducing abstract base classes or interfaces. This increases complexity.
  • Model Principle (MP): OCP sometimes results in the introduction of artificial classes that do not correspond to a real-world concept.

Complementary Principles

  • Dependency Inversion Principle (DIP): OCP results in the introduction of abstract classes or interfaces and descendant concrete classes. DIP now tells that other classes should only depend on the abstractions.
  • Liskov Substitution Principle (LSP): OCP may results in the introduction of abstract classes or interfaces. Here it is important to get the abstraction right. Otherwise LSP may be violated.

Principle Collections

Examples

Client Repository

Let's say the high-level module (your business logic), wants to be able to add or remove clients to the database. Instead of it talking to the database directly, it defines an interface called ClientRepository which contains the methods the business logic needs (DIP). Now you go along and implement a MySQLClientRepository. Some time in the future, you are asked to switch to an oracle database. You can now, without modifying any code from your business logic, switch to the oracle database: by extending ClientRepository to implement OracleClientRepository. You just need to wire an OracleClientRepository instance to the business logic and you have made the switch without modifying any business logic code.

Description Status

Further Reading

Discussion

Discuss this wiki article and the principle on the corresponding talk page.

principles/open-closed_principle.1612218683.txt.gz · Last modified: 2021-02-01 23:31 by 95.216.157.202