Coding Architecture
Coding Architecture
Is it clear who the key functional users are (roles, actors, etc) and how the
system caters for their needs?
It is clear that the above has been used to shape and define the
architecture?
Process View
Does your software automate or implement a business
process?
The process view allows you to show what the system does at a high level, and it
also provides you with an opportunity to show how the smaller steps within the
process fit together. This is particularly useful if the system is implementing or
automating a business process and can be used to highlight aspects such as
parallelism, concurrency, where processes fork or join, etc. A process view should
answer questions like the following.
Are the process steps, their order and the flow of information clear?
Are the major flows of information through the system well understood and
documented?
Again, this doesn't necessarily need to be a long section and diagrams can be used
to illustrate the processes. The UML activity diagram above is a very high-level
view of the overall process implemented by a software system. It shows the major
steps in the process, some of which are performed concurrently. Like thefunctional
view, this is another way to set the scene.
Non-functional View
Are there any significant system characteristics?
The non-functional view allows you to re-iterate or summarise the key nonfunctional requirements as well as explicitly highlighting those that are deemed as
architecturally significant and influence the architecture.
Have non-functional requirements that are usually taken for granted been
explicitly marked as out of scope if they are not needed (e.g. "user interface
elements will only be presented in English" to specify multi-language support
out of scope).
Extensibility
Flexibility
Auditability
Reliability
Interoperability
Accessibility
Typically, very few people will give you a set of non-functional requirements, let
alone write them down. This is why management of the non-functional
requirements is a key part of the software architecture role, so I find it useful to
include them in the software architecture document.
Constraints
If you have constraints, how do they affect the
architecture?
Software lives within the context of the real-world, and the real-world has
constraints. This section allows you to state these constraints so it's clear that you
are working within them and obvious how they affect your architecture decisions.
Constraints are typically forced upon you, usually by the organisation or customer
that has asked for the software system to be built. Example constraints include:
Public standards (e.g. HTTP, SOAP, XML, XML Schema, WSDL, etc).
Standard protocols.
Constraints may be imposed upon you but they aren't all bad. In the words of
T.S.Eliot, "Given total freedom the work is likely to sprawl". Give somebody one
week to do a task and that task will take one week. Give them two weeks and that
same task will take two weeks. Without constraints, there are often an infinite
number of ways to solve the problem. Reducing the number of available options
often makes your job designing software easier.
Such constraints have the power to massively influence the architecture,
particularly if they limit the technology that can be used to build the solution. If
constraints do have an impact, it's worth summarising them (e.g. what they are,
why they are being imposed and who is imposing them) and stating how they are
significant to your architecture. Doing this prevents you having to answer questions
about why you've seemingly made some whacky decisions.
Principles
The architectural principles section allows you to highlight those principles that
have been used (or you are using) to define the architecture. These could have
been explicitly asked for or they could be principles that *you* want to follow.
Example principles include; architectural layering, use of frameworks and libraries,
common design patterns and templates for building components and common
approaches (e.g. error handling, logging, etc).
Principles help you to introduce consistency and clarity into a software project, so
it's important that everybody on the team has a common understanding of them.
Logical View
What is your big picture?
The logical view is your big picture and allows you to present the structure of
the system through its components and their interactions. Typically this will
include high level technology choices, but the decision to include this is yours.
Does the logical view show external systems and any other dependencies at
a high level (low level detail about the dependencies isnt required here)?
Is it clear how the system works from the 30,000 foot view?
Interface View
Interfaces are risky - do you know how yours work?
Closely related to the logical view is the interface view. Interfaces are one of the
riskiest parts of any software system, so its very useful to show what the
internal/external interfaces are and how they work.
Are the key internal (e.g. databases, messaging systems, etc) and external
interfaces (e.g. other systems) well specified at a high level?
If messaging is being used, which queues (point-to-point) and topics (pubsub) are components using to communicate?
What format are the messages (e.g. plain text or XML defined by a
DTD/Schema)?
How often does the interface change and how is versioning handled?
Is the interface always available or do you (e.g.) need to cache data locally?
Design View
Do any of the lower level details need explaining?
The design view is where the lower level implementation details start to make an
appearance. For example, this could include information such as how your
architectural layering will be implemented through to documenting
blueprints/common usage patterns for the technologies/frameworks you have
chosen for the implementation. Depending on your team size, you may or may not
find including this low level of detail useful.
Are the diagrams (e.g. UML class and sequence) up to date and do they
reflect reality?
Is there too much detail?
Are any common wheels being reinvented? If so, why arent vendor/open
source products being used?
If the code isnt enough, is there enough information here to provide the
rest of the development team with an overview/the intent of how the designs
work?
Infrastructure View
Does the infrastructure support your software?
The infrastructure view is used to describe the physical hardware and networks on
which the software will be deployed. Often, you may not be involved in designing
the infrastructure, but you do need to understand that its sufficient for your
purposes.
If multiple boxes and sites are used, what are the network links between
them?
Deployment View
How does your software map onto the infrastructure?
The deployment view details how the software will be deployed onto the physical
infrastructure.
If this is still to be decided, what are the options and have they been
documented?
Has the rollout and recovery strategy been defined (this might be in a
separate document, but referenced)?
How are the components installed and configured?
Operational View
How is this achieved across all tiers of the architecture (e.g. from client tier
to database)?
Security View
Is security a key non-functional requirement?
Security is an important aspect of most systems, so its essential that it is thought
about and documented clearly. Having a dedicated security section provides a way
to explain how your architecture will meet security requirements such as
authentication, authorisation, data confidentiality, etc. Some organisations have
specialised security teams that will help with and/or need to review your work in
this area before deploying your system into a production environment. Being
explicit about security helps you spot any holes before its too late.
Authentication.
Authorisation.
Non-repudiation.
Network separation using firewalls and DMZs (red, amber, green model).
Runtime sandbox.
Signed binaries.
Data View
Is your software very data-centric?
A specific data view is worth including in your architecture diagram if your system
is data-centric; managing a large quantity of data or dealing with complex data
flows. This section can include information such as sizing and capacity planning
through to archives and backups.
Technology Selection
Why did you choose X?
Including a technology selection section in your software architecture document
gives you somewhere to document the decisions that went into choosing or not
choosing technologies. Its often useful to have a summary of these decisions so
that they can be referred to later in the project.
Architecture Justification
Does your architecture work?
This section provides a way for you to explicitly state how the non-functional
requirements you stated in the non-functional view are satisfied by your
architecture. This is an important yet often forgotten piece of the architecture
puzzle, and clearly communicating your architectures fitness for purpose will help
provide everybody with the confidence that your solution will work. If you built an
executable reference architecture to prove some of the key non-functional
requirements, this is where you can reference that work and the proof of its
success.
In the case of performance and scalability targets, are the test cases and
results referenced?
Has the architecture been reviewed by in-house security risk teams (if
applicable)?
The key question you're trying to answer here is whether your architecture "works".