software architecture and quality by

67
Software Architecture and Quality BY Touseef Tahir [email protected] Lecturer CS COMSATS Institute of Information Technology, Lahore

Upload: taya

Post on 22-Feb-2016

43 views

Category:

Documents


0 download

DESCRIPTION

Software Architecture and Quality BY. Touseef Tahir [email protected] Lecturer CS COMSATS Institute of Information Technology, Lahore. Architecture defined Formal Definition. IEEE 1471-2000 - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Software Architecture and Quality BY

Software Architecture and QualityBY

Touseef [email protected]

Lecturer CSCOMSATS Institute of Information Technology, Lahore

Page 2: Software Architecture and Quality BY

IEEE 1471-2000◦ Software architecture is the fundamental organization of a

system, embodied in its components, their relationships to each other and the environment, and the principles governing its design and evolution

Architecture definedFormal Definition

IEEE 1471-2000

Page 3: Software Architecture and Quality BY

Software architecture encompasses the set of significant decisions about the organization of a software system◦Selection of the structural elements and their interfaces by

which a system is composed◦Behavior as specified in collaborations among those

elements◦Composition of these structural and behavioral elements

into larger subsystems◦Architectural style that guides this organization

Architecture definedAnother Go

Booch, Kruchten, Reitman, Bittner, and Shaw

Page 4: Software Architecture and Quality BY

Perry and Wolf, 1992◦ A set of architectural (or design) elements that have a particular form

Boehm et al., 1995◦ A software system architecture comprises A collection of software and system components, connections, and constraints A collection of system stakeholders' need statements A rationale which demonstrates that the components, connections, and constraints define a system that,

if implemented, would satisfy the collection of system stakeholders' need statements

Clements et al., 1997 ◦The software architecture of a program or computing system is the structure or structures of the system, which comprise software components, the externally visible properties of those components, and the relationships among them

Architecture definedFew More

http://www.sei.edu/architecture/definitions.html

Page 5: Software Architecture and Quality BY

Architecture defines major components Architecture defines component relationships

(structures) and interactions Architecture omits content information about

components that does not pertain to their interactions Behavior of components is a part of architecture insofar

as it can be discerned from the point of view of another component

Common elements 1/2

Page 6: Software Architecture and Quality BY

Architecture defines major components Architecture defines component relationships

(structures) and interactions Architecture omits content information about

components that does not pertain to their interactions Behavior of components is a part of architecture insofar

as it can be detected from the point of view of another component

Common elements 1/2

Page 7: Software Architecture and Quality BY

Every system has an architecture (even a system composed of one component)

Architecture document defines the rationale behind the components and the structure

Common elements 2/2

Page 8: Software Architecture and Quality BY

Architecture represents the set of earliest design decisions◦ Hardest to change◦ Most critical to get right

Architecture is the first design artifact where a system’s quality attributes are addressed

Architecture is Early

Page 9: Software Architecture and Quality BY

Architecture serves as the blueprint for the system but also the project:◦ Team structure◦ Documentation organization◦ Work breakdown structure◦ Scheduling, planning, budgeting◦ Unit testing, integration

Architecture establishes the communication and coordination mechanisms among components

Architecture Drives

Page 10: Software Architecture and Quality BY

Architecture vs. Design

non-functional requirements

functional requirements

(domains)

Important : this is a general guideline – sometimes the borders are blurred

Architecture: where non-functional decisions are cast, and functional requirements are partitionedDesign: where functional requirements are accomplished

architecture

design

Page 11: Software Architecture and Quality BY

Performance Availability Usability Security

System Quality Attribute

MaintainabilityPortabilityReusabilityTestability

End User’s view

Developer’s view

Time To MarketCost and BenefitsProjected life timeTargeted MarketIntegration with Legacy System

BusinessCommunityview

A list of quality attributes exists inISO/IEC 9126-2001 Information Technology – Software Product Quality

Page 12: Software Architecture and Quality BY

Design patterns

Page 13: Software Architecture and Quality BY

Producer consumer problem

Page 14: Software Architecture and Quality BY

You have◦ legacy code◦ current client

Adapter changes interface of legacy code so client can use it

Adapter fills the gap b/w two interfaces e.g date formats

No changes needed for either◦ legacy code, or◦ Client

Adapter

Page 15: Software Architecture and Quality BY

In object-oriented programming, the command pattern is a design pattern in which an object is used to represent and encapsulate all the information needed to call a method at a later time. This information includes the method name, the object that owns the method and values for the method parameters.

Three terms always associated with the command pattern are client, invoker and receiver. The client instantiates the command object and provides the information required to call the method at a later time. The invoker decides when the method should be called. The receiver is an instance of the class that contains the method's code.

