Title: Chapter 6, System Design Lecture 1
1Chapter 6, System DesignLecture 1
2Software Lifecycle Activities
...and their models
System Design
Object Design
Implemen- tation
Testing
Requirements Elicitation
Analysis
3Architecture
- There are two ways of constructing a software
design One way is to make it so simple that
there are obviously no deficiencies, and the
other way is to make it so complicated that there
are no obvious deficiencies. - - C.A.R. Hoare
4Analysis vs. Architecture vs. Detailed Design
- Analysis models
- preliminary models of objects, classes, and their
interactions based on customers view knowledge
of SE - Used as the input for the Architecture and
Detailed Design - OO systems are developed using a Middle-out
approach, not top down - Architecture and Detailed Design models are
defined iteratively
Architecture Models
Analysis Models
Detailed Design Models
5Purpose of Software Architecture Model
- abstract solution to conquer complexity
- supports reuse
- Subsystem can be re-used in different product,
similar product (i.e., product line) - facilitates (integration) testing
- Subsystems are the chunks that are integrated
- parallel development
- Subsystems can be developed in parallel by
different teams - supports system evolution
- clear description of the capabilities of each
subsystem and how the subsystems interact
6System Design
System Design
Failure
2. System
Decomposition
Subsystems, interfaces Coherence/Coupling
7. Software Control
Monolithic Event-Driven Threads Conc. Processes
3. Concurrency
6. Global
4. Hardware/
Identification of Threads
5. Data
Resource Handling
Softwar
e
Management
Mapping
Access control Security
Persistent Objects
Special purpose
Files
Buy or Build Trade-off
Databases
Allocation
Data structure
Connectivity
7How to use the results from the Analysis for
System Design
- Nonfunctional requirements gt
- Activity 1 Design Goals Definition
- Use Case model gt
- Activity 2 System decomposition
- Select subsystems based on functional
requirements, coherence, and coupling - Use architectural styles (also known as
architectural patterns) - Static model gt
- Activity 4 Hardware/software mapping
- Activity 5 Persistent data management
- Dynamic model gt
- Activity 3 Concurrency
- Activity 6 Global resource handling
- Activity 7 Software control
- Activity 8 Boundary conditions
8Section 1. Design Goals
- Reliability
- Modifiability
- Maintainability
- Understandability
- Adaptability
- Reusability
- Efficiency
- Portability
- Traceability of requirements
- Fault tolerance
- Backward-compatibility
- Cost-effectiveness
- Robustness
- High-performance
- Good documentation
- Well-defined interfaces
- User-friendliness
- Reuse of components
- Rapid development
- Minimum of errors
- Readability
- Ease of learning
- Ease of remembering
- Ease of use
- Increased productivity
- Low-cost
- Flexibility
9Relationship Between Design Goals
End User
Functionality User-friendliness Ease of Use Ease
of learning Fault tolerant Robustness
Low cost Increased Productivity Backward-Compatib
ility Rapid development Flexibility
Runtime Efficiency
Reliability
Portability Good Documentation
Client
(Customer,
Sponsor)
Minimum of errors Traceability of
requirements Modifiability, Readability Reusabilit
y, Adaptability Well-defined interfaces
10Typical Design Trade-offs
- Functionality vs. Usability
- Cost vs. Robustness
- Efficiency vs. Portability
- Rapid development vs. Functionality
- Cost vs. Reusability
- Backward Compatibility vs. Readability
11Nonfunctional Requirements give a clue for the
use of Design Patterns
- Use textual clues (similar to Abbots technique
in Analysis) to identify design patterns - Text manufacturer independent, device
independent, must support a family of products - Abstract Factory Pattern
- Text must interface with an existing object
- Adapter Pattern
- Text must deal with the interface to several
systems, some of them to be developed in the
future, an early prototype must be
demonstrated - Bridge Pattern
12Textual Clues in Nonfunctional Requirements
- Text complex structure, must have variable
depth and width - Composite Pattern
- Text must interface to a set of existing
objects - Façade Pattern
- Text must be location transparent
- Proxy Pattern
- Text must be extensible, must be scalable
- Observer Pattern
- Text must provide a policy independent from the
mechanism - Strategy Pattern
13Section 2. System Decomposition
- Subsystem (UML Package, stereotyped)
- Collection of classes, associations, operations,
events and constraints that are interrelated - Use requirements and analysis model to select
architecture style - interface
- Group of services, operations provided by the
subsystem - Use requirements and analysis models subsystem
descriptions to identify interfaces - Specified by Subsystem interface
- Specifies interaction and information flow
from/to subsystem boundaries, but not inside the
subsystem. - Should be well-defined and small.
14Services (UML Interfaces)
- Service A set of related operations that share a
common purpose - Notification subsystem service
- LookupChannel()
- SubscribeToChannel()
- SendNotice()
- UnscubscribeFromChannel()
- Services are defined in Architecture model (UML
interface) - Services are refined in detailed design
- Set of fully typed operations.
15Choosing Subsystems
- Criteria for subsystem selection
- Use quality measurements
- Minimize coupling and maximize cohesion
- Design goals
- e.g., performance, security, adaptability, etc.
- Question is it possible to have maximum cohesion
and minimum coupling for all design goals?
16Coupling and Coherence
- Goal Reduction of complexity
- Coherence measures the dependence among classes
- High coherence The classes in the subsystem
perform similar tasks and are related to each
other (via associations) - Low coherence Lots of misc and aux objects, no
associations - Coupling measures dependencies between subsystems
- High coupling Modifications to one subsystem
will have high impact on the other subsystem
(change of model, massive recompilation, etc.) - Subsystems should have as maximum coherence and
minimum coupling as possible - How can we achieve loose coupling?
- Which subsystems are highly coupled?
17Styles
- A large system may be decomposed into subsystems
using one or more architectural styles - For example
- distributed system may use a client server style
- the server may also use a layered style
18Subsystem Decomposition into Layers
- Subsystem Decomposition Heuristics
- No more than 7/-2 subsystems
- More subsystems increase coherence but also
complexity (more services) - No more than 5/-2 layers
- Layer n depends upon Layer n1 to provide services
19Virtual Machine (Dijkstra, 1965)
- A system should be developed by an ordered set of
virtual machines, each built in terms of the ones
below it.
Problem
VM1
C1
C1
C1
attr
attr
attr
opr
opr
opr
C1
C1
VM2
attr
attr
opr
opr
C1
VM3
C1
attr
attr
opr
opr
C1
VM4
attr
opr
Existing System
20Virtual Machine
- A virtual machine is an abstraction that provides
a set of attributes and operations. - A virtual machine is a subsystem connected to
higher and lower level virtual machines by
"provides services for" associations. - Virtual machines can implement two types of
software architecture closed and open
architectures.
21Closed Architecture (Opaque Layering)
- A virtual machine can only call operations from
the layer below - Design goal High maintainability
22Open Architecture (Transparent Layering)
- A virtual machine can call operations from any
layers below - Design goal Runtime efficiency
VM1
VM2
VM3
VM4
23Properties of Layered Systems
- Layered systems are hierarchical.
- reduces complexity
- Closed architectures are more portable.
- Open architectures are more efficient.
- If a subsystem is a layer, it is often called a
virtual machine.
24Software Architectures
- Subsystem decomposition
- Identification of subsystems, services, and their
relationship to each other. - Specification of the system decomposition is
critical. - Patterns for software architecture include
- Client/Server Architecture
- Peer-To-Peer Architecture
- Repository Architecture
- Model/View/Controller
- Pipes and Filters Architecture
-
25Client/Server Architecture
- One or many servers provides services to
instances of subsystems, called clients. - Client calls on the server, which performs some
service and returns the result - Client knows the interface of the server (its
service) - Server does not need to know the interface of the
client - Users interact only with the client
26Client/Server Architecture
- Often used in database systems
- Front-end User application (client)
- Back end Database access and manipulation
(server) - Functions performed by client
- Customized user interface
- Front-end processing of data
- Initiation of server remote procedure calls
- Access to database server across the network
- Functions performed by the database server
- Centralized data management
- Data integrity and database consistency
- Database security
- Concurrent operations (multiple user access)
- Centralized processing (for example archiving)
27Peer-to-Peer Architecture
- Generalization of Client/Server Architecture
- Clients can be servers and servers can be clients
- More difficult because of possibility of deadlocks
28Model/View/Controller
- Subsystems are classified into 3 different types
- Model subsystem Responsible for application
domain knowledge - View subsystem Responsible for displaying
application domain objects to the user - Controller subsystem Responsible for sequence
of interactions with the user and notifying views
of changes in the model. - MVC is well suited for interactive applications
29Example of a File System based on MVC
Architecture
30Repository Architecture
- Subsystems access and modify data from a single
data structure - Subsystems are loosely coupled (interact only
through the repository) - Control flow is dictated by central repository
(triggers) or by the subsystems (locks,
synchronization primitives)
31Summary
- Abstract solution to conquer complexity
- Supports reuse
- Subsystem can be re-used in different product,
similar product (i.e., product line) - Facilitates (integration) testing
- Subsystems are the chunks that are integrated
- Parallel development
- Subsystems can be developed in parallel by
different teams - Supports system evolution
- clear description of the capabilities of each
subsystem and how the subsystems interact - Goal Low coupling, high cohesion
- Use architectural styles or patterns
- Predefined solutions to well known problems
32Summary
- Design Goals Definition Trade-off
- Describes and prioritizes the qualities that are
important for the system - Defines the value system against which options
are evaluated - Open research problem
- Kazman, Garlan, others working on this problem