Layering Software Architecture

I've seen many people describing software layers in the same old way, all over and over again. Here, I'm going to introduce my vision of how to layer the software architecture. This might seem like an outcome of the other definitions you can find online; however, the slight difference is in the accuracy of belongings to each layer. I hope that the readers will find it both refreshingly new and useful.

In my world, software architecture is layered as follows (description will come after the diagram):

UI layer is responsible for the presentation of the software. This is a common part of the most layering approaches.

Domain & DAL model is referenced by the UI layer. I understand that the name is a little bit unusual, but that's because this layer consists of 2 pieces that I want to consider as a whole - Domain and DAL (abstract). Domain is a sub-layer that contains the main model for the software. However, Domain usually references DAL in an abstract way, so the boundary between these two is somewhat blurry (or clearly, non-existent).

DAL (implementation) is another layer that actually references DAL abstractions (which are defined as part of Domain & DAL abstractions layer), and implements those abstractions in a concrete way, by incorporating database or other concrete means of the data source.

Database is an actual data source for the software.

Instantiation of the software happens inside UI layer (often expressed as a Client class in the UI layer). Here we have Domain's model instantiated by injecting DAL implementations into it.

 

Benefits of the Approach

Benefits achieved by using above layering approach include:

To take the most out of the layering approach described above, I would recommend following the topic of Modeling Software Architecture as well.

 

Drawing Parallel with Classic Approach

Now, let me draw a virtual association between the above approach and classic approach of layering software. Obviously, they translate into each-other, but I would always present it the way I showed above since that clearly depicts the layers and their responsibilities, as well as architectural correctness of the overall software.

Here is the diagram that shows classic layers on top of my layers introduced in this topic:

As you can see, UI (presentation) layer has the same boundaries in the classic approach. However, differences start popping up in the Business as well as DAL layers.

When designing business layers with classic approach, we often make it limited to the core domain objects only, by deferring the logic of manipulating business objects to DAL layer. That forces us to have DAL layer responsible for too many things; and next thing we do is, we make Domain layer aware of the DAL. This is a serious referential violation already, since business logic starts being aware of the platform-specific data source. So, if you have gone thus far, stop and rethink your layering approach.

 

Need help educating your entire team about software architecture topics like the one above? Check out my training courses on this subject.

 

About Author and Content

The author of the above content is Tengiz Tutisani.

If you agree with the provided thoughts and want to learn more, here are a couple of suggestions:

Ready to take the next step?

Let's Talk