CS 530 - Software Engineering class notes
CS 530 - Software Engineering class notes
Software Reuse
System reuse: Complete systems, which may include several application programs.
Application reuse: An application may be reused either by incorporating it without change into
other or by developing application families.
Component reuse: Components of an application from sub-systems to single objects may be
reused.
Object and function reuse: Small-scale software components that implement a single well-defined
object or function may be reused.
Creating, maintaining, and using a component library: Populating a reusable component library
and ensuring the software developers can use this library can be expensive. Development processes
have to be adapted to ensure that the library is used.
Finding, understanding, and adapting reusable components: Software components have to be
discovered in a library, understood and, sometimes, adapted to work in a new environment. Engineers
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 1/6
9/29/22, 3:25 PM CS 530 - Software Engineering class notes
must be reasonably confident of finding a component in the library before they include a component
search as part of their normal development process.
Increased maintenance costs: If the source code of a reused software system or component is
not available then maintenance costs may be higher because the reused elements of the system may
become increasingly incompatible with system changes.
Lack of tool support: Some software tools do not support development with reuse. It may be
difficult or impossible to integrate these tools with a component library system. The software process
assumed by these tools may not take reuse into account. This is particularly true for tools that support
embedded systems engineering, less so for object-oriented development tools.
Not-invented-here syndrome: Some software engineers prefer to rewrite components because
they believe they can improve on them. This is partly to do with trust and partly to do with the fact
that writing original software is seen as more challenging than reusing other people's software.
Application frameworks
Frameworks are moderately large entities that can be reused. They are somewhere between system and
component reuse. Frameworks are a sub-system design made up of a collection of abstract and concrete
classes and the interfaces between them. The sub-system is implemented by adding components to fill in
parts of the design and by instantiating the abstract classes in the framework.
Application frameworks are moderately large entities that can be reused. They are somewhere between
system and component reuse. Frameworks are a sub-system design made up of a collection of abstract and
concrete classes and the interfaces between them. The sub-system is implemented by adding components to
fill in parts of the design and by instantiating the abstract classes in the framework.
Web application frameworks (WAF) support the construction of dynamic websites as a front-end for web
applications. WAFs are now available for all of the commonly used web programming languages e.g. Java,
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 2/6
9/29/22, 3:25 PM CS 530 - Software Engineering class notes
Python, Ruby, etc. Interaction model is based on the Model-View-Controller composite design pattern. An
MVC framework supports the presentation of data in different ways and allows interaction with each of these
presentations. When the data is modified through one of the presentations, the system model is changed
and the controllers associated with each view update their presentation.
WAF features:
Security: WAFs may include classes to help implement user authentication (login) and access.
Dynamic web pages: Classes are provided to help you define web page templates and to populate
these dynamically from the system database.
Database support: The framework may provide classes that provide an abstract interface to
different databases.
Session management: Classes to create and manage sessions (a number of interactions with the
system by a user) are usually part of a WAF.
User interaction: Most web frameworks now provide AJAX support, which allows more interactive
web pages to be created.
Frameworks are generic and are extended to create a more specific application or sub-system. They provide
a skeleton architecture for the system. Extending the framework involves Adding concrete classes that inherit
operations from abstract classes in the framework; Adding methods that are called in response to events that
are recognized by the framework. Problem with frameworks is their complexity which means that it takes a
long time to use them effectively.
Core components that provide infrastructure support. These are not usually modified when
developing a new instance of the product line.
Configurable components that may be modified and configured to specialize them to a new
application. Sometimes, it is possible to reconfigure these components without changing their code by
using a built-in component configuration language.
Specialized, domain-specific components some or all of which may be replaced when a new
instance of a product line is created.
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 3/6
9/29/22, 3:25 PM CS 530 - Software Engineering class notes
Product line architectures must be structured in such a way to separate different sub-systems and to allow
them to be modified. The architecture should also separate entities and their descriptions and the higher
levels in the system access entities through descriptions rather than directly.
Software product lines are designed to be reconfigurable. This configuration may occur at different stages in
the development process:
Design time configuration: The organization that is developing the software modifies a common
product line core by developing, selecting or adapting components to create a new system for a
customer.
Deployment time configuration: A generic system is designed for configuration by a customer or
consultants working with the customer. Knowledge of the customer's specific requirements and the
system's operating environment is embedded in configuration data that are used by the generic
system.
As with other types of reuse, more rapid deployment of a reliable system may be possible.
It is possible to see what functionality is provided by the applications and so it is easier to judge
whether or not they are likely to be suitable.
Some development risks are avoided by using existing software. However, this approach has its own
risks, as I discuss below.
Businesses can focus on their core activity without having to devote a lot of resources to IT systems
development.
As operating platforms evolve, technology updates may be simplified as these are the responsibility of
the COTS product vendor rather than the customer.
Requirements usually have to be adapted to reflect the functionality and mode of operation of the
COTS product.
The COTS product may be based on assumptions that are practically impossible to change.
Choosing the right COTS system for an enterprise can be a difficult process, especially as many COTS
products are not well documented.
There may be a lack of local expertise to support systems development.
The COTS product vendor controls system support and evolution.
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 4/6
9/29/22, 3:25 PM CS 530 - Software Engineering class notes
Configurable application systems are generic application systems that may be designed to support a
particular business type, business activity or, sometimes, a complete business enterprise. For example, an
application system may be produced for dentists that handles appointments, dental records, patient recall,
etc. Domain-specific systems, such as systems to support a business function (e.g. document management)
provide functionality that is likely to be required by a range of potential users.
An Enterprise Resource Planning (ERP) system is a generic system that supports common business
processes such as ordering and invoicing, manufacturing, etc. These are very widely used in large companies
- they represent probably the most common form of software reuse. The generic core is adapted by including
modules and by incorporating knowledge of business processes and rules. A number of modules to support
different business functions. A defined set of business processes, associated with each module, which relate
to activities in that module. A common database that maintains information about all related business
functions. A set of business rules that apply to all data in the database.
Which individual application systems offer the most appropriate functionality? Typically, there will be
several application system products available, which can be combined in different ways.
How will data be exchanged? Different products normally use unique data structures and formats. You
have to write adaptors that convert from one representation to another.
What features of a product will actually be used? Individual application systems may include more
functionality than you need and functionality may be duplicated across different products.
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 5/6
9/29/22, 3:25 PM CS 530 - Software Engineering class notes
Lack of control over functionality and performance: application systems may be less effective than
they appear
Problems with application system inter-operability: different application systems may make different
assumptions that means integration is difficult
No control over system evolution: application system vendors not system users control evolution
Support from system vendors: application system vendors may not offer support over the lifetime of
the product
https://cs.ccsu.edu/~stan/classes/CS530/Notes18/15-SoftwareReuse.html 6/6