Command

Page 16: Software Architecture and Quality BY

You have commands that need to be◦ executed,◦ undone, or◦ Queued

All commands derive from Command and implement do(), undo(), and redo()

Page 17: Software Architecture and Quality BY

You◦ have a set of related classes◦ want to shield the rest of the system from these details

Facade provides a simplified interface Encapsulates a subsystem e-g

◦ wrap a poorly-designed collection of APIs with a single well-designed API

Facade

Page 18: Software Architecture and Quality BY

You want uniformly to treat ◦ items (atomic elements), and◦ groups (containing items or other groups)

Composite interface specifies operations that are shared between items and groups

Examples: hierarchy of files and directories, groups of draw able elements

Composite

Page 19: Software Architecture and Quality BY

You want to◦ delay expensive computations,◦ use memory only when needed, or◦ check access before loading an object into memory

Proxy ◦ has same interface as Real object◦ stores subset of attributes

◦ Example : thread pools

Proxy

Page 20: Software Architecture and Quality BY

You want to◦ use different algorithms depending upon the context◦ avoid having to change the context or client

Strategy ◦ decouples interface from implementation◦ shields client from implementations◦ Context is not aware which strategy is being used; Client

configures the Context

Strategy

Page 21: Software Architecture and Quality BY

You◦ have several different implementations◦ need to choose one, possibly at run time

Bridge ◦ decouples interface from implementation◦ shields client from implementations◦ Abstraction creates and initializes the Concrete Implementations◦ Example:

optimized code execution time, memory usage, disk space, bandwidth, power

consumption

Bridge

Page 22: Software Architecture and Quality BY

Software Architectures

Page 23: Software Architecture and Quality BY

Copyright © 2001 DeLorme28 November 2001

Model view controller

Page 24: Software Architecture and Quality BY

Thin Client Fat Client

Client server architecture

Page 25: Software Architecture and Quality BY

Single tier Two Tier N Tier

Client Server Architectures

Page 26: Software Architecture and Quality BY

Server downloads files from shared location to Desktop environment

Job is run at the desktop environment Works if

◦ Shared usage is low◦ Data transferred is low

File Sharing Architecture

Page 27: Software Architecture and Quality BY

File-Server Architecture

Page 28: Software Architecture and Quality BY

Database server to replace File server Query based approach Reduced traffic, since required content is only

transferred Improves multi-user updating RPC or SQL typically used

Client/Server Architecture

Page 29: Software Architecture and Quality BY

Two Tier Architecture

Page 30: Software Architecture and Quality BY

N-Tier Architecture

Page 31: Software Architecture and Quality BY

Common Architecture for a set of products or systems developed by an organization

Product Line Architecture

Page 32: Software Architecture and Quality BY
Page 33: Software Architecture and Quality BY

Boxes and lines

Page 34: Software Architecture and Quality BY
Page 35: Software Architecture and Quality BY
Page 36: Software Architecture and Quality BY
Page 37: Software Architecture and Quality BY
Page 38: Software Architecture and Quality BY
Page 39: Software Architecture and Quality BY
Page 40: Software Architecture and Quality BY

Software Architecture

Page 41: Software Architecture and Quality BY

Software Architecture

Page 42: Software Architecture and Quality BY
Page 43: Software Architecture and Quality BY

Copenhagen city VIEWS

Page 44: Software Architecture and Quality BY

“4+1 Approach”

Page 45: Software Architecture and Quality BY

4+1 Approach

Page 46: Software Architecture and Quality BY

Process view

Page 47: Software Architecture and Quality BY

Development View

Page 48: Software Architecture and Quality BY

Scenario View

Page 49: Software Architecture and Quality BY

Conceptual viewModule view Execution viewCode view

Siemens Four view model

Page 50: Software Architecture and Quality BY
Page 51: Software Architecture and Quality BY
Page 52: Software Architecture and Quality BY
Page 53: Software Architecture and Quality BY
Page 54: Software Architecture and Quality BY
Page 55: Software Architecture and Quality BY
Page 56: Software Architecture and Quality BY
Page 57: Software Architecture and Quality BY
Page 58: Software Architecture and Quality BY
Page 59: Software Architecture and Quality BY
Page 60: Software Architecture and Quality BY
Page 61: Software Architecture and Quality BY
Page 62: Software Architecture and Quality BY
Page 63: Software Architecture and Quality BY
Page 64: Software Architecture and Quality BY
Page 65: Software Architecture and Quality BY
Page 66: Software Architecture and Quality BY

Develop software architecture for your project….!!!

Assignment

Page 67: Software Architecture and Quality BY

THANK YOU!!!!