I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or could the real answer hide in YAGNI and only refactor to a single responsibility the first time your class changes?
|
feedback
|
The Single Responsibility PrincipleThere are many obvious cases, e.g. Among the more subtle cases, the tension between data access objects (DAOs) and data transfer objects (DTOs) is very common. DAOs talk to the database, DTOs are serializable for transfer between processes and machines. Usually DAOs need a reference to your database framework, therefore they are unusable on your rich clients which neither have the database drivers installed nor have the necessary privileges to access the DB. Code Smells
| ||||
|
feedback
|
|
write a brief but accurate description of what the class does if the description contains the word "and" then it needs to be split | |||
|
feedback
|
|
Well this principle is to be used with some salt.. to avoid class explosion. A single responsibility does not translate to single method classes. It means a single reason for existence... a service that the object provides for its clients.
| |||
feedback
|
|
A simple and practical method to check single responsibility (not only classes but also method of classes) is the name choice. When you design a class, if you easily find a name for the class that specify exactly what it defines, you're in the right way. A difficulty to choose a name is near always a symptom of bad design. | |||
|
feedback
|
|
the methods in your class should be cohesive....they should work together and make use of the same data structures internally. If you find you have too many methods that don't seem entirely well related, or seem to operate on different things, then quite likely you dont have a good single responsibility. Often its hard to initially find responsibilities, sometimes you need to use the class in several different contexts and then refactor the class into two classes as you start to see the distinctions. Sometimes you find that its because you are mixing an abstract and concrete concept together, they tend to be harder to see, again, use in different contexts will help clarify. | |||
|
feedback
|
|
The obvious sign is when your class ends up looking like a Big Ball of Mud, which is really the opposite of SRP (Single responsability principle), Basically, all the object's services should be focused on carry in out a single responsibility, meaning every time your class change and add a service which does not respect that, you know you "deviating" from the "right" path ;) The cause is usually due to some quick fixes hastily added to the class to repair some defects. So the reason why you are changing the class is usually the best criteria to detect if you are about to break the SRP. | |||
|
feedback
|
|
Perhaps a little more technical than other smells:
I also find that refactoring to single responsibility is hard. By the time you finally get around to it, the different responsibilities of the class will have become entwined in the client code making it hard to factor one thing out without breaking the other thing. I'd rather err on the side of "too little" than "too much" myself. | |||
|
feedback
|
|
If you end up with If you notice that you have a class that just delegates calls to a lot of other classes, you might be stuck in proxy class hell. This is especially true if you end up instantiating the proxy class everywhere when you could just use the specific classes directly. I have seen a lot of this. Think | ||||
|
feedback
|
|
Here are some things that help me figure out if my class is violating SRP:
| |||
|
feedback
|
|
Martin's Agile Principles, Patterns, and Practices in C# helped me a lot to grasp SRP. He defines SRP as:
So what is driving change? Martin's answer is:
and further:
In fact SRP is encapsulating change. If change happens, it should just have a local impact. Where is YAGNI? YAGNI can be nicely combined with SRP: When you apply YAGNI, you wait until some change is actually happening. If this happens you should be able to clearly see the responsibilities which are inferred from the reason(s) for change. This also means that responsibilities can evolve with each new requirement and change. Thinking further SRP and YAGNI will provide you the means to think in flexible designs and architectures. | |||
|
feedback
|
|
If you're finding troubles extending the functionality of the class without being afraid that you might end up breaking something else, or you cannot use class without modifying tons of its options which modify its behavior smells like your class doing too much. Once I was working with the legacy class which had method "ZipAndClean", which was obviously zipping and cleaning specified folder... | |||
|
feedback
|
|
Another rule of thumb I'd like to throw in is the following: If you feel the need to either write some sort of cartesian product of cases in your test cases, or if you want to mock certain private methods of the class, Single Responsibility is violated. I recently had this in the following way: I had a cetain abstract syntax tree of a coroutine which will be generated into C later. For now, think of the nodes as Sequence, Iteration and Action. Sequence chains two coroutines, Iteration repeats a coroutine until a userdefined condition is true and Action performs a certain userdefined action. Furthermore, it is possible to annotate Actions and Iterations with codeblocks, which define the actions and conditions to evaluate as the coroutine walks ahead. It was necessary to apply a certain transformation to all of these code blocks (for those interested: I needed to replace the conceptual user variables with actual implementation variables in order to prevent variable clashes. Those who know lisp macros can think of gensym in action :) ). Thus, the simplest thing that would work was a visitor which knows the operation internally and just calls them on the annotated code block of the Action and Iteration on visit and traverses all the syntax tree nodes. However, in this case, I'd have had to duplicate the assertion "transformation is applied" in my testcode for the visitAction-Method and the visitIteration-Method. In other words, I had to check the product test cases of the responsibilities Traversion (== {traverse iteration, traverse action, traverse sequence}) x Transformation (well, codeblock transformed, which blew up into iteration transformed and action transformed). Thus, I was tempted to use powermock to remove the transformation-Method and replace it with some 'return "I was transformed!";'-Stub. However, according to the rule of thumb, I split the class into a class TreeModifier which contains a NodeModifier-instance, which provides methods modifyIteration, modifySequence, modifyCodeblock and so on. Thus, I could easily test the responsibility of traversing, calling the NodeModifier and reconstructing the tree and test the actual modification of the code blocks separately, thus removing the need for the product tests, because the responsibilities were separated now (into traversing and reconstructing and the concrete modification). It also is interesting to notice that later on, I could heavily reuse the TreeModifier in various other transformations. :) | |||
|
feedback
|
|
I've also been trying to get my head around the SOLID principles of OOD, specifically the Single Responsibility Principal, aka SRP (as a side note the podcast with Jeff, Joel and "Uncle Bob" is worth a listen). The big question for me is what problems is SOLID trying to address? OOP is all about modeling. The main purpose of modeling is to present a problem in a way that allows us to understand it and solve it. Modeling forces us to focus on the important details. At the same time we can use encapsulation to hide the "unimportant" details so that we only have to deal with them when absolutely necessary. I guess you should ask yourself, what problem is your class trying to solve? Has the important information you need to solve this problem risen to the surface? Are the unimportant details tucked away so that you only have to think about them when absolutely necessary? Thinking about these things results in programs that are easier to understand, maintain and extend. I think this is at the heart of OOD and the SOLID principals, including SRP. | |||
|
feedback
|