Practice: Encapsulate by Policy, Reveal by Need

Encapsulation has traditionally been thought of as the hiding of data, or “state.” While it is true that hiding data encapsulates them, encapsulation can mean much more than this. It's like the notion that all dogs are mammals, but not all mammals are dogs.

Encapsulation is the hiding of anything. A lot of things can be encapsulated besides data.

For example:

  • How something is designed
  • How something is created
  • When something is created
  • The number of actions that take place
  • The order in which actions take place
  • The actual type of something
  • The nature of a type (concrete or abstract)
  • An interface
  • The implementation of anything
  • The structure of a collection
  • The current status (mode) of a system
  • The number of modes a system has
  • The cause of a modal change
  • etc.

Learning the patterns teaches you how to encapsulate all of these things, and more. But not everything should be encapsulated. How do we decide what to encapsulate once we know how?

The Value of Encapsulating by Policy

Knowing how to do something empowers you. But then you have to decide under what circumstances to do it and when not to.

This would make for a good sign to put on the wall where you'll see it repeatedly throughout your workday:

Encapsulate by policy, reveal by need.

Encapsulation is a decision. We know it is inevitable that we will make mistakes and will make wrong choices from time to time. The question is, what will we have to do when we realize we are in error?

If you encapsulate something and then realize later that you should not have (perhaps you need to make it reusable, or you need to test it in isolation, etc.), then breaking encapsulation is usually trivial. You either change it from a private thing to a public thing, or you add some kind of accessor, like a get() method. This is easy.

If, on the other hand, you fail to encapsulate something and then realize later that you should have, this can be a lot of work, especially if other parts of the system have become coupled to it over time. It can cause a redesign of those other parts. This can cause a lot of rework.

Encapsulating too much can be an easy problem to solve. Encapsulating too little is often very difficult to solve.

I'd rather make the mistake of encapsulating too much.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset