Top Banner
Chapter 10 Software Evolution Chapter 21 in your textbook 1 1
26

Chapter 10 Software Evolution

Feb 25, 2016

Download

Documents

avian

Chapter 10 Software Evolution . Chapter 21 in your textbook . 1. Objectives. Understand that change is inevitable if software systems are to remain useful Learned different types of software maintenance and factors that effect its costs Understand software re-engineering. 2. Overview. - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

Chapter 3 Project Management

Chapter 10 Software Evolution Chapter 21 in your textbook 111ObjectivesUnderstand that change is inevitable if software systems are to remain usefulLearned different types of software maintenance and factors that effect its costsUnderstand software re-engineering222OverviewSoftware evolutionSoftware maintenanceEvolution processSystem Re-engineering333Software changeSoftware change is inevitableNew requirements emerge when the software is used;The business environment changes;Errors must be repaired;New computers and equipment is added to the system;The performance or reliability of the system may have to be improved.A key problem for organisations is implementing and managing change to their existing software systems.4Importance of EvolutionOrganizations have huge investments in their software systems. To maintain the value of these assets to the business, they must be changed and updated.The majority of the software budget in large companies is devoted to evolving existing software rather than developing new software.

5Spiral model of evolution

6Software Maintenance Modifying a program after it has been put into use.Maintenance does not normally involve major changes to the systems architecture.Changes are implemented by modifying existing components and adding new components to the system.

7Maintenance or EvolutionThe term maintenance is used when separate groups are involved before and after delivery.

Evolution is used when the same group is involved before and after delivery.8What types of software maintenance can you think of?9

Types of maintenance Maintenance to repair software faultsCorrect coding errors, design errors, or requirement errors.Maintenance to adapt software to a different operating environmentChanging a system so that it operates in a different environment (computer, OS, etc.) from its initial implementation.Maintenance to add to or modify the systems functionalityModifying the system to satisfy new requirements.

10Which type do you think is the most common?11

Distribution of maintenance efforts

12Maintenance costsUsually greater than development costs (2* to 100* depending on the application).Affected by both technical and non-technical factors.Increases as software is maintained. Maintenance corrupts the software structure so makes further maintenance more difficult.Ageing software can have high support costs (e.g. old languages, compilers etc.).

13Development and maintenance costs

14Maintenance cost factors Team stabilityMaintenance costs are reduced if the same staff are involved with them for some time.Contractual responsibilityThe developers of a system may have no contractual responsibility for maintenance so there is no incentive to design for future change.Staff skillsMaintenance staff are often inexperienced and have limited domain knowledge.Program age and structureAs programs age, their structure is degraded and they become harder to understand and change.

15Evolution processEvolution processes depend onThe type of software being maintained;The development processes used;The skills and experience of the people involved.Proposals for change are the driver for system evolution. Change identification and evolution continue throughout the system lifetime.

16Change identification and evolution

17The system evolution process

18Change implementation

19Software Re-engineering 20Software Re-engineeringRe-structuring or re-writing part or all of a legacy system without changing its functionality.

21Class ActivityFormulate groups, and answer the following question:

Why would you want to re-engineer a software system?22Software Re-engineeringApplicable 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.23The re-engineering process

24Re-engineering process activitiesSource code translationConvert code to a new language.Reverse engineeringAnalyze the program to understand it;Program structure improvementRestructure automatically for understandability;Program modularizationReorganize the program structure;Data reengineeringClean-up and restructure system data.

25Re-engineering cost factorsThe quality of the software to be reengineered.The tool support available for reengineering.The extent of the data conversion which is required.The availability of expert staff for reengineering. This can be a problem with old systems based on technology that is no longer widely used.

26