Avoid directly using 3rd party classes at the boundaries of your architecture

May 02 · 14 mins read

That’s a big lesson I learned recently:

Avoid directly using third party classes at the boundaries[1] of your architecture. This advice still applies even when you think that these third party classes are very very small and that they will not bring harm to your architecture. (They will bring harm, when the requirements change; and the requirements most probably will change.)

I will start the explanation of this discovery (or, I should say, one of my first-hand experiences of the discovery of others) with a story. I might later write on this discovery again minus the story, but in this post I will tell the story behind it. (It seems to me that in our world, there are always stories behind our discovery of truths, and there are always stories behind the stories of our discovery of truths, and so on. And, as I suppose some of our thinkers today say, if we forget the stories we also tend to forget about the truths behind those stories; and we forget why these truths are important; then civilization collapses.)

So here goes the story…

Two nights ago, I was reading “Patterns, Principles, and Practices of Domain-Driven Design” by Scott Millett. I came across this example of a Command Handler:

public class CreateOrUpdateCategoryHandler
{
    // ...
    public ICommandResult Execute(CreateOrUpdateCategoryCommand command)
    {
        // ...
    }
}

There is this note that goes with that example: “A command handler only returns an acknowledgement of the success or failure of a command; you should not use it to query or report in the domain state.”

Now, if you have encountered some relatively older examples of a command handler, like the ones given by Steven van Deursen, you might have learned that command handlers should not return anything, or that they should return void, like in this example:

public interface ICommandHandler<TCommand>
{
    void Handle(TCommand command);
}

More recent examples of a command handler, such as those given by Vladimir Khorikov, returns objects (an instance of Result in the following code sample) which tells about the success or failure of the operation:

public interface ICommandHandler<TCommand>
{
    Result Handle(TCommand command);
}

That example from Vladimir Khorikov looks similar to the example I found in the PPPDDD book, which looks something like this:

public interface ICommandHandler<TCommand>
{
    ICommandResult Handle(TCommand command);
}

Those last two examples look the same, right? Hmmmm… :thought_balloon: It might seem like they look the same at first glance, but there is a subtle difference: The Result class is from a third party library called CSharpFunctionalExtensions, while ICommandResult class is hand-crafted or custom-made.

And when it comes to third party classes or libraries, I tend to remember this statement from Uncle Bob Martin[2]: These third party classes, libraries, or frameworks are…

“… written by people to solve certain problems that they have. Those problems may be similar to yours, but they are not yours. You have different problems…”

And here’s more[2]:

“Over the years, I’ve adopted a healthy skepticism about frameworks. While I acknowledge that they can be extremely useful, and save a boatload of time; I also realize that there are costs. Sometimes those costs can mount very high indeed.

“So my strategy is to keep frameworks… at arm’s length; behind architectural boundaries. I get most of the benefit from them that way; and I can take ruthless advantage of them.

“But I don’t let those frameworks get too close. I surrender none of my autonomy to them…”

I forgot those words of wisdom from Uncle Bob just recently :smile:

— Oh wait! I did not forget them. Only that I also heard Uncle Bob say something like “we also use libraries inside our core domain, such as the the .NET Collections or the Java Collections library, but this decision involves kind of a conscious decision of using them”. Those are not his exact words, but a paraphrase of what he said.[3]

… Recently, I had this problem where I needed to return a success or failure indicator from my command handlers. So I made the conscious decision of using the Result class from CSharpFunctionalExtensions as my return type. “What wrong can it cause!?”, I told myself, “It’s just a small library, a tiny class; it will cause no danger to the app.”

And so I started using this Result class as the return type in my command handler:

public interface ICommandHandler<TCommand>
{
    Result Handle(TCommand command);
}

… A few months later, there was a new requirement: I needed to return a custom error from my command handlers. Whew, that’s easy! I will just have to create another kind of command handler and use a custom Result with error, Result<Error>, as my return type!:

public interface ICommandWithErrorHandler<TCommand>
{
    Result<Error> Execute(TCommand command);
}

… Wait!…

I cannot do Result<Error> in CSharpFunctionalExtensions!!!

But I later found out that the way to do custom errors in CSharpFunctionalExtensions is to use Result<T,E>, so I have to use an Empty class in my command handler to indicate that I don’t want to return state from my command handlers:

public interface ICommandWithErrorHandler<TCommand>
{
    Result<Empty, Error> Execute(TCommand command);
}

Tsk tsk! Look at that. Imagine having Result<Empty, Error> all over your app! It will look very messy, I think.

What’s worse is that I now have two kinds of command handlers in my app: one which returns Result and another one which returns Result<Empty, Error>. Had I used a custom class for this, like the ICommandResult in the following code, it would have looked much simpler:

public interface ICommandHandler<TCommand>
{
    ICommandResult Handle(TCommand command);
}

public interface ICommandResult
{
    bool Succeeded { get; }
    Error Error { get; }
}

Sad.. :disappointed:

And, what if, in the future, there is another requirement which goes something like “the command handlers need to return many error messages at once”. If I am using the third party Result class, I will have to create another kind of command handler for that!

public interface ICommandWithErrorListHandler<TCommand>
{
    Result<Empty, IEnumerable<Error>> Execute(TCommand command);
}

Whew!

Solving this problem would have been easier had I used my own custom return type in my command handlers in the first place:

public interface ICommandHandler<TCommand>
{
    ICommandResult Handle(TCommand command);
}

public interface ICommandResult
{
    bool Succeeded { get; }
    Error Error { get; }
    IEnumerable<Error> ErrorList { get; }
}

… See that? I would just have to add a new property named ErrorList to solve the problem. (The Error property will remain in there for backwards compatibility.)

This made me come to the realization that using third party libraries at the boundaries of the architecture is like assuming that you know all the problems you will encounter in the future; or that you know all the problems that the ones who will maintain your app will encounter in the future. Sad. :laughing:


Update (Dec 1, 2020):

While reading “Who Needs an Architect?” of Martin Fowler (which I rediscovered from here), I found a more fundamental principle behind the rule about directly using third party classes at the boundary of our architecture: we should aim to reduce irreversibility in software designs

At a fascinating talk at the XP 2002 conference (http://martinfowler.com/articles/xp2002.html), Enrico Zaninotto, an economist, analyzed the underlying thinking behind agile ideas in manufacturing and software development. One aspect I found particularly interesting was his comment that irreversibility was one of the prime drivers of complexity. He saw agile methods, in manufacturing and software development, as a shift that seeks to contain complexity by reducing irreversibility — as opposed to tackling other complexity drivers. I think that one of an architect’s most important tasks is to remove architecture by finding ways to eliminate irreversibility in software designs.

If we directly use third party classes at the boundaries of our architecture, it will be hard to reverse our changes at the boundary in case we made a mistake.


[1] I’m not yet sure whether or not this kind-of rule only applies to boundary classes that make use of the same type, like when all command handler classes are using the ICommandHandler interface throughout the app.

[2] from blog post “Framework Bound”

[3] I cannot locate for now the place where he said that. I will just update this post when I find it later.

Buy Me A Coffee