CMPT 275 High Level Design Phase Architecture Modularization - PowerPoint PPT Presentation

1 / 46
About This Presentation
Title:

CMPT 275 High Level Design Phase Architecture Modularization

Description:

The results of the design phase feeds directly into the implementation phase ... Identify design goals (choose aspects of the system to be optimized) ... – PowerPoint PPT presentation

Number of Views:258
Avg rating:3.0/5.0
Slides: 47
Provided by: jr2
Category:

less

Transcript and Presenter's Notes

Title: CMPT 275 High Level Design Phase Architecture Modularization


1
CMPT 275 High Level Design Phase
Architecture Modularization
2
Objectives of Design
  • The design phase takes the results of the
    requirements analysis phase and evolves these
    results further
  • Use cases and use case diagrams
  • Context diagram, requirements, class diagrams,
    state diagrams
  • The results of the design phase feeds directly
    into the implementation phase
  • Requirements analysis ? WHAT the system must do
  • Next Goal determine HOW the software system is
    to accomplish what it must do

3
Map of design phase
DESIGN
object design or
System design or
LOW LEVEL DESIGN
HIGH LEVEL DESIGN
Data Persistance Subsystem
Classes Class Interfaces Interaction Diagrams
Module Interfaces
Modularization
architecture
User Interface
User Manual
Implementation
4
System design activities
Functional requirements
Non Functional requirements
Analysis
Analysis dynamic model
Analysis object model
System design
Design goals
Subsystem decomposition
Object design
5
Objectives of system design
  • Transforms analysis model (from requirements
    analysis) into a system design model
  • System decomposition
  • Identify design goals (choose aspects of the
    system to be optimized)
  • Develop and refine a subsystem decomposition that
    satisfies the maximum number of design goals and
    or the most critical design goals
  • Identify, model system architecture

6
Software Modularization
  • Software system modularization (module
    decomposition)
  • decompose software system into subsystems
  • Subsystems interface (communication) description
  • define which subsystems communicate with one
    another and describe how this communication is
    accomplished

7
Modularization Goals
  • Good modularity eases
  • Simplicity Makes it easy to understand,
    implement and test
  • Extension Facilitates the addition of features
  • Change Facilitates the modification of
    requirements
  • A module can be replaced with minimal effects on
    the rest of the software system

8
Building on the Context Diagram
Now we are interested with the architecture of
the software inside the central software system,
its modularization and how the modules work and
interact with outside agents
Librarian
Resources (Books, CDs ..)
GUI
Employee Information Repository (DB)
Patron
Web
Folder is UML notation for a package
Student Information Repository (DB)
Online Journals
9
Software Architecture
  • Software system modularization (module
    decomposition)
  • Decompose software system into subsystems and
    modules
  • Different levels of decomposition
    system-subsystem, subsystem-module (may have more
    levels)

10
Software Architecture
  • Subsystems interface descriptions
  • define which subsystems communicate with one
    another and describe how this communication is
    accomplished
  • Different types of system architectures or
    decomposition styles lead to different approaches
    to modularization

11
Modularization Goals
  • Good modularity promotes
  • Simplicity Make it easy to understand, implement
    and test
  • Effective inter-system/module communication
    (internally and with external environment)
  • Encapsulation (Information hiding)

12
Modularization Goals
  • Encapsulation (Information hiding) promotes ease
    of
  • Extension Facilitates the addition of features
  • Change Facilitates the modification of
    requirements
  • Replacement of single modules when needed

13
Modularization Guidelines
  • Coupling degree to which subsystems are
    dependent on each other. This is sometimes
    illustrated by the number of relations
    (communications) between subsystems or (or on the
    module level between modules within subsystems).
  • Desirable low coupling amongst subsystems -gt
    minimize interfaces between subsystems -gt
    make interfaces between subsystems as simple as
    possible

14
Modularization Guidelines
  • Cohesion degree to which a subsystems modules,
    or a modules classes depend on each other.
    Sometimes indicated by the number of dependencies
    between modules in subsystems.
  • Desirable high cohesion within a subsystem -gt
    localize all elements responsible for performing
    related functions in one subsystem or module

15
Low Coupling
16
High Coupling
17
High Cohesion within a module
  • Responsibilities of module or subsystem are
    cohesive when
  • Elements related to one concept or resource are
    grouped to hide the detailed function of that
    concept or device from other modules, no side
    effects (informational)
  • Elements contribute to a single well defined task
    (functional)
  • Elements operate on the same input or produce the
    same output (communicational, not usually OO
    except perhaps within objects)

better
18
High Cohesion within module
  • Responsibilities of module or subsystem are
    cohesive when
  • Elements occur in sequence input of one to output
    of another, a series of procedures that occur in
    a fixed sequence (procedural or sequential)
  • Elements occur together in time e.g. startup
    (temporal)
  • Elements perform related tasks, one of which is
    selected on each call to the module (logical) for
    example related utilities

better
19
Lower Cohesion
20
Higher Cohesion
21
Why low coupling is desirable
  • Simplifies interfaces between subsystems/modules
  • Reduces the number of interfaces between
    subsystems
  • Reduces dependency between modules of a subsystem
    or subsystems of a system
  • Encapsulation (information hiding)
  • Localization of functions

