#engineering #software #design #engineering-principles #solid-principles

idea

The Dependency Inversion Principle (DIP) is a software engineering principle which dictates that the static dependencies should be inversed to the control flow. It is the D of the SOLID principles.

This means that if module A (the consumer) calls module B (the provider), then module B should have a code dependency on module A, and not the opposite. "High level modules should not depend on low-level modules"

This principle is decoupling consumers from providers, by allowing the consumers (i.e. Those with most abstracted businessman logic) to focus on the what while ignoring the how. This makes the actual implementation susbstitutable for another, therefore improving:

In OOP this is implemented by using an interface, which acts as a contract for the consumer.

This is sometimes criticized as adding complexity to the code uselessly. In my experience, everytime I forgone this principle (or encountered a transgression of it) ended up with more work.

links

delegation frameworks are a real life example of DIP: leadership injects a decision framework into the team (static dependency), which then refers to it at run time to make decisions (runtime dependency)

references

Clean architecture, Robert C. Martin, is re-presenting the SOLID principles that he introduced.

Wikipedia / Dependency inversion principle