尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
Chapter 4: Software
Design
Design Engineering
• It covers the set of principles, concepts, and practices that lead to
the development of a high quality system or product.
• Goal of design engineering is to produce a model or representation
that depict:
• Firmness – program should not have any bug that inhibits its functions.
• Commodity – suitable to its intended use.
• Delight - pleasurable to use
• The design model provides detail about software data structures,
architecture, interfaces, and components that are necessary to
implement the system.
Software Design
• Software design model consists of 4 designs:
• Data/class Design
• Architectural Design
• Interface Design
• Component Design
Translating Analysis  Design
• Data/class design - Created by transforming the analysis model class-
based elements into classes and data structures required to implement the
software
• Architectural design - defines the relationships among the major
structural elements of the software, it is derived from the class-based
elements and flow-oriented elements of the analysis model
• Interface design - describes how the software elements, hardware
elements, and end-users communicate with one another, it is derived
from the analysis model scenario-based elements, flow-oriented
elements, and behavioral elements
• Component-level design - created by transforming the structural
elements defined by the software architecture into a procedural
description of the software components using information obtained from
the analysis model class-based elements, flow-oriented elements, and
behavioral elements
Why design is so important?
• It is place where quality is fostered.
• It provides us with representation of software that can be
assessed for quality.
• Only way that can accurately translate a customer’s
requirements into a finished software product.
• It serves as foundation for all software engineering
activities.
• Without design difficult to assess:
• Risk
• Test
• Quality
Design Process and Design Quality
• S/w design is an iterative process through which
requirements are translated into a “blueprint” for
constructing the s/w.
• As design iteration occur, subsequent refinement
leads to design representation at much lower levels
of abstraction.
Goal of design process
• The design must implement all of the explicit
requirements contained in the analysis model, and it
must accommodate all of the implicit requirements
desired by the customer.
• The design must be a readable, understandable guide for
those who generate code and for those who test and
subsequently support the software.
• The design should provide a complete picture of the
software, addressing the data, functional, and behavioral
domains from an implementation perspective.
Quality Guidelines
Characteristics of good design
• A design should exhibit an architecture that
• as been created using recognizable architectural styles or patterns,
• is composed of components that exhibit good design characteristics
and
• can be implemented in an evolutionary fashion
• A design should be modular; that is, the software should be logically
partitioned into elements or subsystems
• A design should contain distinct representations of data, architecture,
interfaces, and components.
• A design should lead to data structures that are appropriate for the
classes to be implemented and are drawn from recognizable data
patterns.
• A design should lead to components that exhibit independent functional
characteristics
Quality Guidelines (contd.)
• A design should lead to interfaces that reduce the
complexity of connections between components and with
the external environment.
• A design should be derived using a repeatable method that
is driven by information obtained during software
requirements analysis.
• A design should be represented using a notation that
effectively communicates its meaning.
Design Principles
• S/W design is both a process and a model.
• Design process - sequence of steps that enable the
designer to describe all aspects of the software to
be built.
• Design model - created for software provides a
variety of different views of the computer software
Design Principles
• The design process should not suffer from ‘tunnel vision.’ -
Designer should consider alternative approaches.
• The design should be traceable to the analysis model - a single
element of the design model often traces to multiple
requirements, it is necessary to have a means for tracking how
requirements have been satisfied by the design model.
• The design should not reinvent the wheel- use already exists
design pattern because time is short and resource are limited.
• The design should “minimize the intellectual distance” between
the software and the problem as it exists in the real world. –
design should be self-explanatory
Design Principles
• The design should exhibit uniformity and integration – before
design work begins rules of styles and format should be defined
for a design team.
• The design should be structured to accommodate change
• The design should be structured to degrade gently, even when
unusual data, events, or operating conditions are encountered.
• Design is not coding, coding is not design.
• The design should be assessed for quality as it is being created,
not after the fact
• The design should be reviewed to minimize conceptual (semantic)
errors.
Design concepts
• Design concepts provide the necessary framework for “to get the thing on
right way”.
• Abstraction
• Refinement
• Modularity
• Architecture
• Control Hierarchy
• Structural Partitioning
• Data Structure
• Software Procedure
• Information Hiding
Abstraction
• At the highest level of abstraction – a solution is stated in broad terms
• At lower level of abstraction – a more detailed description of the solution is
provided.
• Two types of abstraction:
• Procedural abstraction: Sequence of instructions that have a specific and
limited function.
Ex. Open a door
open implies long sequence of activities (e.g. walk to the door, grasp knob,
turn knob and pull the door, etc).
• Data abstraction: collection of data that describes a data object.
Ex. Open a door. – door is data object.
• Data abstraction for door would encompass a set of attributes that describe
the door. (E.g. door type, swing direction, opening mechanism, etc.)
Refinement
• Refinement is actually a process of elaboration.
• begin with a statement of function (or description of information)
that is defined at a high level of abstraction.
• That is, the statement describes function or information
conceptually but provides no information about the internal
workings of the function or the internal structure of the information.
• Refinement causes the designer to elaborate on the original
statement, providing more and more detail as each successive
refinement (elaboration) occurs.
• Abstraction and refinement are complementary concepts.
Abstraction enables a designer to specify procedure and data and
yet suppress low-level details.
• Refinement helps the designer to expose low-level details as design
progresses.
Modularity
• Architecture and design pattern embody modularity.
• Software is divided into separately named and addressable
components, sometimes called modules, which are
integrated to satisfy problem requirement.
• modularity is the single attribute of software that allows a
program to be intellectually manageable
• It leads to a “divide and conquer” strategy. – it is easier to
solve a complex problem when you break into a
manageable pieces.
• Refer fig. that state that effort (cost) to develop an
individual software module does decrease if total number of
modules increase.
• However as the no. of modules grows, the effort (cost)
associated with integrating the modules also grows.
Modularity and software cost
Modularity and software cost
• Undermodularity and overmodularity should be
avoided. But how do we know the vicinity of M?
• We modularize a design so that development can be
more easily planned.
• Software increments can be defined and delivered.
• Changes can be more easily accommodated.
• Testing and debugging can be conducted more
efficiently and long-term maintained can be conducted
without serious side effects.
Architecture
• Software architecture suggest “ the overall structure of the
software and the ways in which that structure provides
conceptual integrity for a system.
• No. of different models can use to represent architecture.
• Structural Model- represent architecture as an organized
collection of components
• Framework model – Increase level of design abstraction by
identifying repeatable architectural design framework.
• Dynamic model – address behavior of the program
architecture and indicating how system or structure
configuration may change as a function.
• Process Model – focus on design of the business or technical
process that the system must accommodate.
• Functional models – used to represent the functional
hierarchy of a system.
Control Hierarchy
• Control hierarchy, represents the organization of
program components (modules) and implies a
hierarchy of control.
• Different notations are used to represent control
hierarchy for those architectural styles that are
amenable to this representation.
• The most common is the treelike diagram that
represents hierarchical control for call and return
architectures.
Control Hierarchy
Control Hierarchy
• In fig. depth and width provide an indication of the number
of levels of control and overall span of control.
• Fan-out is a measure of the number of modules that are
directly controlled by another module. Fan-in indicates how
many modules directly control a given module.
• A module that controls another module is said to be
superordinate to it, and conversely, a module controlled by
another is said to be subordinate to the controller.
Ex. Module M is superordinate to modules a, b, and c.
Module h is subordinate to module e
Structural Partitioning
Structure partitioning
• Two types of Structure partitioning:
• Horizontal Partitioning
• Vertical Partitioning
• Horizontal partitioning defines separate branches of the
modular hierarchy for each major program function.
• Control modules, represented in a darker shade are used to
coordinate communication & execution between its functions.
• Horizontal partitioning defines three partitions—input, data
transformation (often called processing) and output.
• Benefits of Horizontal partitioning:
• software that is easier to test
• software that is easier to maintain
• propagation of fewer side effects
• software that is easier to extend
Structure partitioning
• On the negative side (Drawback), horizontal partitioning
often causes more data to be passed across module
interfaces and can complicate the overall control of
program flow.
• Vertical partitioning, often called factoring, suggests
that control (decision making) and work should be
distributed top-down in the program structure.
• Top-level modules should perform control functions and
do little actual processing work.
• Modules that reside low in the structure should be the
workers, performing all input, computation, and output
tasks.
Structure partitioning
• A change in a control module (high in the structure)
will have a higher probability of propagating side
effects to modules that are subordinate to it.
• A change to a worker module, given its low level in
the structure, is less likely to cause the propagation of
side effects.
• For this reason vertically partitioned structures are
less likely to be susceptible to side effects when
changes are made and will therefore be more
maintainable.
Data Structure
• Data structure is a representation of the logical relationship among
individual elements of data
• A scalar item is the simplest of all data structures. It represents a single
element of information that may be addressed by an identifier.
• When scalar items are organized as a list or contiguous group, a
sequential vector is formed.
• When the sequential vector is extended to two, three, and ultimately,
an arbitrary number of dimensions, an n-dimensional space is created.
Most common n-dimensional space is the two-dimensional matrix
• A linked list is a data structure that organizes contiguous scalar items,
vectors, or spaces in a manner (called nodes) that enables them to be
processed as a list.
• A hierarchical data structure is implemented using multilinked lists that
contain scalar items, vectors, and possibly, n-dimensional spaces.
Software Procedure
• Software procedure focuses on the processing
details of each module individually.
• Procedure must provide a precise specification of
processing, including sequence of events, exact
decision points, repetitive operations, and even
data organization and structure.
Information Hiding
• The principle of information hiding suggests that modules
be "characterized by design decisions that (each) hides from
all others modules.“
• In other words, modules should be specified and designed
so that information (algorithm and data) contained within a
module is inaccessible to other modules that have no need
for such information.
• The intent of information hiding is to hide the details of data
structure and procedural processing behind a module
interface.
• It gives benefits when modifications are required during
testing and maintenance because data and procedure are
hiding from other parts of software, unintentional errors
introduced during modification are less.
EFFECTIVE MODULAR DESIGN
• Effective modular design consist of three things:
• Functional Independence
• Cohesion
• Coupling
Functional Independence
• Functional independence is achieved by developing
modules with "single-minded“ function and an "aversion" to
excessive interaction with other modules.
• In other words - each module addresses a specific sub-
function of requirements and has a simple interface when
viewed from other parts of the program structure.
• Independence is important –
• Easier to develop
• Easier to Test and maintain
• Error propagation is reduced
• Reusable module.
Functional Independence
• To summarize, functional independence is a key to
good design, and design is the key to software
quality.
• To measure independence, have two qualitative
criteria: cohesion and coupling
• Cohesion is a measure of the relative functional
strength of a module.
• Coupling is a measure of the relative
interdependence among modules.
Cohesion
• Cohesion is a natural extension of the information hiding concept
• A cohesive module performs a single task within a software
procedure, requiring little interaction with procedures being
performed in other parts of a program
• Simply state, a cohesive module should (ideally) do just one thing.
• We always strive for high cohesion, although the mid-range of the
spectrum is often acceptable.
• Low-end cohesiveness is much "worse" than middle range, which is
nearly as "good" as high-end cohesion.
• So. designer should avoid low levels of cohesion when modules are
designed.
Cohesion
• When processing elements of a module are related
and must be executed in a specific order,
procedural cohesion exists.
• When all processing elements concentrate on one
area of a data structure, communicational cohesion
is present.
• High cohesion is characterized by a module that
performs one distinct procedural task.
Types of cohesion
• A module that performs tasks that are related
logically is logically cohesive.
• When a module contains tasks that are related by
the fact that all must be executed with the same
span of time, the module exhibits temporal
cohesion.
• At the low-end of the spectrum, a module that
performs a set of tasks that relate to each other
loosely, called coincidentally cohesive.
Coupling
• Coupling depends on the interface complexity between
modules, the point at which entry or reference is made to a
module, and what data pass across the interface
• In software design, we strive for lowest possible coupling.
Simple connectivity among modules results in software that
is easier to understand and less prone to a "ripple effect"
caused when errors occur at one location and propagate
through a system.
• It occur because of design decisions made when structure
was developed.
Coupling
Coupling
• Coupling is characterized by passage of control between
modules.
• “Control flag” (a variable that controls decisions in a
subordinate or superordinate module) is passed between
modules d and e (called control coupling).
• Relatively high levels of coupling occur when modules are
communicate with external to software.
• External coupling is essential, but should be limited to a
small number of modules with a structure.
• High coupling also occurs when a number of modules
reference a global data area.
• Common coupling, no. of modules access a data item in a
global data area
• So it does not mean “use of global data is bad”. It does
mean that a software designer must be take care of this
thing.
Evolution of Software Design
• Early design work concentrated on criteria for the
development of modular programs and methods for refining
software structures in a top-down manner.
• Later work proposed methods for the translation of data
flow or data structure into a design definition.
• Today, the emphasis in software design has been on
software architecture and the design patterns that can be
used to implement software architectures.
Characteristics are common to all design
methods
• A mechanism for the translation of analysis model
into a design representation,
• A notation for representing functional components
and their interfaces.
• Heuristics for refinement and partitioning
• Guidelines for quality assessment.
Design quality attributes
• Acronym FURPS –
• Functionality
• Usability
• Reliability
• Performance
• Supportability
• Functionality – is assessed by evaluating the feature set and
capabilities of the program.
• Functions that are delivered and security of the overall
system.
• Usability – assessed by considering human factors, consistency
& documentation.
• Reliability – evaluated by
• measuring the frequency and severity of failure.
• Accuracy of output results.
• Ability to recover from failure and predictability of the
program.
• Performance - measured by processing speed, response time,
resource consumption, efficiency.
• Supportability – combines the ability to extend the program
(extensibility), adaptability and serviceability.