Why high cohesion is desirable
22
Some Architectural Styles
  • Data Flow (Pipes and Filters)
  • Follow the flow of data through the system
  • Call and Return
  • Single thread of control as a main program
    calling subprograms then returning when done
  • Repository (data-centered)
  • One or more modularized subsystems that interact
    only with a central data repository
  • Services divided into layers, communication
    between adjacent layers.

23
Some Architectural Styles
  • Client-server
  • One or more servers with different purposes,
    which can be used by a group of clients that need
    their services. Usually connected by a network.
  • Layered
  • Services divided into layers, communication
    between adjacent layers.
  • Model / View / Controller
  • Model captures an application specific model
  • An independent controller sequences operations

24
Pipes and filters Simplest case
  • Batch sequential
  • Pipe (line with arrow) represents a data flow in
    the direction of the arrow
  • Each filter (oval) represents some kind of
    manipulation of the data
  • The output of one filter is used as the input of
    the next filter
  • Commonly used model in the UNIX operating system

25
Pipes and filters
  • Can deal with more complex systems that have
    multiple paths through them

26
Pipes and filters advantages
  • Can evolve easily by adding new filters
  • Simple to implement and maintain, Can reuse
    filters
  • Intuitive, think of a task in terms of steps
  • Well suited to systems that apply transformations
    to a stream of data

27
Pipes and filters limitations
  • Needs a common format for data transfer
  • If formats of output/input of filters vary only
    some filters can be paired
  • Filters in a system must agree on a common data
    format, individual filters must then translate
    that format into what they need internally (can
    be inefficient)
  • e. g. UNIX uses character strings

28
Pipes and filters Invoice processing
Payments
Invoices
Identify Payments
Find Payments Due
Read invoices
Issue Receipts
Issue Payment Reminder
Receipts
Reminders
From figure 11.6 Sommerville 2004
29
Call and Return
  • Hierarchical transfer of control between
    processes
  • Control passes from the calling process to the
    called, then when the called process is complete,
    back to the called process

30
Repository Architecture
  • All subsystems interact only with a central data
    repository
  • Subsystems will themselves be modularized
  • A cohesive group of modules are often grouped
    into a subsystem
  • An efficient way to store large quantities of
    data
  • No need to transmit data directly between
    subsystems
  • Data used by a subsystem always from the
    repository
  • Data produced by a subsystem stored in the
    repository

31
Repository Architecture
  • Data is stored with one format
  • Format must be common to all modules. This
    enforces compromises on the form of the data
    which may effect efficiency of some modules
  • Can be difficult to change (evolve) the format
    of the data
  • Some activities are centralized with the
    repository and must be consistent for all
    subsystems
  • Access control, Security, Backup

32
Repository
Subsystem 1
Subsystem 4
Subsystem 5
Project Repository
Subsystem 2
Subsystem3
33
Repository architecture
  • If the repository is a passive object, it only
    interacts with subsystems when the subsystems
    request it
  • However, the repository may be an active object
    that can request actions from the other
    subsystems in the system.
  • When the repository initiates actions of the
    other subsystems then the architectural style is
    know as a blackboard system.

34
Example Repository CASE Tools
CASE Computer Aided Software Engineering
From figure 11.2 Sommerville 2004
35
Client Server Architecture
  • A set of one or more servers provide services to
    other subsystems
  • Print server
  • File server
  • Data base server
  • A set of clients (often client is a subsystem)
    use the services provided by the servers.
  • Concurrent operation of more than one client is
    possible
  • The clients and servers are connected by a
    network (optional can all exist on one host but
    usually are distributed between several hosts)

36
Client-server
Client subsystem 1
Client subsystem 2
Client subsystem 3
NETWORK (or IPC on one host)
Server subsystem 2
Server subsystem 1
37
Client-server
From figure 11.3 Sommerville 2004
38
Client-server
GameServer
GameClient
Internet
GameClient
GameClient
39
Advantages/Disadvantages
  • Well suited for systems that manage large amounts
    of data. (distributed or multiprocess)
  • Can be generalized to a peer-peer architectural
    style where each subsystem can both provide and
    request services
  • Can be seen as a special case of the repository
    where the central data store is managed by a
    process
  • Gives more flexibility, subsystems can different
    access control, security, backup as controlled by
    managing process

40
Layered Architecture
  • Subsystems are seen as layers
  • Layers can be independently developed, updated,
    replaced, subdivided.
  • Each layer implements a set of services not
    offered by other layers
  • In a closed layered architecture there is no
    communication between layers that are not
    adjacent. So only adjacent layers are effected if
    the inter subsystem interface changes

41
Closed Layered Model
Layer 4 t
Layer 3
X
NO communications between non-adjacent layers
Layer 2
Layer 1
42
Open Layered Model
Layer 4 t
Layer 3
A layer can communicate with any layer below it
Layer 2
Layer 1
43
The OSI Layers Layered Model
CORBA
TCP/IP
Ethernet
Expanded from Figure 1.10 Stallings (2000)
44
Multi Tier
Layer 4 Presentation client
Browser
Layer 3 Presentation server
Form
Layer 2 Applications Logic
Connection
Layer 1 Storage
query
45
Model/View/Controller
Controller
initiator
repository
Model
1 Notifier
View
Subscriber
  • Model maintains all domain knowledge
  • Controller, manages sequence of interaction with
    the user
  • View Display model to user

46
Example
Write a Comment
User Comments (0)
About PowerShow.com