One of the hottest topics of the moment in the rails community is application design or architecture. There is an obsession (a good one, I think) with clean, decoupled code, that is easy to maintain and extend. This has led to things such as presenters, service objects, to some extent even rails concerns.
This is all fine and dandy, but I believe that in order to get closer to that utopic dream of the perfect system, more drastic and profound changes must happen. We need an architectural change, that shakes the foundations how we approach the writing and thought process of a rails application. To this, Uncle Bob has called the Clean Architecture.
The main igniters of this idea and therefore this article are a talk and an article by Uncle Bob Martin, but a lot has been written and spoken on the subject by a lot of different people and you can find the links I find more relevant on the bottom. They provide a good (mostly) theoretical overview of the problem and solutions, whereas this post aims at proving a very concrete solution with code samples in Ruby and Ruby on Rails, which is something I could not find anywhere.
The Basics
For those of you who don’t have the time to read the links, just want to brush off on some of the basic concepts or for the sake of us being able to communicate in the same vocabulary, let’s go ahead and define those concepts.
First off here’s a high level view of the clean architecture according to Uncle Bob:
As you can see there are different layers in the application, going inside out, the first two are the core of the app, where all the business rules and objects live. The other two are the “details”, the delivery mechanisms (in our case it will be Ruby on Rails), the databases (in our case postgresql), etc…
Entities
Entities are business objects, functions or data structures, that are responsible for all the non application specific business rules.
This means that if you have multiple applications that share the same domain (business) objects, the entities should not need to change in order to be usable by all of them.
Interactors or Use Cases
Interactors represent the layer for application specific business rules.
This is where most of the magic happens, they control the entire flow of the application, using entities, but never changing them.
They should not, however, be affected by changes to the UI, whichever they may be.
Boundaries or Adapters
A boundary is the interface that translates information from the outside into the format the application uses, as well as translating it back when the information is going out.
These boundaries may not be explicit, so much as they are logical or conceptual. In any case, they are there and you should be aware of it.
The Dependency Rule
This is the single most important concept, and you must always take it into consideration.
The dependency rule states that source code dependencies can only point inward.
There’s a generalization of the rule that applies to any application, source code dependencies can only point in one direction.
Applying it to the Real World™
By now you should at least know why such an architecture is important, and the main characters that come into play.
But, as I’ve said before, applying all of this into a real case scenario is what you probably don’t know and/or are curious about.
Our approach
We have to start somewhere, and we want to start on the right path, the best way I know how to do that is through a use-case & test driven approach.
I like this approach for two reasons:
- We need tests to guide us and to provide confidence in the code base
- Use-cases don’t let us stray from what brings value to the business
I’m not going to digress a lot into why TDD is awesome and you should do it, since there are a lot of resources out there on the subject. I will say that we’ll mostly be following Ian Cooper’s ideas on testing, for which the gist is the trigger for a new test should be a new use case, not a new class or method.
As for use cases, you can read Alistair Cockburn’s lovely book on the subject. But they should look something like this:
Notice that we have a main path and an alternative, which can also represent what to do in case of error. Also, there is no reference to anything related to the web, the use case level should be delivery mechanism agnostic. In other words, it must work the same way regardless of being used on the web, desktop or CLI.
The test
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Now we have a test for the behaviour we expect, we just need to let it guide us.
Side note: This test was not written all at once, I followed the three rules of TDD to get here.
The interactor
The code to make this test pass (minus the private methods) is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
The Interactor - step by step
There are a lot of interesting bits of code in our interactor, and a lot of decisions that were made. Let’s take a closer look at each of them.
Repositories (Gateways)
In order to abstract the persistence mechanism I decided to use the Repository Pattern, in which we have repositories for each type of persistence mechanism we want to use and that can be used interchangeably.
Sounds a lot like an interface? Well, it is, kind of… In Ruby we don’t have interfaces, we just go ahead an use what we call a duck type.
Here’s an example of an in memory repository:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
What’s really relevant here is the object’s public API, it’s interface, the
save(member)
, all
, first
and last
methods, since they’re what defines a
valid repository for a member.
The Repo Boss
Someone, somewhere needs to know which repository to use for each entity or use
case (repositories do not need to exists in a 1-1 relation with entities, even
though most of the time they do). That someone is a very simple class I call
Repository
, which tracks the registration of repositories:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
As you might have guessed, we then need to register the repositories we want. That is very simple and very easy to hide behind some sort of configuration, but here’s how it’s done:
1 2 3 4 5 6 7 |
|
After all this setup is complete, you can access repositories the way it is shown in lines 3 and 4 of the interactor.
Member Entity
Entities should have a bunch of attributes and some methods that operate on them, that enforce non app specific business rules.
A simple approach to it could be this:
1 2 3 4 5 6 7 8 9 10 11 |
|
There might be ways of doing this that are more elegant or clever, you could,
for instance, extract common attributes such as id
, created_at
and
updated_at
(or you could not even store them here, if you feel they are to
“railsy”). For now this approach will suffice, though.
Validations
On line 10 of the interactor you can see the method valid?
being called on the
member entity. The easiest way I could think of to implement validations was
this:
1 2 3 4 5 6 7 8 9 10 |
|
That needs a tiny wrapper to be rails compliant, to which I called ValidationErrors
.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
If you have no problems with including ActiveModel
, you can add it as a gem
and do simply this:
1 2 3 4 5 |
|
As with any good engineering problem, there is no correct answer. There are trade offs in both solutions, one may take longer to implement, but is small, the other has everything you need and probably a bunch of other stuff as well. Pick your poison.
Database dependent validations
What about validations that depend on the database, such as validating uniqueness, you might ask. The easier way would be to add that validation on the repository, but that would spread business rules for an entity across multiple files and we don’t want that.
The solution we came up with is to have a generic unique?
method on the
repository and calling in from the entity:
1 2 3 4 |
|
The implementation of the unique?
method for the in memory repository is as follows:
1 2 3 4 5 6 |
|
Crossing Boundaries
A very important part of this whole architecture is crossing layer boundaries, especially the boundary that separates the application from the delivery mechanism. You want to make sure not to pass entities around, since they come with a bunch of business rules attached, instead you should pass value objects, or plain data structures.
I prefer to pass data structures, but have the serialization from entity to data
abstracted on a method called value
, which allows for the interactor to do
what it is doing on line 14:
1
|
|
What does that value
do, you might ask. It simply calls a serializer.
Serializers
The value of an entity can be defined as follows:
1 2 3 |
|
It takes an object (in this case an entity), and serializes it’s attributes,
which, by default, it assumes come from an attributes
method. The serialize
method can handle both an hash with all the attributes, in which case it just
returns it, or an array with just their names, from where it can create the hash
with the names pointing to the values.
1 2 3 4 |
|
ActiveRecord Repository
We’ve already talked about repositories and that they are duck types for a gateway’s logical interface, you even saw an implementation in memory. But since a very common pattern is to use Rails with ActiveRecord, I feel like I should show how an AR implementation looks like.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
There are a few things of note here. One of the most obvious is that we define the “model”, i.e. the class that inherits from AR::Base, as an inner class of the repository. We do this because we don’t (and shouldn’t) need to use it anywhere else, in fact, all references to AR should be encapsulated by the AR repository.
This leads us to the next thing of note, the fact that we do not return nor an AR object, nor an AR relation. The interactor (which will be calling this) only knows how to deal with entities, so we get the value from the AR object, using a serializer, and wrap it in an entity. All references to AR are gone.
Connecting with Rails
Now we have a working application (hopefully), we just need a way to deliver it to our clients. We can do that using a CLI, web app, desktop app, REST API, or any other way we so choose. As an example I chose to deliver it as a Rails app.
There are basically two steps in making this work with a Rails app:
- Deploy our core application as a gem
- Require, configure and use it from the rails app
The gem
I’ll not get into details on how to create gem, as that goes way beyond the scope of this article which is already extensive, there are just a few “tips” to make it easier to use.
A good way to make your gem painless to use is to autoload most of the stuff when it is required. So your main file should look somewhat like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
Another must have for a gem is to be configurable, I do it like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
With this configuration options I allow the delivery mechanism to choose which repository to use for each of the repositories that are available.
The Rails app
Using the gem in the Rails app is even simpler, you just include it on the Gemfile:
1
|
|
Require and configure it:
1 2 3 4 |
|
And finally, use it:
1 2 3 4 5 6 7 |
|
As simple as that.
Conclusion
I truly believe this is a great way to build applications, and even though some of my solutions might have room for improvement, the overall architecture and underlying ideas are very mature and should definitely be taken into consideration.
Here’s a recap of the main ideas covered in this article:
- The application should not depend on the delivery mechanism or database, those are details
- The application’s functionality should be driven by use cases
- The application’s design should be driven by tests
Everything that follows is a consequence of this.
A nice side effect of using this architecture is that there is no need to load entire frameworks such as rails, or using a real database to run your unit tests (you might want to do integration and system tests, but that’s for another day) which means they are fast.
Here’s the tests for the service that does the same as the interactor, but from the rails app:
Notice that it takes 3.96s to run the tests. Now for the interactor with the clean architecture:
Notice that I’ve added more tests and yet it takes only 0.54s to run them all. It’s an 86.4% improvement in testing time! When doing TDD you should be running your test every 30s or so, that’s a gain of approximately 54 minutes per work day.
Relevant Links
- Architecture, Use Cases and High Level Design by Uncle Bob Martin
- Boudaries by Gary Bernhardt
- Clean Coders Discussion Board
- Ports and Adapters by Alistair Cockburn
- Hexagonal Architecture for Rails Developers by Victor Savkin
- Hexagonal Rails by Matt Wynne