More Related Content

Similar to Chapter 6 design

Unit 5 design engineering ssad
Unit 5 design engineering ssadUnit 5 design engineering ssad
Unit 5 design engineering ssad
Preeti Mishra
 
unit 3 Design 1
unit 3 Design 1unit 3 Design 1
unit 3 Design 1
TharuniDiddekunta
 
UNIT-4design-concepts-se-pressman-ppt.PPT
UNIT-4design-concepts-se-pressman-ppt.PPTUNIT-4design-concepts-se-pressman-ppt.PPT
UNIT-4design-concepts-se-pressman-ppt.PPT
malathijanapati1
 
Software Design Concepts
Software Design ConceptsSoftware Design Concepts
Software Design Concepts
Mohammed Fazuluddin
 
CHAPTER12.ppt
CHAPTER12.pptCHAPTER12.ppt
CHAPTER12.ppt
CharenReposposa
 
Design Concepts in Software Engineering-1.pptx
Design Concepts in Software Engineering-1.pptxDesign Concepts in Software Engineering-1.pptx
Design Concepts in Software Engineering-1.pptx
KarthigaiSelviS3
 
Design engineering
Design engineeringDesign engineering
Design engineering
Preeti Mishra
 
Design concepts
Design conceptsDesign concepts
Design concepts
Karachi University
 
