CSC/ECE 517 Fall 2010/ch2 S20 CR: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
= Introduction to Code Reuse =
= Introduction to Code Reuse =
Code reuse is, as the name suggests, reusing an applicable portion of code from a previous project into a new project.The concept of code reuse closely binds with the concept of "not reinventing the wheel". Simple copy & paste code reuse has been used from the beginning of programming. With the development of computing, code reuse now exists in different facets.
Code reuse is, as the name suggests, reusing an applicable portion of code from a previous project into a new project.The concept of code reuse closely binds with the concept of "Not reinventing the wheel". Simple copy & paste code reuse has been used from the beginning of programming. With the development of computing, code reuse now exists in different facets.


The initial phase of code reuse can be traced to '80s when the higher level programming languages became common. Implementation of math libraries is an example of early code reuse although the codes were OS, language or platform specific. With the development of OO systems code reuse concepts like shared libraries , dynamic link libraries were introduced. Microsoft foundation class(MFC) is another example of wide application of code reuse.  
The initial phase of code reuse can be traced to '80s when the higher level programming languages became common. Implementation of math libraries is an example of early code reuse although the codes were OS, language or platform specific. With the development of OO systems code reuse concepts like shared libraries , dynamic link libraries were introduced. Microsoft foundation class(MFC) is another example of wide application of code reuse.  
Line 8: Line 8:
== Advantages of Code Reuse ==
== Advantages of Code Reuse ==
The most evident benefit of code reuse is reduction in programming time thus faster project completion. This in turn translates to saved effort and reduced project cost. Other benefits include:  
The most evident benefit of code reuse is reduction in programming time thus faster project completion. This in turn translates to saved effort and reduced project cost. Other benefits include:  
If one person or team has already solved a problem, and they share the solution, there's no need to solve the problem again.
*If one person or team has already solved a problem, and they share the solution, there's no need to solve the problem again.
Sharing code can help prevent bugs because the amount of total code that needs to be written is reduced. It is assumed that number of bugs is proportional to code size.
*Sharing code can help prevent bugs because the amount of total code that needs to be written is reduced. It is assumed that number of bugs is proportional to code size.
Expert programmers can utilize their strength to build libraries which can be leveraged by other programmers. For example,  A security library can be built by security experts while a user interface which uses the library can let UI experts focus on their tasks.  
*Expert programmers can utilize their strength to build libraries which can be leveraged by other programmers. For example,  A security library can be built by security experts while a user interface which uses the library can let UI experts focus on their tasks.  
Specialized libraries can be tuned for performance, security etc. special cases. For example, a Python application might delegate graphics functionality to a C library for performance.
*Specialized libraries can be tuned for performance, security etc. special cases. For example, a Python application might delegate graphics functionality to a C library for performance.


== Disadvantages of Code Reuse ==
== Disadvantages of Code Reuse ==
Disadvantages are often dependent on the situation and implementation.  
Disadvantages are often dependent on the situation and implementation.  
Performance might become a factor depending on the platform and programming language.A library or framework might perform slower than expected.In some situations it might be beneficial to build a specialized one-time solution instead of using a common library.
*Performance might become a factor depending on the platform and programming language.A library or framework might perform slower than expected.In some situations it might be beneficial to build a specialized one-time solution instead of using a common library.
Loss of control over third party solutions might cause issues, i.e- they may stop product support. There might also be licensing and liability issues.
*Loss of control over third party solutions might cause issues, i.e- they may stop product support. There might also be licensing and liability issues.
If not well implemented, code reuse can eventually cause code bloat.  
*If not well implemented, code reuse can eventually cause code bloat.  
 


== Most Common Methods of Code Reuse ==
== Most Common Methods of Code Reuse ==
Line 158: Line 159:


