1 Chapter 9 Software Evolution
1 Chapter 9 Software Evolution
1 Chapter 9 Software Evolution
Lecture 1
Topics covered
Evolution processes
Change processes for software systems
Software maintenance
Making changes to operational software systems
Software change
Software change is inevitable
Importance of evolution
Organisations have huge investments in their software
systems - they are critical business assets.
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 changing and evolving existing software
rather than developing new software.
Servicing
At this stage, the software remains useful but the only changes
made are those required to keep it operational i.e. bug fixes and
changes to reflect changes in the softwares environment. No
new functionality is added.
Phase-out
The software may still be used but no further changes are made
to it.
Chapter 9 Software evolution
Evolution processes
Software evolution processes depend on
The type of software being maintained;
The development processes used;
The skills and experience of the people involved.
10
Change implementation
11
Change implementation
Iteration of the development process where the revisions
to the system are designed, implemented and tested.
A critical difference is that the first stage of change
implementation may involve program understanding,
especially if the original system developers are not
responsible for the change implementation.
During the program understanding phase, you have to
understand how the program is structured, how it
delivers functionality and how the proposed change
might affect the program.
12
13
14
15
Handover problems
Where the development team have used an agile
approach but the evolution team is unfamiliar with agile
methods and prefer a plan-based approach.
The evolution team may expect detailed documentation to
support evolution and this is not produced in agile processes.
16
17
Change is inevitable
The system requirements are likely to change
while the system is being developed because
the environment is changing. Therefore a
delivered system won't meet its requirements!
Systems are tightly coupled with their environment.
When a system is installed in an
environment it changes that environment and
therefore changes the system requirements.
Systems MUST be changed if they
are to remain useful in an environment.
18
Lehmans laws
Law
Description
Continuing change
Increasing
complexity
Large program
evolution
Organizational
stability
19
Lehmans laws
Law
Description
Conservation of familiarity Over the lifetime of a system, the incremental change in each
release is approximately constant.
Continuing growth
Declining quality
Feedback system
20
21
Key points
Software development and evolution can be thought of
as an integrated, iterative process that can be
represented using a spiral model.
For custom systems, the costs of software maintenance
usually exceed the software development costs.
The process of software evolution is driven by requests
for changes and includes change impact analysis,
release planning and change implementation.
Lehmans laws, such as the notion that change is
continuous, describe a number of insights derived from
long-term studies of system evolution.
Chapter 9 Software evolution
22
Lecture 2
23
Software maintenance
Modifying a program after it has been put into use.
The term is mostly used for changing custom software.
Generic software products are said to evolve to create
new versions.
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.
24
Types of maintenance
Maintenance to repair software faults
Changing a system to correct deficiencies in the way meets its
requirements.
25
26
Maintenance costs
Usually 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.).
27
28
Contractual responsibility
The developers of a system may have no contractual
responsibility for maintenance so there is no incentive to design
for future change.
Staff skills
Maintenance staff are often inexperienced and have limited
domain knowledge.
29
Maintenance prediction
Maintenance prediction is concerned with assessing
which parts of the system may cause problems and have
high maintenance costs
Change acceptance depends on the maintainability of the
components affected by the change;
Implementing changes degrades the system and reduces its
maintainability;
Maintenance costs depend on the number of changes and costs
of change depend on maintainability.
30
Maintenance prediction
31
Change prediction
Predicting the number of changes requires and
understanding of the relationships between a system
and its environment.
Tightly coupled systems require changes whenever the
environment is changed.
Factors influencing this relationship are
Number and complexity of system interfaces;
Number of inherently volatile system requirements;
The business processes where the system is used.
32
Complexity metrics
Predictions of maintainability can be made by assessing
the complexity of system components.
Studies have shown that most maintenance effort is
spent on a relatively small number of system
components.
Complexity depends on
Complexity of control structures;
Complexity of data structures;
Object, method (procedure) and module size.
33
Process metrics
Process metrics may be used to assess maintainability
34
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 restructured and re-documented.
35
Advantages of reengineering
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.
36
37
Reverse engineering
Analyse the program to understand it;
Program modularisation
Reorganise the program structure;
Data reengineering
Clean-up and restructure system data.
Chapter 9 Software evolution
38
39
40
41
42
Long methods
If a method is too long, it should be redesigned as a number of
shorter methods.
43
Speculative generality
This occurs when developers include generality in a program in
case it is required in the future. This can often simply be
removed.
44
45
46
47
System end-users;
Business customers;
Line managers;
IT managers;
Senior managers.
48
System dependability
If a system is not dependable and the problems directly affect
business customers, the system has a low business value.
49
Environment assessment
How effective is the systems environment and how expensive is
it to maintain?
Application assessment
What is the quality of the application software system?
50
51
Factor
Questions
Supplier stability
Failure rate
Does the hardware have a high rate of reported failures? Does the
support software crash and force system restarts?
Age
How old is the hardware and software? The older the hardware and
support software, the more obsolete it will be. It may still function
correctly but there could be significant economic and business
benefits to moving to a more modern system.
Performance
52
Factor
Questions
Support requirements
Maintenance costs
Interoperability
53
Factor
Questions
Understandability
Documentation
Data
Performance
54
Factor
Questions
Programming language
Configuration
management
Test data
Personnel skills
Are there people available who have the skills to maintain the
application? Are there people available who have experience
with the system?
55
System measurement
You may collect quantitative data to make an
assessment of the quality of the application system
The number of system change requests;
The number of different user interfaces used by the system;
The volume of data used by the system.
56
Key points
There are 3 types of software maintenance, namely bug
fixing, modifying software to work in a new environment,
and implementing new or changed requirements.
Software re-engineering is concerned with re-structuring
and re-documenting software to make it easier to
understand and change.
Refactoring, making program changes that preserve
functionality, is a form of preventative maintenance.
The business value of a legacy system and the quality of
the application should be assessed to help decide if a
system should be replaced, transformed or maintained.
Chapter 9 Software evolution
57