Click here to Skip to main content
15,867,834 members
Articles / All Topics

10 Ways to Improve Your Software Architecture Design

Rate me:
Please Sign up or sign in to vote.
4.88/5 (15 votes)
9 May 2010CPOL9 min read 73.7K   25   9
You can improve the quality of your Software Architecture Design by using the following 10 tips. I use these 10 ...

You can improve the quality of your Software Architecture Design by using the following 10 tips. I use these 10 tips or guidelines daily and they have helped me in creating high quality Software Architectures. Describing your software architecture design is useful for any type of project, it will share the design of the system among your stakeholder.

My 10 ways are listed below:

  1. Based on non functional requirements
  2. Rationale, rationale, rationale
  3. Don’t Repeat Yourself
  4. Slice the cake
  5. Prototype
  6. Quantify
  7. Get it working, Get it right, Get it optimized
  8. Focus on the boundaries and interfaces
  9. The Perfect is the enemy of the Good
  10. Align with your stakeholders

1. Based on Requirements

You should base your software architecture design on the requirements of your stakeholders. An architecture focuses on the non-functional requirements. I see many software architecture designs based on purely technical motives. Each part of your design should be based on business requirements. You as an architect should translate these requirements into the right architectural design decisions. If the stakeholder values maintainability, you could use the layer pattern to separate several parts of the application. If performance is important, maybe layering is not a good solution. An exhaustive list of non-functional requirements can be found at ISO 9126 and at QUINT. If you do not use Non-functional requirements in your organization, but want to introduce them, take a look at this post.

Image 1

From the Non-functional requirements or quality attributes, you have to create the right design. While you could create this from scratch, there are many examples in the form of design patterns or architectural patterns. A design or architectural pattern expresses a relation between a problem and a solution. Although we often think that our problem is unique, this is often not the case. If you take a step back, you will see that many of our problems alreadyhave been solved using existing patterns. Two books that I can recommend are “Pattern-Oriented Software Architecture” and “Design Patterns”. Both books contain a catalog patterns. Each pattern describes the problem it solves and in which context it can be used. There are also many online pattern sources on the web such as this one on Wikipedia and this from The OpenGROUP.

2. Rationale, Rationale, Rationale

The most important aspect of your architecture description is the recording of your rationale behind your design decisions. It is important for a reader of the architecture description to understand the reason why you made a specific decision. Make your assumptions explicit and add them to the description. Assumptions may be invalid now or later but at least it will be clear how you came to that decision. It makes communicating with your team (you do communicate, do you?) that much easier if you share your rationale.

Image 2

Note that recording your rationale become much easier if your non-functional requirements are explicit. It will be much clearer if you describe that you created several components to increase the testability because testability is the most important requirements. Do describe the Why and How in your software architecture design!

3. Don’t Repeat Yourself (DRY)

Don’t Repeat Yourself (DRY) or Duplication Is Evil (DIE) come from software-engineering in general. The DRY principle is stated as “Every piece of knowledge must have a single, unambiguous, authoritative representation within a system”. You can apply this principle on many levels; Architecture, Design, Testing, Source Code and Data. For me, this is one of the most difficult things to uphold. You have to fight the repetition because it will slow you and your project down. The difficult part of this Repetition Creep as I call it is that it is introduced very slowly. The first repetition won’t hurt you directly, it will even gain some time. You are able to release the first version of the application somewhat quicker, but as I found it always shows up later and makes something else more difficult. At that moment, you regret the decision to introduce repetition.

Image 3

If you absolutely must add another copy of information, make sure that you automatically generate that copy of the information. It will make your life so much easier in the future. One thing that helps to fight repetition is to store the data where it belongs. This seems logical and is the basis of object oriented design but I often see this violated with regards to system architectures. For example, take packaging an application for deployment. The process in which you filter the build of your software to include the components that are necessary in a package. Where would you store the information which component should be included in the package? You could create a list that includes the names of the components that should be packaged. That means you introduce your first repetition! You now have two places where component names are mentioned. A better solution would be to add that information to the component itself.

When the first list in any format shows up in or around an application, alarm bells should sound and you should be on the lookout for repetition!

4. Slice the Cake

I struggled with naming this, but found Slicing the cake as it is called in Agile development the best description. By slicing the cake, I mean that you design your architecture iterative in vertical slices. An architect implements or prototypes each vertical slice to confirm if it actually works. You should do this because architectures cannot be created on paper. It does not mean that you cannot use horizontal layering or any other pattern in your architecture. In the case of layering, the horizontal layers are smaller. The picture below shows the principle.

Image 4

Say you use layering in your architecture design because your stakeholders expect that the components that you develop for this system will be used in other systems as well. During the first iteration, you design a small part of the User Interface (UI), a small part of the Business Layer (BL) and a small part of the Data Layer (DL). You make sure that this works as expected by proving it with a prototype or by actually implementing it. In the second iteration, you add new functionality and expand each layer horizontally with the needed functionality. The existing UI, BL and DL are combined with the new UI, BL and DL to form the new layers.

