Ch9 Evolution
Ch9 Evolution
Software evolution processes depend on Iteration of the development process where the revisions
▪ The type of software being maintained; to the system are designed, implemented and tested.
▪ The development processes used; A critical difference is that the first stage of change
▪ The skills and experience of the people involved. implementation may involve program understanding,
Proposals for change are the driver for system evolution. especially if the original system developers are not
▪ Should be linked with components that are affected by the responsible for the change implementation.
change, thus allowing the cost and impact of the change to be During the program understanding phase, you have to
estimated.
understand how the program is structured, how it
Change identification and evolution continues throughout delivers functionality and how the proposed change
the system lifetime. might affect the program.
Urgent changes may have to be implemented without Legacy systems are older systems that rely on
going through all stages of the software engineering languages and technology that are no longer used for
process new systems development.
▪ If a serious system fault has to be repaired to allow normal Legacy software may be dependent on older hardware,
operation to continue;
such as mainframe computers and may have associated
▪ If changes to the system’s environment (e.g. an OS upgrade)
legacy processes and procedures.
have unexpected effects;
▪ If there are business changes that require a very rapid response Legacy systems are not just software systems but are
(e.g. the release of a competing product). broader socio-technical systems that include hardware,
software, libraries and other supporting software and
business processes.
System hardware Legacy systems may have been Business processes These are processes that are used
written for hardware that is no longer available. in the business to achieve some business objective.
Support software The legacy system may rely on a Business processes may be designed around a legacy
range of support software, which may be obsolete or system and constrained by the functionality that it
unsupported. provides.
Application software The application system that Business policies and rules These are definitions of how
provides the business services is usually made up of a the business should be carried out and constraints on
number of application programs. the business. Use of the legacy application system may
be embedded in these policies and rules.
Application data These are data that are processed by
the application system. They may be inconsistent,
duplicated or held in different databases.
30/10/2014 Chapter 9 Software Evolution 21 30/10/2014 Chapter 9 Software Evolution 22
Low quality, low business value Assessment should take different viewpoints into
▪ These systems should be scrapped. account
Low-quality, high-business value ▪ System end-users;
▪ Business customers;
▪ These make an important business contribution but are
expensive to maintain. Should be re-engineered or replaced if a ▪ Line managers;
suitable system is available. ▪ IT managers;
High-quality, low-business value ▪ Senior managers.
▪ Replace with COTS, scrap completely or maintain. Interview different stakeholders and collate results.
High-quality, high business value
▪ Continue in operation using normal system maintenance.
Factor Questions
Support requirements What local support is required by the hardware and
Factor Questions
software? If there are high costs associated with this
support, it may be worth considering system replacement. Understandability How difficult is it to understand the source code of the current
system? How complex are the control structures that are used?
Maintenance costs What are the costs of hardware maintenance and support
Do variables have meaningful names that reflect their function?
software licences? Older hardware may have higher
maintenance costs than modern systems. Support software Documentation What system documentation is available? Is the documentation
may have high annual licensing costs. complete, consistent, and current?
Interoperability Are there problems interfacing the system to other systems? Data Is there an explicit data model for the system? To what extent is
Can compilers, for example, be used with current versions data duplicated across files? Is the data used by the system up to
of the operating system? Is hardware emulation required? date and consistent?
Performance Is the performance of the application adequate? Do performance
problems have a significant effect on system users?
Modifying a program after it has been put into use. Fault repairs
The term is mostly used for changing custom software. ▪ Changing a system to fix bugs/vulnerabilities and correct
deficiencies in the way meets its requirements.
Generic software products are said to evolve to create
new versions. Environmental adaptation
▪ Maintenance to adapt software to a different operating
Maintenance does not normally involve major changes to
environment
the system’s architecture.
▪ Changing a system so that it operates in a different environment
Changes are implemented by modifying existing (computer, OS, etc.) from its initial implementation.
components and adding new components to the system. Functionality addition and modification
▪ Modifying the system to satisfy new requirements.
Maintenance prediction is concerned with assessing Predicting the number of changes requires and
which parts of the system may cause problems and have understanding of the relationships between a system
high maintenance costs and its environment.
▪ Change acceptance depends on the maintainability of the Tightly coupled systems require changes whenever the
components affected by the change;
environment is changed.
▪ Implementing changes degrades the system and reduces its
maintainability; Factors influencing this relationship are
▪ Maintenance costs depend on the number of changes and costs ▪ Number and complexity of system interfaces;
of change depend on maintainability. ▪ Number of inherently volatile system requirements;
▪ The business processes where the system is used.
Predictions of maintainability can be made by assessing Process metrics may be used to assess maintainability
the complexity of system components. ▪ Number of requests for corrective maintenance;
Studies have shown that most maintenance effort is ▪ Average time required for impact analysis;
spent on a relatively small number of system ▪ Average time taken to implement a change request;
components. ▪ Number of outstanding change requests.