up vote 4 down vote favorite
1
share [g+] share [fb]

What is the Reuse/Release Equivalence Principle and why is it important?

link|improve this question

53% accept rate
Guess you want the self-learner badge :-) – Mendelt Sep 15 '08 at 14:33
Well, that would be nice. But the main reason I'm doing this (and asking the other questions about OO design principles) is to help seed the site with information and hopefully increase awareness of these principles. I'm constantly shocked at the number of devs I meet who have never heard of them. – Phillip Wells Sep 15 '08 at 14:47
Okay, fair enough. I deleted my answer chastising you for going down the list. (It should have been a comment here anyway.) – Patrick McElhaney Sep 15 '08 at 15:03
Cheers. What do you think is the best way to seed information like this? Immediately answer the question myself (which seems to discourage others from contributing or even viewing, as here), or just let the community respond to it (which seems to generate more views and replies)? – Phillip Wells Sep 15 '08 at 15:18
feedback

1 Answer

The Reuse/Release Equivalence Principle (REP) says:

The unit of reuse is the unit of release. Effective reuse requires tracking of releases from a change control system. The package is the effective unit of reuse and release.

The unit of reuse is the unit of release

Code should not be reused by copying it from one class and pasting it into another. If the original author fixes any bugs in the code, or adds any features, you will not automatically get the benefit. You will have to find out what's changed, then alter your copy. Your code and the original code will gradually diverge.

Instead, code should be reused by including a released library in your code. The original author retains responsibility for maintaining it; you should not even need to see the source code.

Effective reuse requires tracking of releases from a change control system

The author of a library needs to identify releases with numbers or names of some sort. This allows users of the library to identify different versions. This requires the use of some kind of release tracking system.

The package is the effective unit of reuse and release

It might be possible to use a class as the unit of reuse and release, however there are so many classes in a typical application, it would be burdensome for the release tracking system to keep track of them all. A larger-scale entity is required, and the package fits this need well.

See also Robert Martin's article on Granularity.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.