Ch 9-design-engineering
Ch 9-design-engineeringCh 9-design-engineering
Ch 9-design-engineering
SHREEHARI WADAWADAGI
 
Design Engineering and Design concepts
Design Engineering and Design conceptsDesign Engineering and Design concepts
Design Engineering and Design concepts
JigyasaAgrawal7
 
Software design
Software designSoftware design
Software design
Inocentshuja Ahmad
 
Pressman_ch_9_design_engineering.ppt
Pressman_ch_9_design_engineering.pptPressman_ch_9_design_engineering.ppt
Pressman_ch_9_design_engineering.ppt
MotherTheresa2
 
rEFUP.pdf
rEFUP.pdfrEFUP.pdf
Software design, software engineering
Software design, software engineeringSoftware design, software engineering
Software design, software engineering
Rupesh Vaishnav
 
Design engineering
Design engineeringDesign engineering
Design engineering
Vikram Dahiya
 
Design engineering
Design engineeringDesign engineering
Design engineering
Vikram Dahiya
 
Software design
Software designSoftware design
Software design
Benazir Fathima
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
Aiman Hud
 
Oose unit 4 ppt
Oose unit 4 pptOose unit 4 ppt
Oose unit 4 ppt
Dr VISU P
 
OOSE Unit 4 PPT.ppt
OOSE Unit 4 PPT.pptOOSE Unit 4 PPT.ppt
OOSE Unit 4 PPT.ppt
itadmin33
 

Similar to Chapter 6 design (20)

Unit 5 design engineering ssad
Unit 5 design engineering ssadUnit 5 design engineering ssad
Unit 5 design engineering ssad
 
unit 3 Design 1
unit 3 Design 1unit 3 Design 1
unit 3 Design 1
 
UNIT-4design-concepts-se-pressman-ppt.PPT
UNIT-4design-concepts-se-pressman-ppt.PPTUNIT-4design-concepts-se-pressman-ppt.PPT
UNIT-4design-concepts-se-pressman-ppt.PPT
 
Software Design Concepts
Software Design ConceptsSoftware Design Concepts
Software Design Concepts
 
CHAPTER12.ppt
CHAPTER12.pptCHAPTER12.ppt
CHAPTER12.ppt
 