== References ==
== References ==
== See also:==
[http://docforge.com/wiki/Code_reuse advantage and disadvantages of code reuse]
[http://www.infoq.com/articles/vijay-narayanan-software-reuse Tips for Effective Software Reuse ]
[http://www.computerworld.com/s/article/83410/Code_Reuse_Gets_Easier Article:Code Reuse Gets Easier]
[http://thedailywtf.com/Articles/Code-Refuse.aspx Code Refuse- A good article portraying a scenario 
where code reuse is misunderstood ]
[http://thedailywtf.com/Articles/Code-Refuse.aspx  Code Refuse(A good article portraying a scenario 
where code reuse is misunderstood)]

Revision as of 23:22, 6 October 2010

Introduction to Code Reuse

Code reuse is, as the name suggests, reusing an applicable portion of code from a previous project into a new project.The concept of code reuse closely binds with the concept of "Not reinventing the wheel". Simple copy & paste code reuse has been used from the beginning of programming. With the development of computing, code reuse now exists in different facets.

The initial phase of code reuse can be traced to '80s when the higher level programming languages became common. Implementation of math libraries is an example of early code reuse although the codes were OS, language or platform specific. With the development of OO systems code reuse concepts like shared libraries , dynamic link libraries were introduced. Microsoft foundation class(MFC) is another example of wide application of code reuse.

Code reuse can be linked to some OO practices like don't repeat yourself(DRY).

Advantages of Code Reuse

The most evident benefit of code reuse is reduction in programming time thus faster project completion. This in turn translates to saved effort and reduced project cost. Other benefits include:

  • If one person or team has already solved a problem, and they share the solution, there's no need to solve the problem again.
  • Sharing code can help prevent bugs because the amount of total code that needs to be written is reduced. It is assumed that number of bugs is proportional to code size.
  • Expert programmers can utilize their strength to build libraries which can be leveraged by other programmers. For example, A security library can be built by security experts while a user interface which uses the library can let UI experts focus on their tasks.
  • Specialized libraries can be tuned for performance, security etc. special cases. For example, a Python application might delegate graphics functionality to a C library for performance.

Disadvantages of Code Reuse

Disadvantages are often dependent on the situation and implementation.

  • Performance might become a factor depending on the platform and programming language.A library or framework might perform slower than expected.In some situations it might be beneficial to build a specialized one-time solution instead of using a common library.
  • Loss of control over third party solutions might cause issues, i.e- they may stop product support. There might also be licensing and liability issues.
  • If not well implemented, code reuse can eventually cause code bloat.


Most Common Methods of Code Reuse

Reusing Architectures -

It refers to identifying,analyzing various enterprise architectures in order to lay foundation for developing the software application from scratch.For example in order to develop a web based application we rely on model view controller architecture.

Categories of Code Reuse

The main category of code reuse can be stated as
1.Internal Code Reuse
2.External Code Reuse
3.Don't Repeat Yourself

Internal Code Reuse

Suppose a team needs to start a new project.In order to start the project the team can use all possible reusable components that it has built earlier instead of again re-creating them.Such usage of reusable components is referred as Internal Code Reuse.Few such examples of Internal Code reuse are :

Simple Copy and Paste of the Code

Here we simply try to find the source code that perform the required functionality.We copy and paste the source code into our required code area.But in this case people sometimes try to copy from an external source which is discouraged method and it leads to plagiarism.

Using Software Library

It is the most common example of code reuse.Suppose we want certain manipulating functions like date,time,string or functions related to interfacing of an external database with our program we use software libraries.These libraries are either created by us or these comes as external library in the languages.The code reuse in various languages are.

  • Examples of code reuse in C/C++

If we want to use all string functionality we can include string header and call the required method in our code area.

#include "stdio.h"
#include "string.h"  //Inclusion of string header file 

int main()
{
 if (strcmp("ncsucsc517","ncsucsc517")== 0) //strcmp is function provided by string library which compares two string.
 {
   printf("the string are same");
 }
return 0;
}

We can also create Macro and reuse it.Following example clearly explains it.

#include "stdio.h"
#define Cubeof(x) x*x*x  //Here at first we define a Macro that calculates the cube of a number
int main()
{
  int input = 6;
  printf("\nCubeof(x)=%i",Cubeof(input)); //Here we reuse the Macro "Cubeof"
  return 0;
}

In addition to above C++ also provides Standard Template Libraries(STL).Few STL libaries are
1.Container Library - Bitset,Dequeue,List,Map,Vector
2.Iterator Library - Iterator

  • Examples of code reuse in Java

In java we use Package for code reuse.A Package is a collection of related files with a particular functionality and usability.Generally a package contains classes,interfaces etc.For example if we want to print todays date we can use Date Class provided by java.util package.Sample example illustrates it.

The example of a class inside a package.

 java.util.Date today = new java.util.Date();//java.util is a package which contains Date Class
 System.out.println("Todays Date is "+today);

The example of an Interface inside a package.

interface powerOf
{
	public void squareOf(int number);
	
}
public class calculator implements powerOf
{
	public void squareOf(int number)
	{
		int result;
		result = number * number;
		System.out.println("The square of the number is"+result);
	}
	public static void main(String args[])
	{
		calculator obj = new calculator();
		obj.squareOf(20);
	}
}
  • Examples of code reuse in Ruby

In Ruby the code reuse is mainly done through usage of modules and mixins. The example of Module is

module Power
  NUMBER = 5
  def Power.Square(x)
    return x*x
  end
  def Power.Cube(x)
    return x*x*x
  end
end

cube = Power.Cube(Power::NUMBER)
puts cube

The example of Mixin is

class Calculator
  include Power        //We have included the module created above         
  def square_of_number number
    puts Power.Square(number) //Reusing the code
  end
end

obj = Calculator.new
obj.square_of_number 20

External Code reuse

External code reuse refers to the usage of a Third party Licensed Tool ,applications or framework.Either they come with certain cost or they are open source.

Some of the examples of external code reuse are

Frameworks

Ruby on Rails (RoR) is an open Source Web Application framework.It is used for rapid creation of web application and it uses agile methodologies.It provides various packages like
1.ActiveRecord

It is used as object relational mapping with database

2.ActiveResource

It provides webservice

3.Actionpack

It splits the response to a web request into two part.One goes to controller and another goes to view

4.ActiveSupport

It is the collection of utility classes and standard library extensions

5.ActionController

It acts as middle man between model and view.It routes the request of view to model by acting on request like save or update.Also it renders data from model to view.

Dont Repeat Yourself (DRY) Principle

In the field of software engineering we consider every code repetition as evil.Developers avoid repeating a piece of code in more than one place.So they strictly follow DRY Principle which states that

"Every piece of knowledge must have a single, unambiguous, authoritative representation within a system."
                                                                                 By: Andy Hunt and Dave Thomas.

This principle helps maintain the code very easily.Few examples from Ruby on Rails are.

1.Generators - Rails provides bunch of generators in order to generate the skeleton of the application.It saves lot of time and allow more cleaner way of developing things.

2.Migrate Tools- Suppose a developer wants to change the database structure he or she can use rake::migrate tools in order to create new migration script.The changes get reflected in database as well as in model definition.

3.Partial render - Rail view component provides partial rendering mechanism that helps developer to define overall layout just once and which can be included in several pages layout.

References

See also:

advantage and disadvantages of code reuse

Tips for Effective Software Reuse

Article:Code Reuse Gets Easier

[http://thedailywtf.com/Articles/Code-Refuse.aspx Code Refuse- A good article portraying a scenario where code reuse is misunderstood ]

[http://thedailywtf.com/Articles/Code-Refuse.aspx Code Refuse(A good article portraying a scenario where code reuse is misunderstood)]