/
Introduction to Software Engineering Introduction to Software Engineering

Introduction to Software Engineering - PowerPoint Presentation

trish-goza
trish-goza . @trish-goza
Follow
394 views
Uploaded On 2018-02-27

Introduction to Software Engineering - PPT Presentation

Lecture 7 André van der Hoek Todays Lecture Module design Todays Lecture Architectural design revisited Module design Interfaces Official ICS 52 design notation A Good Design ID: 638492

required interface module design interface required design module interfaces object layer simple defined boolean modules components component define change

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Introduction to Software Engineering" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Introduction to Software EngineeringLecture 7

André

van der

HoekSlide2

Today’s Lecture

Module designSlide3

Today’s Lecture

Architectural design

revisited

Module design

Interfaces

Official

ICS 52 design

notationSlide4

A Good Design…

…is half the implementation effort!

Rigor

ensures all requirements are addressed

Separation of concerns

Modularity

allows work in isolation because components are independent of each other

Abstraction

allows work in isolation because interfaces guarantee that components will work together

Anticipation of change

allows changes to be absorbed seamlessly

Generality

allows components to be reused throughout the system

Incrementality

allows the software to be developed with intermediate working resultsSlide5

A Bad Design…

…will never be implemented!

Lack of rigor leads to missing functionality

Separation of concerns

Lack of modularity leads to conflicts among developers

Lack of abstraction leads to massive integration problems (and headaches)

Lack of anticipation of change leads to redesigns and reimplementations

Lack of generality leads to “code bloat”

Lack of incrementality leads to a big-bang approach that is likely to “bomb”Slide6

Design

Architectural design

High-level partitioning of a software system into separate modules

(components)

Focus on the interactions among parts

(connections)

Focus on structural properties

(architecture)

“How does it all fit together?”

Module design

Detailed design of a component

Focus on the internals of a component

Focus on computational properties

“How does it work?”Slide7

Architectural Design

A simple diagram is not enough

It is only a start

Additional decisions need to be made

Define the primary purpose of each component

Define the interface of each component

Primary methods of access/use

As complete as possible

Always

requires multiple iterations

Cannot do it right in one shot

Use the fundamental principlesSlide8

Design Interaction

Architectural design

(previous lecture)

Module design

(this lecture)Slide9

From Architecture to Modules

Repeat the design process

Design the internal architecture of a component

Define the purpose of each module

Define the provided interface of each module

Define the required interface of each module

Do this over and over again

Until each module has…

…a simple, well-defined internal architecture

…a simple, well-defined purpose

…a simple, well-defined provided interface

…a simple, well-defined required interface

Until all modules “hook up”Slide10

But What About Those Interfaces?

Provided Interface

Peer

Required Interface

Provided Interface

Peer

Required Interface

Provided Interface

Client

Required Interface

Provided Interface

Client

Required Interface

Provided Interface

Client

Required Interface

Provided Interface

Server

Required Interface

Provided Interface

Layer 1

Required Interface

Provided Interface

Layer 2

Required Interface

Provided Interface

Layer 3

Required Interface

Provided Interface

Layer 4

Required InterfaceSlide11

Interfaces

Abstraction of the functionality of a component

Defines the set of services that a component provides or requires

Other components use or supply these services

Components themselves implement the services

With or without the help of other components

Serves as a contract

Other components rely on the contract

Any change can have far-reaching consequences

Interfaces are the key to proper designSlide12

Example: Splitting and Sorting Files

boolean storeSmallZipFile(Contents c)

boolean storeSmallFile(Contents c)

boolean splitFile(Contents c)

Result sortAndSplitFile(Contents c)

Provided Interface

Sort

Required Interface

Provided Interface

Split

Required Interface

Provided Interface

Store

Required Interface

Provided Interface

Zip

Required InterfaceSlide13

Provided Interface

Broker

Required Interface

Provided Interface

Broker

Required Interface

Provided Interface

NASDAQ

Required Interface

Provided Interface

Bus

Required Interface

Example: Stock Market

boolean BroadcastEvent(Event e)

void registerInterest(EventType et)

Event receiveEvent()

Provided Interface

Broker

Required InterfaceSlide14

Interfaces and Fundamental Principles

Interfaces are rigorously and formally defined

Interfaces separate concerns

Interfaces modularize a system

Interfaces abstract implementation details

With respect to what is provided

With respect to what is required

(Good) Interfaces anticipate change

(Good) Interfaces present generalizations

(Good) Interfaces promote incrementalitySlide15

Tools of the Trade

Apply information hiding

“Secrets should be kept from other modules”

Use requirements specification

Objects, entities, relationships, algorithms

Determine usage patterns

Anticipate change

Design for generality and incrementality

Reuse

Design for program familiesSlide16

Apply Information Hiding

One module “hides secret information” from other modules

Data representations

Algorithms

Input and output formats

Sequencing of processing

Why?

To create a clean separation of concernsSlide17

Example: Java Vector Class

constructor Vector(int initialCapacity)

boolean equals(Object o)

Object clone()

void add(Object o)

void remove(Object o)

boolean contains(Object o)

Object elementAt(int index)

void clear()

int size()

boolean isEmpty()

string toString()Slide18

Example: Java Stack Class

constructor Stack(int initialCapacity)

boolean equals(Object o)

Object clone()

void push(Object o)

Object pop()

Object peek()

void clear()

int size()

boolean isEmpty()

string toString()Slide19

Use Requirements Specification

A requirements specification contains lots of useful information to be leveraged during design

Nouns: modules / classes

Verbs: methods

Adjectives: properties/attributes/member variables

Expletives: exceptions

Why?

To identify likely design elementsSlide20

Determine Usage Patterns

Usage patterns are incredible sources of information

Common tasks often can be placed into a single interface method

Specific combinations of method invocations

Specific iterations over a single method

Some usage patterns require non-existing functions

Why?

To refine the interface of a moduleSlide21

Anticipate Change

Wrap items likely to change within modules

Design decisions

Data representations

Algorithms

Design module interfaces to be insensitive to change

The changeable items go into the module itself

Why?

To limit the effects of unanticipated system modificationsSlide22

Design for Generality/Incrementality

Design a module to be usable in more than one context

Generalize the applicability of methods

Do not just draw red squares

Do not just stack integers

Allow for the addition of extra methods

Why?

To increase reuseSlide23

Design for Program Families

A system is typically used in more than one setting

Different countries

Different languages

Different customs

Different currencies

Different hardware/software platforms

Why?

To enhance applicability

Special case of generality and incrementality at the system levelSlide24

From Architecture to Modules

Repeat the design process

Design the internal architecture of a component

Define the purpose of each module

Define the provided interface of each module

Define the required interface of each module

Do this over and over again

Until each module has…

…a simple, well-defined internal architecture

…a simple, well-defined purpose

…a simple, well-defined provided interface

…a simple, well-defined required interface

Until all interfaces “hook up”Slide25

Good Examples of Modules

Design Patterns

book

Java

1.6

collection

classes

Standard template library for C++Slide26

Official ICS 52 Design Notation

Provided Interface

Layer 1

Required Interface

Provided Interface

Layer 2

Required Interface

Provided Interface

Layer 3

Required Interface

Provided Interface

Layer 4

Required Interface

Provided Interface

Layer 4

Required Interface

Provided Interface

Foo

Required Interface

Provided Interface

Bar

Required Interface

Provided Interface

FooBar

Required Interface

Look for an e-mail for

a document describing

the official

ICS 52 design

notation.Slide27

Your Tasks

Read and study slides of this

lecture

Memorize the architectural

styles

Read and study Chapters 11 and 12 of

van

Vliet