Design Concepts in Software Engineering-1.pptx
Design Concepts in Software Engineering-1.pptxDesign Concepts in Software Engineering-1.pptx
Design Concepts in Software Engineering-1.pptx
 
Design engineering
Design engineeringDesign engineering
Design engineering
 
Design concepts
Design conceptsDesign concepts
Design concepts
 
Ch 9-design-engineering
Ch 9-design-engineeringCh 9-design-engineering
Ch 9-design-engineering
 
Design Engineering and Design concepts
Design Engineering and Design conceptsDesign Engineering and Design concepts
Design Engineering and Design concepts
 
Software design
Software designSoftware design
Software design
 
Pressman_ch_9_design_engineering.ppt
Pressman_ch_9_design_engineering.pptPressman_ch_9_design_engineering.ppt
Pressman_ch_9_design_engineering.ppt
 
rEFUP.pdf
rEFUP.pdfrEFUP.pdf
rEFUP.pdf
 
Software design, software engineering
Software design, software engineeringSoftware design, software engineering
Software design, software engineering
 
Design engineering
Design engineeringDesign engineering
Design engineering
 
Design engineering
Design engineeringDesign engineering
Design engineering
 
Software design
Software designSoftware design
Software design
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Oose unit 4 ppt
Oose unit 4 pptOose unit 4 ppt
Oose unit 4 ppt
 
OOSE Unit 4 PPT.ppt
OOSE Unit 4 PPT.pptOOSE Unit 4 PPT.ppt
OOSE Unit 4 PPT.ppt
 

More from nikshaikh786

Module 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptxModule 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptx
nikshaikh786
 
Module 1_ Introduction.pptx
Module 1_ Introduction.pptxModule 1_ Introduction.pptx
Module 1_ Introduction.pptx
nikshaikh786
 
Module 1_ Introduction to Mobile Computing.pptx
Module 1_  Introduction to Mobile Computing.pptxModule 1_  Introduction to Mobile Computing.pptx
Module 1_ Introduction to Mobile Computing.pptx
nikshaikh786
 
Module 2_ GSM Mobile services.pptx
Module 2_  GSM Mobile services.pptxModule 2_  GSM Mobile services.pptx
Module 2_ GSM Mobile services.pptx
nikshaikh786
 
MODULE 4_ CLUSTERING.pptx
MODULE 4_ CLUSTERING.pptxMODULE 4_ CLUSTERING.pptx
MODULE 4_ CLUSTERING.pptx
nikshaikh786
 
MODULE 5 _ Mining frequent patterns and associations.pptx
MODULE 5 _ Mining frequent patterns and associations.pptxMODULE 5 _ Mining frequent patterns and associations.pptx
MODULE 5 _ Mining frequent patterns and associations.pptx
nikshaikh786
 
DWM-MODULE 6.pdf
DWM-MODULE 6.pdfDWM-MODULE 6.pdf
DWM-MODULE 6.pdf
nikshaikh786
 
TCS MODULE 6.pdf
TCS MODULE 6.pdfTCS MODULE 6.pdf
TCS MODULE 6.pdf
nikshaikh786
 
Module 3_ Classification.pptx
Module 3_ Classification.pptxModule 3_ Classification.pptx
Module 3_ Classification.pptx
nikshaikh786
 
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
nikshaikh786
 
Module 1_Data Warehousing Fundamentals.pptx
Module 1_Data Warehousing Fundamentals.pptxModule 1_Data Warehousing Fundamentals.pptx
Module 1_Data Warehousing Fundamentals.pptx
nikshaikh786
 
Module 2_ Cyber offenses & Cybercrime.pptx
Module 2_ Cyber offenses & Cybercrime.pptxModule 2_ Cyber offenses & Cybercrime.pptx
Module 2_ Cyber offenses & Cybercrime.pptx
nikshaikh786
 
Module 1- Introduction to Cybercrime.pptx
Module 1- Introduction to Cybercrime.pptxModule 1- Introduction to Cybercrime.pptx
Module 1- Introduction to Cybercrime.pptx
nikshaikh786
 
MODULE 5- EDA.pptx
MODULE 5- EDA.pptxMODULE 5- EDA.pptx
MODULE 5- EDA.pptx
nikshaikh786
 
MODULE 4-Text Analytics.pptx
MODULE 4-Text Analytics.pptxMODULE 4-Text Analytics.pptx
MODULE 4-Text Analytics.pptx
nikshaikh786
 
Module 3 - Time Series.pptx
Module 3 - Time Series.pptxModule 3 - Time Series.pptx
Module 3 - Time Series.pptx
nikshaikh786
 
Module 2_ Regression Models..pptx
Module 2_ Regression Models..pptxModule 2_ Regression Models..pptx
Module 2_ Regression Models..pptx
nikshaikh786
 
MODULE 1_Introduction to Data analytics and life cycle..pptx
MODULE 1_Introduction to Data analytics and life cycle..pptxMODULE 1_Introduction to Data analytics and life cycle..pptx
MODULE 1_Introduction to Data analytics and life cycle..pptx
nikshaikh786
 
IOE MODULE 6.pptx
IOE MODULE 6.pptxIOE MODULE 6.pptx
IOE MODULE 6.pptx
nikshaikh786
 
MAD&PWA VIVA QUESTIONS.pdf
MAD&PWA VIVA QUESTIONS.pdfMAD&PWA VIVA QUESTIONS.pdf
MAD&PWA VIVA QUESTIONS.pdf
nikshaikh786
 

More from nikshaikh786 (20)

Module 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptxModule 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptx
 
Module 1_ Introduction.pptx
Module 1_ Introduction.pptxModule 1_ Introduction.pptx
Module 1_ Introduction.pptx
 
