26
Software Models (Cont.) 06/23/22 ICS 413 – Software Engineering 1 - Component-based software engineering - Formal Development Model

Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Embed Size (px)

Citation preview

Page 1: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Software Models (Cont.)

04/19/23 ICS 413 – Software Engineering 1

- Component-based software engineering - Formal Development Model

Page 2: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Objectives

• To explain that CBSE is concerned with developing standardised components and composing these into applications

• To describe components and component models

• To show the principal activities in the CBSE process

• To discuss approaches to component composition and problems that may arise

04/19/23 ICS 413 – Software Engineering 2

Page 3: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Topics covered

• Components and component models• The CBSE process• Component composition

04/19/23 ICS 413 – Software Engineering 3

Page 4: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Component-based development

• Component-based software engineering (CBSE) is an approach to software development that relies on software reuse.

• It emerged from the failure of object-oriented development to support effective reuse. Single object classes are too detailed and specific.

• Components are more abstract than object classes and can be considered to be stand-alone service providers.

04/19/23 ICS 413 – Software Engineering 4

Page 5: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

CBSE essentials

• Independent components specified by their interfaces.

• Component standards to facilitate component integration.

• Middleware that provides support for component inter-operability.

• A development process that is geared to reuse.

04/19/23 ICS 413 – Software Engineering 5

Page 6: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

CBSE and design principles

• Apart from the benefits of reuse, CBSE is based on sound software engineering design principles:– Components are independent so do not interfere

with each other;– Component implementations are hidden;– Communication is through well-defined

interfaces;– Component platforms are shared and reduce

development costs.

04/19/23 ICS 413 – Software Engineering 6

Page 7: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

CBSE problems

• Component trustworthiness - how can a component with no available source code be trusted?

• Component certification - who will certify the quality of components?

• Emergent property prediction - how can the emergent properties of component compositions be predicted?

• Requirements trade-offs - how do we do trade-off analysis between the features of one component and another?

04/19/23 ICS 413 – Software Engineering 7

Page 8: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Components

• Components provide a service without regard to where the component is executing or its programming language– A component is an independent executable

entity that can be made up of one or more executable objects;

– The component interface is published and all interactions are through the published interface;

04/19/23 ICS 413 – Software Engineering 8

Page 9: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Component definitions

• Councill and Heinmann:– A software component is a software element that conforms to a

component model and can be independently deployed and composed without modification according to a composition standard.

• Szyperski:– A software component is a unit of composition with contractually

specified interfaces and explicit context dependencies only. A software component can be deployed independently and is subject to composition by third-parties.

04/19/23 ICS 413 – Software Engineering 9

Page 10: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Component as a service provider

• The component is an independent, executable entity. It does not have to be compiled before it is used with other components.

• The services offered by a component are made available through an interface and all component interactions take place through that interface.

04/19/23 ICS 413 – Software Engineering 10

Page 11: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Component characteristics 1

Standardised Component standardisation means that a component that isused in a CBSE process has to conform to some standardisedcomponent model. This model may define componentinterfaces, component meta-data, documentation, compositionand deployment.

Independent A component should be independent Ğ it should be possible tocompose and deploy it without having to use other specificcomponents. In situations where the component needsexternally provided services, these should be explicitly set outin a ÔrequiresÕ interface specification.

Composable For a component to be composable, all external interactionsmust take place through publicly defined interfaces. Inaddition, it must provide external access to information aboutitself such as its methods and attributes.

04/19/23 ICS 413 – Software Engineering 11

Page 12: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Component characteristics 2

Deployable To be deployable, a component has to be self-contained andmust be able to operate as a stand-alone entity on somecomponent platform that implements the component model.This usually means that the component is a binary componentthat does not have to be compiled before it is deployed.

Documented Components have to be fully documented so that potentialusers of the component can decide whether or not they meettheir needs. The syntax and, ideally, the semantics of allcomponent interfaces have to be specified.

04/19/23 ICS 413 – Software Engineering 12

Page 13: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Formal Specification

04/19/23 ICS 413 – Software Engineering 13

Page 14: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Objectives

• To explain why formal specification techniques help discover problems in system requirements

04/19/23 ICS 413 – Software Engineering 14

Page 15: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Topics covered

• Formal specification in the software process

04/19/23 ICS 413 – Software Engineering 15

Page 16: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Formal methods

• Formal specification is part of a more general collection of techniques that are known as ‘formal methods’.

• These are all based on mathematical representation and analysis of software.

• Formal methods include– Formal specification;– Specification analysis and proof;– Transformational development;– Program verification.

04/19/23 ICS 413 – Software Engineering 16

Page 17: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Acceptance of formal methods• Formal methods have not become mainstream software

development techniques as was once predicted– Other software engineering techniques have been successful at

increasing system quality. Hence the need for formal methods has been reduced;

– Market changes have made time-to-market rather than software with a low error count the key factor. Formal methods do not reduce time to market;

– The scope of formal methods is limited. They are not well-suited to specifying and analysing user interfaces and user interaction;

– Formal methods are still hard to scale up to large systems.

04/19/23 ICS 413 – Software Engineering 17

Page 18: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Use of formal methods

• The principal benefits of formal methods are in reducing the number of faults in systems.

• Consequently, their main area of applicability is in critical systems engineering. There have been several successful projects where formal methods have been used in this area.

• In this area, the use of formal methods is most likely to be cost-effective because high system failure costs must be avoided.

04/19/23 ICS 413 – Software Engineering 18

Page 19: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Specification in the software process

• Specification and design are inextricably intermingled.

• Architectural design is essential to structure a specification and the specification process.

• Formal specifications are expressed in a mathematical notation with precisely defined vocabulary, syntax and semantics.

04/19/23 ICS 413 – Software Engineering 19

Page 20: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Specification and design

Increasing contractor involvement

Decreasing client involvement

Specification

Design

Userrequirements

definition

Systemrequirementsspecification

Architecturaldesign

Formalspecification

High-leveldesign

04/19/23 ICS 413 – Software Engineering 20

Page 21: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Specification in the software process

Systemrequirementsspecification

Formalspecification

High-leveldesign

Userrequirements

definition

Systemmodelling

Architecturaldesign

04/19/23 ICS 413 – Software Engineering 21

Page 22: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Use of formal specification

• Formal specification involves investing more effort in the early phases of software development.

• This reduces requirements errors as it forces a detailed analysis of the requirements.

• Incompleteness and inconsistencies can be discovered and resolved.

• Hence, savings as made as the amount of rework due to requirements problems is reduced.

04/19/23 ICS 413 – Software Engineering 22

Page 23: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Cost profile

• The use of formal specification means that the cost profile of a project changes– There are greater up front costs as more time and

effort are spent developing the specification;– However, implementation and validation costs

should be reduced as the specification process reduces errors and ambiguities in the requirements.

04/19/23 ICS 413 – Software Engineering 23

Page 24: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Development costs with formal specification

Specification

Specification

Design andimplementation

Design andimplementation

Validation

Validation

Cost

04/19/23 ICS 413 – Software Engineering 24

Page 25: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Specification techniques

• Algebraic specification– The system is specified in terms of its operations

and their relationships.

• Model-based specification– The system is specified in terms of a state model

that is constructed using mathematical constructs such as sets and sequences. Operations are defined by modifications to the system’s state.

04/19/23 ICS 413 – Software Engineering 25

Page 26: Software Models (Cont.) 9/22/2015ICS 413 – Software Engineering1 -Component-based software engineering -Formal Development Model

Formal specification languages

04/19/23 ICS 413 – Software Engineering 26