The difficulty with slicing is how to slice the cake so that the next slice will properly align with the previous.

5. Prototype

When creating a software architecture design, make sure that you prototype your design. Validate your assumptions, do that performance test and make sure that the security architecture is valid. A prototype will give you the opportunity to fail fast which is a good thing.

6. Quantify

This principle extends the first principle “Based on Requirements”. To be able to create a proper software architecture design, you need to quantify your Non-functional requirements. It should be “fast”, cannot be a requirement, neither is maintainable or testable. How will you know if you have met these requirements? You won’t.

Image 5

ISO 9126 and QUINT both describe ways to quantify the non-functional requirements. For example, testability specifies an indicator “number of test cases per unit volume”. QUINT also specifies how you can actually measure an indicator for example the indicator “Ratio Reused Parts” from the quality attribute Reusability which you can measure using the following protocol:

  1. Measure the size of each reused part
  2. Measure the size of the entire software product
  3. Calculate the ratio of reused parts, which is the sum of reused parts divided by (2)

7. Get It Working, Get It Right, Get It Optimized

In many projects, I have seen architects and developers design software architectures that focus on creating general purpose libraries, services or infrastructure. These are created without a direct reference to a concrete application. Instead, they are designing for tomorrow. This for me is like walking backwards, generality cannot be designed up-front. If you think, well… stop! you actually can’t. Today’s businesses change way too fast to design for generality up-front.

You should always start with a concrete implementation for a specific problem. At the time, you start working on the next application and find similarities, that’s the time to think about generalizing. This makes the first solution simpler, which should be your design goal.

8. Focus on the Boundaries and Interfaces

When creating your software architecture design, you should focus on the boundaries of your system and components. When starting blank, you should think about separation of concerns. What component or system has which responsibility? Between the components or system design explicit interfaces. Don’t separate a system of component when a lot of communication is necessary between these components or systems.

9. The Perfect is the Enemy of the Good

The phrase “The perfect is the enemy of the good” from Voltaire is also valid for software architecture design. How many times have you started a new project and thought I want this project to be perfect? And how many times have you actually found out that the project wasn’t perfect. Well, guess what – a project will never be perfect. There will always be problems or forgotten requirements.

Image 6

Perfection is never possible. However, you are able to create a good software architecture design. Do not try to analyze everything during the start of the project - it will slow you down. Watch out for Analysis Paralysis.

10. Align With Your Stakeholders

Before you can create any type of system, you need to identify your stakeholders. Each stakeholder has different needs of your software architecture and may require a different view. Software developers may need descriptions using Unified Modeling Language (UML) while business sponsors need a description in natural language. Operations and support staff for example may need other view such as context diagrams.

Image 7

There is a tension between creating all these views for stakeholders and principle 3. Don’t Repeat Yourself. Each view essentially describes the same system and adds repetition. Therefore, you should only add those descriptions that add value for a specific stakeholder.

Well, there you have it, my 10 tips to improve your Software Architecture Design. If you have another tip that you use to improve your architecture design, let me know in the comments!

This article was originally posted at http://www.semanticarchitecture.net?p=631

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect http://www.simpletechture.nl
Netherlands Netherlands
Patrick Kalkman is a senior Software Architect with more than 20 years professional development experience. He works for SimpleTechture where he helps teams develop state of the art web applications.

Patrick enjoys writing his blog. It discusses agile software development. Patrick can be reached at patrick@simpletechture.nl.

Published Windows 8 apps:


Published Windows Phone apps:


Awards:

Best Mobile article of March 2012
Best Mobile article of June 2012

Comments and Discussions

 
GeneralMy vote of 5 Pin
Habib_78628-Apr-13 8:47
Habib_78628-Apr-13 8:47 
Simply superb, got 5
GeneralWritten well Pin
thatraja26-Jul-10 19:14
professionalthatraja26-Jul-10 19:14 
GeneralRe: Written well Pin
Patrick Kalkman28-Feb-11 19:03
Patrick Kalkman28-Feb-11 19:03 
GeneralEvolving prototype to reality Pin
supercat910-May-10 5:38
supercat910-May-10 5:38 
GeneralRe: Evolving prototype to reality Pin
Patrick Kalkman10-May-10 9:26
Patrick Kalkman10-May-10 9:26 
GeneralRe: Evolving prototype to reality Pin
supercat910-May-10 12:34
supercat910-May-10 12:34 
GeneralMy vote of 1 Pin
SledgeHammer019-May-10 7:43
SledgeHammer019-May-10 7:43 
GeneralLooks good! Pin
Sandeep Mewara9-May-10 4:52
mveSandeep Mewara9-May-10 4:52 
GeneralRe: Looks good! Pin
Patrick Kalkman9-May-10 7:25
Patrick Kalkman9-May-10 7:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.