Module 1_ Introduction to Mobile Computing.pptx
Module 1_  Introduction to Mobile Computing.pptxModule 1_  Introduction to Mobile Computing.pptx
Module 1_ Introduction to Mobile Computing.pptx
 
Module 2_ GSM Mobile services.pptx
Module 2_  GSM Mobile services.pptxModule 2_  GSM Mobile services.pptx
Module 2_ GSM Mobile services.pptx
 
MODULE 4_ CLUSTERING.pptx
MODULE 4_ CLUSTERING.pptxMODULE 4_ CLUSTERING.pptx
MODULE 4_ CLUSTERING.pptx
 
MODULE 5 _ Mining frequent patterns and associations.pptx
MODULE 5 _ Mining frequent patterns and associations.pptxMODULE 5 _ Mining frequent patterns and associations.pptx
MODULE 5 _ Mining frequent patterns and associations.pptx
 
DWM-MODULE 6.pdf
DWM-MODULE 6.pdfDWM-MODULE 6.pdf
DWM-MODULE 6.pdf
 
TCS MODULE 6.pdf
TCS MODULE 6.pdfTCS MODULE 6.pdf
TCS MODULE 6.pdf
 
Module 3_ Classification.pptx
Module 3_ Classification.pptxModule 3_ Classification.pptx
Module 3_ Classification.pptx
 
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
Module 2_ Introduction to Data Mining, Data Exploration and Data Pre-processi...
 
Module 1_Data Warehousing Fundamentals.pptx
Module 1_Data Warehousing Fundamentals.pptxModule 1_Data Warehousing Fundamentals.pptx
Module 1_Data Warehousing Fundamentals.pptx
 
Module 2_ Cyber offenses & Cybercrime.pptx
Module 2_ Cyber offenses & Cybercrime.pptxModule 2_ Cyber offenses & Cybercrime.pptx
Module 2_ Cyber offenses & Cybercrime.pptx
 
Module 1- Introduction to Cybercrime.pptx
Module 1- Introduction to Cybercrime.pptxModule 1- Introduction to Cybercrime.pptx
Module 1- Introduction to Cybercrime.pptx
 
MODULE 5- EDA.pptx
MODULE 5- EDA.pptxMODULE 5- EDA.pptx
MODULE 5- EDA.pptx
 
MODULE 4-Text Analytics.pptx
MODULE 4-Text Analytics.pptxMODULE 4-Text Analytics.pptx
MODULE 4-Text Analytics.pptx
 
Module 3 - Time Series.pptx
Module 3 - Time Series.pptxModule 3 - Time Series.pptx
Module 3 - Time Series.pptx
 
Module 2_ Regression Models..pptx
Module 2_ Regression Models..pptxModule 2_ Regression Models..pptx
Module 2_ Regression Models..pptx
 
MODULE 1_Introduction to Data analytics and life cycle..pptx
MODULE 1_Introduction to Data analytics and life cycle..pptxMODULE 1_Introduction to Data analytics and life cycle..pptx
MODULE 1_Introduction to Data analytics and life cycle..pptx
 
IOE MODULE 6.pptx
IOE MODULE 6.pptxIOE MODULE 6.pptx
IOE MODULE 6.pptx
 
MAD&PWA VIVA QUESTIONS.pdf
MAD&PWA VIVA QUESTIONS.pdfMAD&PWA VIVA QUESTIONS.pdf
MAD&PWA VIVA QUESTIONS.pdf
 

Recently uploaded

Lateral load-resisting systems in buildings.pptx
Lateral load-resisting systems in buildings.pptxLateral load-resisting systems in buildings.pptx
Lateral load-resisting systems in buildings.pptx
DebendraDevKhanal1
 
Online train ticket booking system project.pdf
Online train ticket booking system project.pdfOnline train ticket booking system project.pdf
Online train ticket booking system project.pdf
Kamal Acharya
 
BBOC407 Module 1.pptx Biology for Engineers
BBOC407  Module 1.pptx Biology for EngineersBBOC407  Module 1.pptx Biology for Engineers
BBOC407 Module 1.pptx Biology for Engineers
sathishkumars808912
 
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdfAsymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
felixwold
 
Covid Management System Project Report.pdf
Covid Management System Project Report.pdfCovid Management System Project Report.pdf
Covid Management System Project Report.pdf
Kamal Acharya
 
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
AK47
 
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book NowKandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
SONALI Batra $A12
 
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort ServiceCuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
yakranividhrini
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
gapboxn
 
Data Communication and Computer Networks Management System Project Report.pdf
Data Communication and Computer Networks Management System Project Report.pdfData Communication and Computer Networks Management System Project Report.pdf
Data Communication and Computer Networks Management System Project Report.pdf
Kamal Acharya
 
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
Ak47
 
My Airframe Metallic Design Capability Studies..pdf
My Airframe Metallic Design Capability Studies..pdfMy Airframe Metallic Design Capability Studies..pdf
My Airframe Metallic Design Capability Studies..pdf
Geoffrey Wardle. MSc. MSc. Snr.MAIAA
 
Cricket management system ptoject report.pdf
Cricket management system ptoject report.pdfCricket management system ptoject report.pdf
Cricket management system ptoject report.pdf
Kamal Acharya
 
Microsoft Azure AD architecture and features
Microsoft Azure AD architecture and featuresMicrosoft Azure AD architecture and features
Microsoft Azure AD architecture and features
ssuser381403
 
Literature review for prompt engineering of ChatGPT.pptx
Literature review for prompt engineering of ChatGPT.pptxLiterature review for prompt engineering of ChatGPT.pptx
Literature review for prompt engineering of ChatGPT.pptx
LokerXu2
 
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call GirlCall Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
sapna sharmap11
 
CSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdfCSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdf
Ismail Sultan
 
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 MinutesCall Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
kamka4105
 
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
dABGO KI CITy kUSHINAGAR Ak47
 
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
simrangupta87541
 

