What is a fluent interface? I can't find a good definition of this, but all I get are long code examples in a language I am not very familiar with (e.g. C++).
Also, what is a leaky abstraction?
Thanks
|
|
What is a fluent interface? I can't find a good definition of this, but all I get are long code examples in a language I am not very familiar with (e.g. C++). Also, what is a leaky abstraction? Thanks
|
|||
|
|
|
|
Neal Ford does a nice job of explaining and giving Fluent Interface examples in his book the 'Productive Programmer'. Traditional Object or 'bean' with getters/setters:
Meet the same need with a fluent interface:
|
||
|
|
|
|
Thanks guys. Great description. My thought about fluent interfaces where that they were for readability. I could always read a chain of methods and how one is related to the previous/next method. E.g. like the poster who posted the validation example (I have written code similar to that before). |
||
|
|
|
|
A leaky abstraction is an abstraction where the details of the underlying reality often "leaks through". All abstractions lie more or less, but sometimes the abstractions is such a bad fit to the underlying reality, that is causes more harm than it helps. A simple example of a "leak" in an abstraction might be the usual float type. It seems to represent general real numbers and you can use it to perform basic calculations. But at some time you encounter a scenario where 1/3*3 != 1 or 1 + 10^-20 = 1. That is when the actual implementation details leak through and the abstraction breaks. |
||
|
|
|
|
An object-oriented interface is fluent if methods that are executed for side effect return I first encountered fluent interfaces in 1990 when the Modula-3 Interface Police (I am not making this up) required all initialization methods to return the object initialized. I believe this usage predates the coinage of the term "fluent interface". |
||
|
|
|
|
A fluent interface is an API that allows you to write code that reads more or less like normal English. For example:
Method-chaining is usually used as part of the implementation, but there is more to it than that. To quote Fowler:
It is also often called an internal DSL, since the syntax resembles that of a DSL, but it is implemented inside the host language instead of being processed by a parser. |
|||
|
|
|
|
In a fluent interface, a object's methods will return a reference to the object, so that you can chain the method calls together. For example, in NValidate, I did this to simplify parameter validation:
I can't speak to leaky abstractions, though. |
||
|
|
|
|
Here's a regular every-day interface:
And here's a fluent interface:
The most obvious difference is that when we return a void, we return instead an instance of the interface type. What's understood is that the interface returned is the CURRENT INSTANCE, not a new instance of the same type. Of course, this isn't enforceable, and in the case of immutable objects (like string) it is a different instance but can be considered to be the same instance only updated. Here are examples of their use:
Notice that the fluent interface is easier to use when chaining different calls. IRL, check out the Linq extension methods and how each call is designed to flow into another. None of the methods return void, even if it would be a valid result. |
||
|
|
|
|
A fluent interface a term Eric Evans coined and it's just another name for method chaining. Martin Fowler wrote a couple of articles on this subject, but it roughly looks like this:
Fluent interface are generally used to create named parameters in a language that doesn't support them (the Named Parameter Idiom in C++ for example), or in Domain Specific Languages to make the code read more fluently. I've seen them being used for everything from image processing libraries, to regular expression libraries, 3D libraries. Other examples include the construction of tree structures, lists, or other datastructures. Everything that requires the construction of complex objects (load of parameters) can make use of Fluent Interfaces to make it more readable. For example, compare the previous example to the CreateWindow function call:
|
||||
|
|
|
Leaky abstraction from our overlord http://www.joelonsoftware.com/articles/LeakyAbstractions.html |
||
|
|