Presentation is loading. Please wait.

Presentation is loading. Please wait.

Objectives To introduces the concept of software Design.

Similar presentations


Presentation on theme: "Objectives To introduces the concept of software Design."— Presentation transcript:

1 Objectives To introduces the concept of software Design.
To introduce the concept of Object-Oriented Design (OOD). To Define various aspects about object modeling.

2 Software Design Design is an abstracted representation of a system that captures its constituting parts. Transformation of the analysis model into a more concrete model. Decomposition of a system into sub-systems based on the analysis model of problem domain.

3 Software Design Is a problem-solving activity
You will investigate possible options to met specs. Evaluate solutions and make decisions.

4 Software Design Attributes
Abstraction Identify the important parts and ignore the unnecessary details. Simplicity Avoid function or method complexity (single service) Decomposition & Modularity Replaceable and re-usable. Coupling Interaction among modules. Cohesion Degree of association within a module. Encapsulation Hide module’s properties and control their accessibility.

5 Goals of software design
Correctness Software design must satisfy the requirements for the application. Robustness Able to handle miscellaneous and unusual conditions such as bad data, user error, programmer error, and environmental conditions. Flexibility Separation of interface and implementation. Reusability Efficiency Only use the available resources. Reliability It is relatively bug free. Usability Easy user interface

6 A checklist for checking some of the goals of software design
How can we tell from the code that all required functionality has been handled? (correctness) If the user makes a mistake, does the system crash or perform unpredictably (robustness) Is the system hard to modify, add or remove parts? (flexibility) Does the system execute fast enough? (speed efficiency) Does the system satisfy memory requirements? (space efficiency) Are the class usable for other applications? (reusability)

7 OO Design Object-oriented design is concerned with developing an object-oriented model of a software system to implement the identified requirements. An object is an entity that has a state and a defined set of operations which operate on that state. Objects are created according to a class definition. Is an instance of class.

8 Weather system description
A weather mapping system is required to generate weather maps on a regular basis using data collected from remote, unattended weather stations and other data sources such as weather observers, balloons and satellites. Weather stations transmit their data to the area computer in response to a request from that machine. The area computer system validates the collected data and integrates it with the data from different sources. The integrated data is archived and, using data from this archive and a digitised map database a set of local weather maps is created. Maps may be printed for distribution on a special-purpose map printer or may be displayed in a number of different formats.

9 OO Design Process The principal activities in any OO design process include: Define the context and modes of use of the system. Design the system architecture. Identify the principal system objects. Develop design models. Specify object interfaces.

10 Context & Model of use System Context: A static model describes other systems in the environment. Use a subsystem model to show other systems. A model of use: A dynamic model describes how the system interacts with its environment. Use use-cases to show interactions. Both are complementary and necessary to develop an understanding of the relationships between the software being designed and its external environment.

11 System Context Example

12 Use-case models Use-case models are used to represent each interaction with the system. A use-case model shows the system features as ellipses and the interacting entity as a stick figure.

13 Use-case Example

14 Architecture Once interactions between the system and its environment have been understood, you use this information for designing the system architecture.

15 Example of Architecture

16 Identify Objects Identifying objects is the most difficult part of object oriented design. There is no 'magic formula' for object identification. It relies on the skill, experience and domain knowledge of system designers. Object identification is an iterative process. You are unlikely to get it right first time.

17 Approaches to identification
Use a grammatical approach based on a natural language description of the system. Objects and attributes are nouns, operations or services are verbs Base the identification on physical things in the application domain. Application domain, Role, Events, Locations… etc Use a behavioural approach and identify objects based on what participates in what behaviour. Use a scenario-based analysis to identify objects, attributes and methods in each scenario.

18 Design Models Design models show the objects and classes and relationships between these entities. Static models describe the static structure of the system in terms of classes and relationships at development-time. Dynamic models describe the dynamic interactions between objects at run-time.

19 Design Models

20 Examples of design models
Sub-system models that show logical groupings of objects into coherent subsystems. Sequence models that show the sequence of object interactions. State machine models that show how individual objects change their state in response to events. Other models include use-case models, generalisation models, specialisation models …etc.

21 Subsystem models Shows how the design is organised into logically related groups of objects. In the UML, these are shown using packages - an encapsulation construct. The UML annotation is used to label packages as sub-systems.

22 Example subsystems

23 Subsystem Decomposition
Interface subsystem Includes the objects in the system that are concerned with interfacing the “weather station” to external systems May include other objects from those shown here - e.g. a user interface for testing. Data collection subsystem Includes objects that implement the strategies adopted for data collection These are deliberately separated from the actual data collection to allow for changes to these strategies Instruments subsystem Includes all objects that interface to the instrument hardware

24 Sequence models Sequence models show the sequence of object interactions that take place Objects are arranged horizontally across the top. Time is represented vertically so models are read top to bottom. Interactions are represented by labelled arrows, Different styles of arrow represent different types of interaction. A thin rectangle in an object lifeline represents the time when the object is the controlling object in the system.

25 Data collection sequence

26 Sequence of operations
The sequence diagram shows: An external entity, shown as a stick man, (it can be a person or another system) initiates the data collection by sending a request to the interface object The interface object sends a request to the weather station to provide a report for transmission The weather station requests the WeatherData object which maintains all raw weather data to provide a summary that will be included in this report

27 Statecharts Show how objects respond to different service requests and the state transitions triggered by these requests The states are represented as rounded rectangles State transitions are labelled links between these rectangles

28 Weather station state diagram

29 Interfaces Object interfaces have to be specified so that the objects and other components can be designed in parallel. Designers should avoid designing the interface representation but should hide this in the object itself. Objects may have several interfaces which are viewpoints on the methods provided. The UML uses class diagrams for interface specification but Java may also be used.

30 Weather station interface

31 Design evolution Hiding information inside objects means that changes made to an object do not affect other objects in an unpredictable way. Assume pollution monitoring facilities are to be added to weather stations. These sample the air and compute the amount of different pollutants in the atmosphere. Pollution readings are transmitted with weather data.

32 Pollution monitoring

33 Key points Object-oriented development involves adopting an OO approach at all stages from specification through to programming OO design involves designing the system using objects as the fundamental abstraction and representing the system as an associated set of models. The OO design process involves several stages - discussed here were Context, Architecture and Objects. A range of different models may be produced during an object-oriented design process. These include static and dynamic system models. Object interfaces should be defined precisely using e.g. a programming language like Java. Object-oriented design potentially simplifies system evolution.


Download ppt "Objectives To introduces the concept of software Design."

Similar presentations


Ads by Google