Recently uploaded (20)

Lateral load-resisting systems in buildings.pptx
Lateral load-resisting systems in buildings.pptxLateral load-resisting systems in buildings.pptx
Lateral load-resisting systems in buildings.pptx
 
Online train ticket booking system project.pdf
Online train ticket booking system project.pdfOnline train ticket booking system project.pdf
Online train ticket booking system project.pdf
 
BBOC407 Module 1.pptx Biology for Engineers
BBOC407  Module 1.pptx Biology for EngineersBBOC407  Module 1.pptx Biology for Engineers
BBOC407 Module 1.pptx Biology for Engineers
 
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdfAsymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
Asymmetrical Repulsion Magnet Motor Ratio 6-7.pdf
 
Covid Management System Project Report.pdf
Covid Management System Project Report.pdfCovid Management System Project Report.pdf
Covid Management System Project Report.pdf
 
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
 
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book NowKandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
Kandivali Call Girls ☑ +91-9967584737 ☑ Available Hot Girls Aunty Book Now
 
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort ServiceCuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
Cuttack Call Girls 💯Call Us 🔝 7374876321 🔝 💃 Independent Female Escort Service
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
Data Communication and Computer Networks Management System Project Report.pdf
Data Communication and Computer Networks Management System Project Report.pdfData Communication and Computer Networks Management System Project Report.pdf
Data Communication and Computer Networks Management System Project Report.pdf
 
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
 
My Airframe Metallic Design Capability Studies..pdf
My Airframe Metallic Design Capability Studies..pdfMy Airframe Metallic Design Capability Studies..pdf
My Airframe Metallic Design Capability Studies..pdf
 
Cricket management system ptoject report.pdf
Cricket management system ptoject report.pdfCricket management system ptoject report.pdf
Cricket management system ptoject report.pdf
 
Microsoft Azure AD architecture and features
Microsoft Azure AD architecture and featuresMicrosoft Azure AD architecture and features
Microsoft Azure AD architecture and features
 
Literature review for prompt engineering of ChatGPT.pptx
Literature review for prompt engineering of ChatGPT.pptxLiterature review for prompt engineering of ChatGPT.pptx
Literature review for prompt engineering of ChatGPT.pptx
 
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call GirlCall Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
Call Girls Goa (india) ☎️ +91-7426014248 Goa Call Girl
 
CSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdfCSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdf
 
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 MinutesCall Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
Call Girls In Tiruppur 👯‍♀️ 7339748667 🔥 Free Home Delivery Within 30 Minutes
 
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
High Profile Call Girls Ahmedabad 🔥 7737669865 🔥 Real Fun With Sexual Girl Av...
 
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
 

