Crushing Design Patterns with Scala! — Chain of responsibility

Posted on Sep 26, 2019

image

Starting this chain of responsibility of debunking the idea of really needing to use theDesign Patterns!. I believe that design patterns were created to standardise the OO patterns needed to solve the common problems arising due to not having a standard way of solving them using the programming language itself.

Design patterns should be used only as communication tool and not the way we have been using as a design tool. — Mr. Venkat Subramaniam

Coming on to our language, Scala, being a multi-paradigm programming language gets the goodness of both functional and OO worlds. This is truly visible with the functional magic being applied in the OO design patterns.

We will start with our pattern “Chain of Responsibility”, its definition says:

In object-oriented design, the chain-of-responsibility pattern is a design pattern consisting of a source of command objects and a series of processing objects. Each processing object contains logic that defines the types of command objects that it can handle; the rest are passed to the next processing object in the chain. A mechanism also exists for adding new processing objects to the end of this chain> - Wikipedia image

To put it simply, the chain of responsibility pattern can be considered as an assembly line, each processing unit doing their own part and then passing the other processing units.

Let’s consider a problem to solve. Consider You want to filter out (beep) profanity out of a public chat system (This example is inspired from Mykhailo Kozik’s post Clojure Design Patterns.).

Further more, you would only want to beep the profanity coming from a certain respectable person. You can leave the rest of the world with their freedom of expression ;)

Consider your chat stream looks something like this:

#format: [user] comment

[Suresh01] Hello!
[RameshXX] Hi Suresh, how are you.
[TheMostRejectableGuyInTown] Yo wazzup people.
[Suresh01] Not you again Ramesh! curse you!
[MrRespectable007] curse all of you, I curse the world!!

You would now want to extend this a little further and wanna have provision to log, reject and beep out (transform) certain words.

Solution:

Simple! We just need to filter the sh*t out of everything.

Let me talk a bit in Java now, we will create a Filter abstraction and create Rejector, Moderator, Logger etc implementations of it.

Abstraction for the Filter:

Implementations of the Filter:

Wow, that was some effort for such a simple task!

Now, let’s use the filters chained to work together in the order we define.

We could do the exact same thing with Scala too, well, it doesn’t restrict (or force) you from doing what you want! You are free to jump in your own created well.

If we take a step back and look at the pattern (or rather problem) again, we could see that we just care about the process method and the order in which they are applied.

Since, functions are the first class citizens in Scala, we could argue that we just want the methods and not the entire Filter classes, and some way of composing them.

Voila, we have our answer here, “functional composition” using andThen.

/* For single argument function, andThen method signature looks like */
trait Function1[-T1, +R] {
  def apply(v1: T1): R
  def andThen[A](g: R =< A): T1 =< A = { x =< g(apply(x)) }
}

In plain english, it takes function with input type the same as the return type of the current function it is applied on (R) and returning a new type (A) value. andThen passes the result of the current function to the function passed in and then returns output of the passed function.

Some syntactic sugar in Scala:

a.method(b.innerMethod(c)
/* is equivalent to */
a method (b innerMethod c)

a.method1(b).method2(c)
/* is equivalent to */
a method1 b method2 c

Now, using all our magic here,

Pretty neat huh! Remember, there is no magic just some hard work behind the scenes. In our case, it’s the Scala compiler.

Conclusion

In conclusion, we shouldn’t have to worry about writing tedious patterns for standard well known problems if the language itself provides them out of the box! We could just take a break from the computer screen and say “Hello world!” literally, in the time we save :)

Thank you! And here is Part-II.