What is the functional programming equivalent of the decorator design pattern?
For example, how would you write this particular example in a functional style?
|
What is the functional programming equivalent of the decorator design pattern? For example, how would you write this particular example in a functional style? |
|||||||||
|
|
In functional programming, you would wrap a given function in a new function. To give a contrived Clojure example similar to the one quoted in your question: My original drawing function:
My function wrappers:
These return a new function that can be used anywhere the original drawing function is used, but also draw the scrollbars. |
|||
|
|
|
You can "decorate" functions by wrapping them inside other functions, typically using some form of higher order function to perform the wrapping. Simple example in Clojure:
This technique is used extensively in functional libraries. A good example is wrapping web request handlers using Ring middleware - the linked example wraps parameter handling for html request around any existing handler. |
||||
|
|
|
Currying functional parameters / composition is the closest equivalent. However, it's a mistake to even ask this question, because patterns exist to compensate for weaknesses in the host language. If C++/Java/C#/any other practically identical language had a decoration feature built into the language, you wouldn't think of it as a pattern. It just so happens that "patterns" are patterns for structuring systems in early-bound imperative objective-oriented languages, usually without autoboxing, and with relatively thin protocols for the root class. |
|||||||||||||||||||||
|
|
Something like this:
|
|||||||||
|
|
Ok, first of all lets try to find all the main components of decorator pattern in respect to OOP. This pattern is basically used to decorate i.e add additional features to an existing object. This is the simplest possible definition of this pattern. Now if we try to find the same components that are there in this definition in the world of FP, we can say that additional features = new functions and object are not there in FP, rather FP has what you call data or data structure in various forms. So in FP terms this patterns becomes, adding additional functions for FP data structures or enhancing existing function with some additional features. |
||||
|
|
|
I'm not 100% sure but I think the C9 lecture series on advanced functional programming explains the problem really good. Aside from this you can use just the same technique inside F# (it supports just the same OO mechanism) and in this special case I would do so. I guess it's a matter of tast and the problem you are trying to solve. |
|||
|
|
|
The Joy of Clojure talks about this very issue in chapter 13.3, "A lack of design patterns". According to the JoC, the |
|||
|
|
|
In Haskell, this OO pattern translates pretty much directly, you only need a dictionary. Note that a direct translation is not actually a good idea. Trying to force a OO concept into Haskell is kind of backwords, but you asked for it so here it is. The Window Interface Haskell has classes, which has all the functionality of an Interface and then some. So we will use the following Haskell class:
The Abstract WindowDecorator class This one is a bit more tricky since Haskell has no concept of inheritance. Usually we would not provide this type at all and let the decorators implement
Note that we provide a default implementation of The decorators Making decorators can then be done as follows:
Finishing Up Finally we can define some windows:
|
|||
|
|
|
Here's an example using JSGI, a web server API for JavaScript:
Compliant middleware can be stacked, of course (e.x. |
|||
|
|