Chapter 6 design

  • 2. Design Engineering • It covers the set of principles, concepts, and practices that lead to the development of a high quality system or product. • Goal of design engineering is to produce a model or representation that depict: • Firmness – program should not have any bug that inhibits its functions. • Commodity – suitable to its intended use. • Delight - pleasurable to use • The design model provides detail about software data structures, architecture, interfaces, and components that are necessary to implement the system.
  • 3. Software Design • Software design model consists of 4 designs: • Data/class Design • Architectural Design • Interface Design • Component Design
  • 5. • Data/class design - Created by transforming the analysis model class- based elements into classes and data structures required to implement the software • Architectural design - defines the relationships among the major structural elements of the software, it is derived from the class-based elements and flow-oriented elements of the analysis model • Interface design - describes how the software elements, hardware elements, and end-users communicate with one another, it is derived from the analysis model scenario-based elements, flow-oriented elements, and behavioral elements • Component-level design - created by transforming the structural elements defined by the software architecture into a procedural description of the software components using information obtained from the analysis model class-based elements, flow-oriented elements, and behavioral elements
  • 6. Why design is so important? • It is place where quality is fostered. • It provides us with representation of software that can be assessed for quality. • Only way that can accurately translate a customer’s requirements into a finished software product. • It serves as foundation for all software engineering activities. • Without design difficult to assess: • Risk • Test • Quality
  • 7. Design Process and Design Quality • S/w design is an iterative process through which requirements are translated into a “blueprint” for constructing the s/w. • As design iteration occur, subsequent refinement leads to design representation at much lower levels of abstraction.
  • 8. Goal of design process • The design must implement all of the explicit requirements contained in the analysis model, and it must accommodate all of the implicit requirements desired by the customer. • The design must be a readable, understandable guide for those who generate code and for those who test and subsequently support the software. • The design should provide a complete picture of the software, addressing the data, functional, and behavioral domains from an implementation perspective.
  • 9. Quality Guidelines Characteristics of good design • A design should exhibit an architecture that • as been created using recognizable architectural styles or patterns, • is composed of components that exhibit good design characteristics and • can be implemented in an evolutionary fashion • A design should be modular; that is, the software should be logically partitioned into elements or subsystems • A design should contain distinct representations of data, architecture, interfaces, and components. • A design should lead to data structures that are appropriate for the classes to be implemented and are drawn from recognizable data patterns. • A design should lead to components that exhibit independent functional characteristics
  • 10. Quality Guidelines (contd.) • A design should lead to interfaces that reduce the complexity of connections between components and with the external environment. • A design should be derived using a repeatable method that is driven by information obtained during software requirements analysis. • A design should be represented using a notation that effectively communicates its meaning.
  • 11. Design Principles • S/W design is both a process and a model. • Design process - sequence of steps that enable the designer to describe all aspects of the software to be built. • Design model - created for software provides a variety of different views of the computer software
  • 12. Design Principles • The design process should not suffer from ‘tunnel vision.’ - Designer should consider alternative approaches. • The design should be traceable to the analysis model - a single element of the design model often traces to multiple requirements, it is necessary to have a means for tracking how requirements have been satisfied by the design model. • The design should not reinvent the wheel- use already exists design pattern because time is short and resource are limited. • The design should “minimize the intellectual distance” between the software and the problem as it exists in the real world. – design should be self-explanatory
  • 13. Design Principles • The design should exhibit uniformity and integration – before design work begins rules of styles and format should be defined for a design team. • The design should be structured to accommodate change • The design should be structured to degrade gently, even when unusual data, events, or operating conditions are encountered. • Design is not coding, coding is not design. • The design should be assessed for quality as it is being created, not after the fact • The design should be reviewed to minimize conceptual (semantic) errors.
  • 14. Design concepts • Design concepts provide the necessary framework for “to get the thing on right way”. • Abstraction • Refinement • Modularity • Architecture • Control Hierarchy • Structural Partitioning • Data Structure • Software Procedure • Information Hiding
  • 15. Abstraction • At the highest level of abstraction – a solution is stated in broad terms • At lower level of abstraction – a more detailed description of the solution is provided. • Two types of abstraction: • Procedural abstraction: Sequence of instructions that have a specific and limited function. Ex. Open a door open implies long sequence of activities (e.g. walk to the door, grasp knob, turn knob and pull the door, etc). • Data abstraction: collection of data that describes a data object. Ex. Open a door. – door is data object. • Data abstraction for door would encompass a set of attributes that describe the door. (E.g. door type, swing direction, opening mechanism, etc.)
  • 16. Refinement • Refinement is actually a process of elaboration. • begin with a statement of function (or description of information) that is defined at a high level of abstraction. • That is, the statement describes function or information conceptually but provides no information about the internal workings of the function or the internal structure of the information. • Refinement causes the designer to elaborate on the original statement, providing more and more detail as each successive refinement (elaboration) occurs. • Abstraction and refinement are complementary concepts. Abstraction enables a designer to specify procedure and data and yet suppress low-level details. • Refinement helps the designer to expose low-level details as design progresses.
  • 17. Modularity • Architecture and design pattern embody modularity. • Software is divided into separately named and addressable components, sometimes called modules, which are integrated to satisfy problem requirement. • modularity is the single attribute of software that allows a program to be intellectually manageable • It leads to a “divide and conquer” strategy. – it is easier to solve a complex problem when you break into a manageable pieces. • Refer fig. that state that effort (cost) to develop an individual software module does decrease if total number of modules increase. • However as the no. of modules grows, the effort (cost) associated with integrating the modules also grows.
  • 19. Modularity and software cost • Undermodularity and overmodularity should be avoided. But how do we know the vicinity of M? • We modularize a design so that development can be more easily planned. • Software increments can be defined and delivered. • Changes can be more easily accommodated. • Testing and debugging can be conducted more efficiently and long-term maintained can be conducted without serious side effects.
  • 20. Architecture • Software architecture suggest “ the overall structure of the software and the ways in which that structure provides conceptual integrity for a system. • No. of different models can use to represent architecture. • Structural Model- represent architecture as an organized collection of components • Framework model – Increase level of design abstraction by identifying repeatable architectural design framework. • Dynamic model – address behavior of the program architecture and indicating how system or structure configuration may change as a function. • Process Model – focus on design of the business or technical process that the system must accommodate. • Functional models – used to represent the functional hierarchy of a system.
  • 21. Control Hierarchy • Control hierarchy, represents the organization of program components (modules) and implies a hierarchy of control. • Different notations are used to represent control hierarchy for those architectural styles that are amenable to this representation. • The most common is the treelike diagram that represents hierarchical control for call and return architectures.
  • 23. Control Hierarchy • In fig. depth and width provide an indication of the number of levels of control and overall span of control. • Fan-out is a measure of the number of modules that are directly controlled by another module. Fan-in indicates how many modules directly control a given module. • A module that controls another module is said to be superordinate to it, and conversely, a module controlled by another is said to be subordinate to the controller. Ex. Module M is superordinate to modules a, b, and c. Module h is subordinate to module e
  • 25. Structure partitioning • Two types of Structure partitioning: • Horizontal Partitioning • Vertical Partitioning • Horizontal partitioning defines separate branches of the modular hierarchy for each major program function. • Control modules, represented in a darker shade are used to coordinate communication & execution between its functions. • Horizontal partitioning defines three partitions—input, data transformation (often called processing) and output. • Benefits of Horizontal partitioning: • software that is easier to test • software that is easier to maintain • propagation of fewer side effects • software that is easier to extend
  • 26. Structure partitioning • On the negative side (Drawback), horizontal partitioning often causes more data to be passed across module interfaces and can complicate the overall control of program flow. • Vertical partitioning, often called factoring, suggests that control (decision making) and work should be distributed top-down in the program structure. • Top-level modules should perform control functions and do little actual processing work. • Modules that reside low in the structure should be the workers, performing all input, computation, and output tasks.
  • 27. Structure partitioning • A change in a control module (high in the structure) will have a higher probability of propagating side effects to modules that are subordinate to it. • A change to a worker module, given its low level in the structure, is less likely to cause the propagation of side effects. • For this reason vertically partitioned structures are less likely to be susceptible to side effects when changes are made and will therefore be more maintainable.
  • 28. Data Structure • Data structure is a representation of the logical relationship among individual elements of data • A scalar item is the simplest of all data structures. It represents a single element of information that may be addressed by an identifier. • When scalar items are organized as a list or contiguous group, a sequential vector is formed. • When the sequential vector is extended to two, three, and ultimately, an arbitrary number of dimensions, an n-dimensional space is created. Most common n-dimensional space is the two-dimensional matrix • A linked list is a data structure that organizes contiguous scalar items, vectors, or spaces in a manner (called nodes) that enables them to be processed as a list. • A hierarchical data structure is implemented using multilinked lists that contain scalar items, vectors, and possibly, n-dimensional spaces.
  • 29. Software Procedure • Software procedure focuses on the processing details of each module individually. • Procedure must provide a precise specification of processing, including sequence of events, exact decision points, repetitive operations, and even data organization and structure.
  • 30. Information Hiding • The principle of information hiding suggests that modules be "characterized by design decisions that (each) hides from all others modules.“ • In other words, modules should be specified and designed so that information (algorithm and data) contained within a module is inaccessible to other modules that have no need for such information. • The intent of information hiding is to hide the details of data structure and procedural processing behind a module interface. • It gives benefits when modifications are required during testing and maintenance because data and procedure are hiding from other parts of software, unintentional errors introduced during modification are less.
  • 31. EFFECTIVE MODULAR DESIGN • Effective modular design consist of three things: • Functional Independence • Cohesion • Coupling
  • 32. Functional Independence • Functional independence is achieved by developing modules with "single-minded“ function and an "aversion" to excessive interaction with other modules. • In other words - each module addresses a specific sub- function of requirements and has a simple interface when viewed from other parts of the program structure. • Independence is important – • Easier to develop • Easier to Test and maintain • Error propagation is reduced • Reusable module.
  • 33. Functional Independence • To summarize, functional independence is a key to good design, and design is the key to software quality. • To measure independence, have two qualitative criteria: cohesion and coupling • Cohesion is a measure of the relative functional strength of a module. • Coupling is a measure of the relative interdependence among modules.
  • 34. Cohesion • Cohesion is a natural extension of the information hiding concept • A cohesive module performs a single task within a software procedure, requiring little interaction with procedures being performed in other parts of a program • Simply state, a cohesive module should (ideally) do just one thing. • We always strive for high cohesion, although the mid-range of the spectrum is often acceptable. • Low-end cohesiveness is much "worse" than middle range, which is nearly as "good" as high-end cohesion. • So. designer should avoid low levels of cohesion when modules are designed.
  • 35. Cohesion • When processing elements of a module are related and must be executed in a specific order, procedural cohesion exists. • When all processing elements concentrate on one area of a data structure, communicational cohesion is present. • High cohesion is characterized by a module that performs one distinct procedural task.
  • 36. Types of cohesion • A module that performs tasks that are related logically is logically cohesive. • When a module contains tasks that are related by the fact that all must be executed with the same span of time, the module exhibits temporal cohesion. • At the low-end of the spectrum, a module that performs a set of tasks that relate to each other loosely, called coincidentally cohesive.
  • 37. Coupling • Coupling depends on the interface complexity between modules, the point at which entry or reference is made to a module, and what data pass across the interface • In software design, we strive for lowest possible coupling. Simple connectivity among modules results in software that is easier to understand and less prone to a "ripple effect" caused when errors occur at one location and propagate through a system. • It occur because of design decisions made when structure was developed.
  • 39. Coupling • Coupling is characterized by passage of control between modules. • “Control flag” (a variable that controls decisions in a subordinate or superordinate module) is passed between modules d and e (called control coupling). • Relatively high levels of coupling occur when modules are communicate with external to software. • External coupling is essential, but should be limited to a small number of modules with a structure.
  • 40. • High coupling also occurs when a number of modules reference a global data area. • Common coupling, no. of modules access a data item in a global data area • So it does not mean “use of global data is bad”. It does mean that a software designer must be take care of this thing.
  • 41. Evolution of Software Design • Early design work concentrated on criteria for the development of modular programs and methods for refining software structures in a top-down manner. • Later work proposed methods for the translation of data flow or data structure into a design definition. • Today, the emphasis in software design has been on software architecture and the design patterns that can be used to implement software architectures.
  • 42. Characteristics are common to all design methods • A mechanism for the translation of analysis model into a design representation, • A notation for representing functional components and their interfaces. • Heuristics for refinement and partitioning • Guidelines for quality assessment.
  • 43. Design quality attributes • Acronym FURPS – • Functionality • Usability • Reliability • Performance • Supportability
  • 44. • Functionality – is assessed by evaluating the feature set and capabilities of the program. • Functions that are delivered and security of the overall system. • Usability – assessed by considering human factors, consistency & documentation. • Reliability – evaluated by • measuring the frequency and severity of failure. • Accuracy of output results. • Ability to recover from failure and predictability of the program. • Performance - measured by processing speed, response time, resource consumption, efficiency. • Supportability – combines the ability to extend the program (extensibility), adaptability and serviceability.

