Software Maintenance.

Slides:



Advertisements
Similar presentations
Software Re-engineering
Advertisements

Software Re-engineering
CIS 376 Bruce R. Maxim UM-Dearborn
Chapter 11 Software Evolution
SWE 316: Software Design and Architecture Objectives Lecture # 23 Software Reengineering SWE 316: Software Design and Architecture  To describe the activities.
Software Evolution Managing the processes of software system change
Dr Kettani, Spring 2002 Software Engineering IIFrom Sommerville, 6th edition Software change l Managing the processes of software system change.
Modified from Sommerville’s originalsSoftware Engineering, 7th edition. Chapter 21 Slide 1 Software evolution.
Modified from Sommerville’s originalsSoftware Engineering, 7th edition. Chapter 21 Slide 1 Software evolution.
Software evolution.
Software evolution.
Driss Kettani Sommerville, 6th edition Software Engineering II Software re-engineering l Reorganising and modifying existing software systems to make them.
Software Reengineering
 2004 by SEC Chapter 9 Software Maintenance. 2  2004 by SEC Chapter 9 Software Maintenance 9.1 Software Evolution 9.2 Types of Software Maintenance.
Software Reengineering 2003 년 12 월 2 일 최창익, 고광 원.
Software Re-engineering
Chapter 9 – Software Evolution and Maintenance
Software evolution. Objectives l To explain why change is inevitable if software systems are to remain useful l To discuss software maintenance and maintenance.
CS 425/625 Software Engineering Legacy Systems
MIS 673: Database Analysis and Design u Objectives: u Know how to analyze an environment and draw its semantic data model u Understand data analysis and.
Chapter 6 CASE Tools Software Engineering Chapter 6-- CASE TOOLS
©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 28Slide 1 CO7206 System Reengineering 4.2 Software Reengineering Most slides are Slides.
Chapter 5: Software Re-Engineering Omar Meqdadi SE 3860 Lecture 5 Department of Computer Science and Software Engineering University of Wisconsin-Platteville.
©Ian Sommerville 1995/2000 (Modified by Spiros Mancoridis 1999) Software Engineering, 6th edition. Chapters 26,27,28 Slide 1 Legacy Systems l Older software.
HNDIT23082 Lecture 06:Software Maintenance. Reasons for changes Errors in the existing system Changes in requirements Technological advances Legislation.
Chapter 1 Introduction to Systems Design and Analysis Systems Analysis and Design Kendall and Kendall Sixth Edition.
1 Software Maintenance The process of changing the system after it has been delivered and in operation Software change is inevitable –New requirements.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 21 Slide 1 Software evolution 2.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 21 Slide 1 Software evolution.
Chapter 9 – Software Evolution 1Chapter 9 Software evolution.
© SERG Reverse Engineering (Software Maintenance & Reengineering) Software Maintenance Managing the processes of system change.
CASE Tools and their Effect on Software Quality
CS223: Software Engineering Lecture 33: Software Maintenance.
Tempus Software Maintenance and Evolution JMSE-SM&E Unit 6: Reengineering and Maintenance in software cycle Prof. Mohammad A. Mikki Gaza, Palestine,
CS223: Software Engineering Lecture 34: Software Maintenance.
Laurea Triennale in Informatica – Corso di Ingegneria del Software I – A.A. 2006/2007 Andrea Polini XVI. Software Evolution.
Building Enterprise Applications Using Visual Studio®
Normalized bubble chart for Data in the Instructor’s View
Chapter 1 The Systems Development Environment
Chapter 1 The Systems Development Environment
CS223: Software Engineering
Environment Assessment
CSCI-235 Micro-Computer Applications
1.Introduction to Software Engineering
Computer Aided Software Engineering (CASE)
Introduction to Software Evolution and Maintenance
Managing the System PPT SOURCE : Shari L. Pfleeger Joann M. Atlee.
G. Pullaiah College of Engineering and Technology, Kurnool
Chapter 1 The Systems Development Environment
Abstract descriptions of systems whose requirements are being analysed
Software Maintenance
Software Maintenance PPT By :Dr. R. Mall.
Chapter 9 – Software Evolution
Database System Architecture
Legacy Systems Older software systems that remain vital to an organisation.
IS301 – Software Engineering V:
Data base management system dbms
Software Re-Engineering
Chapter 27 Software Change.
Chapter 8 Software Evolution.
Methodology Conceptual Databases Design
Lecture 06:Software Maintenance
Legacy system components
System Reengineering Restructuring or rewriting part or all of a system without changing its functionality Applicable when some (but not all) subsystems.
Re- engineeniering.
Chapter 1 The Systems Development Environment
Introduction Software maintenance:
Software Re-engineering and Reverse Engineering
Overview of Computer system
Presentation transcript:

Software Maintenance

9.6 Re-engineering, Reverse Engineering and Forward Engineering

Software Rejuvenation Re-documentation Creation or revision of alternative representations of software at the same level of abstraction Generates: data interface tables, call graphs, component/variable cross references etc. Restructuring transformation of the system’s code without changing its behavior

Software Rejuvenation (cont’d) Reverse Engineering Analyzing a system to extract information about the behavior and/or structure also Design Recovery - recreation of design abstractions from code, documentation, and domain knowledge Generates: structure charts, entity relationship diagrams, DFDs, requirements models Re-engineering Examination and alteration of a system to reconstitute it in another form Also known as renovation, reclamation

System Re-engineering Re-structuring or re-writing part or all of a legacy system without changing its functionality Applicable where some but not all sub-systems of a larger system require frequent maintenance Re-engineering involves adding effort to make them easier to maintain. The system may be re-structured and re-documented

When to Re-engineer When system changes are mostly confined to part of the system then re-engineer that part When hardware or software support becomes obsolete When tools to support re-structuring are available

Re-engineering Advantages Reduced risk There is a high risk in new software development. There may be development problems, staffing problems and specification problems Reduced cost The cost of re-engineering is often significantly less than the costs of developing new software

Forward Engineering and Re-engineering [SOM2004]

The Re-engineering Process [SOM2004]

Re-Engineering Cost Factors The quality of the software to be re-engineered The tool support available for re-engineering The extent of the data conversion which is required The availability of expert staff for re-engineering

Re-Engineering Approaches [SOM2004]

Source Code Translation Involves converting the code from one language (or language version) to another e.g. FORTRAN to C May be necessary because of: Hardware platform update Staff skill shortages Organisational policy changes Only realistic if an automatic translator is available

The Program Translation Process [SOM2004]

Program Structure Improvement Maintenance tends to corrupt the structure of a program. It becomes harder and harder to understand The program may be automatically restructured to remove unconditional branches Conditions may be simplified to make them more readable

Spaghetti Logic [SOM2004]

Structured Control Logic [SOM2004]

Condition Simplification -- Complex condition if not (A > B and (C < D or not ( E > F) ) )... -- Simplified condition if (A <= B and (C>= D or E > F)...

Automatic Program Restructuring [SOM2004]

Restructuring Problems Problems with re-structuring are: Loss of comments Loss of documentation Heavy computational demands Restructuring doesn’t help with poor modularisation where related components are dispersed throughout the code The understandability of data-driven programs may not be improved by re-structuring

Module types Data abstractions Hardware modules Functional modules Abstract data types where data structures and associated operations are grouped Hardware modules All functions required to interface with a hardware unit Functional modules Modules containing functions that carry out closely related tasks Process support modules Modules where the functions support a business process or process fragment

Recovering Data Abstractions Many legacy systems use shared tables and global data to save memory space Causes problems because changes have a wide impact in the system Shared global data may be converted to objects or ADTs Analyse common data areas to identify logical abstractions Create an ADT or object for these abstractions Use a browser to find all data references and replace with reference to the data abstraction

Data Abstraction Recovery Analyse common data areas to identify logical abstractions Create an abstract data type or object class for each of these abstractions Provide functions to access and update each field of the data abstraction Use a program browser to find calls to these data abstractions and replace these with the new defined functions

Data Re-engineering Involves analysing and reorganising the data structures (and sometimes the data values) in a program May be part of the process of migrating from a file-based system to a DBMS-based system or changing from one DBMS to another Objective is to create a managed data environment

Approaches to Data Re-engineering [SOM2004]

Data Problems End-users want data on their desktop machines rather than in a file system. They need to be able to download this data from a DBMS Systems may have to process much more data than was originally intended by their designers Redundant data may be stored in different formats in different places in the system

Data Problems (cont’d) Data naming problems Names may be hard to understand. The same data may have different names in different programs Field length problems The same item may be assigned different lengths in different programs Record organisation problems Records representing the same entity may be organised differently in different programs Hard-coded literals No data dictionary

Data Conversion Data re-engineering may involve changing the data structure organisation without changing the data values Data value conversion is very expensive. Special-purpose programs have to be written to carry out the conversion

The Data Re-engineering Process [SOM2004]

Reverse Engineering Analysing software with a view to understanding its design and specification May be part of a re-engineering process but may also be used to re-specify a system for re-implementation Builds a program data base and generates information from this Program understanding tools (browsers, cross-reference generators, etc.) may be used in this process

The Reverse Engineering Process [SOM2004]

Thanks….