Editor's Notes

  1. As an example of low cohesion, consider a module that performs error processing for an engineering analysis package. The module is called when computed data exceed prespecified bounds. It performs the following tasks: (1) computes supplementary data based on original computed data, (2) produces an error report (with graphical content) on the user's workstation, (3) performs follow-up calculations requested by the user, (4) updates a database, and (5) enables menu selection for subsequent processing. Although the preceding tasks are loosely related, each is an independent functional entity that might best be performed as a separate module. Combining the functions into a single module can serve only to increase the likelihood of error propagation when a modification is made to one of its processing tasks.
  2. Modules a and d are subordinate to different modules. Each is unrelated and therefore no direct coupling occurs. Module c is subordinate to module a and is accessed via a conventional argument list, through which data are passed. As long as a simple argument list is present (i.e., simple data are passed; a one-to-one correspondence of items exists), low coupling (called data coupling) is exhibited in this portion of structure. A variation of data coupling, called stamp coupling, is found when a portion of a data structure (rather than simple arguments) is passed via a module interface. This occurs between modules b and a.
  3. Common coupling --Module c initializes the item. Later module g recomputed and updates the item. Let's assume that an error occurs and g updates the item incorrectly. Much later in processing module, k reads the item, attempts to process it, and fails, causing the software to abort. The apparent cause of abort is module k; the actual cause, module g. Diagnosing problems in structures with considerable common coupling is time consuming and difficult.
  翻译: