CSC/ECE 517 Fall 2009/wiki1b 1 ch: Difference between revisions
Line 80: | Line 80: | ||
[2] [http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform] | [2] [http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform] | ||
[3] http://www.cs.cmu.edu/~NatProg/whyline.html |
Revision as of 14:55, 29 September 2009
Advances in Debugging
Introduction
Debugging has been an important part of software development life cycle ever since the first computer program being introduced. Since debugging often performed at the very end of software development life cycle, the cost of fixing bugs are higher. Finding the cause of bugs within the code with complex architecture could be difficult, slow, tedious, and sometimes frustrating. Researchers have been finding ways to increase the efficiency of debugging process, thus reducing the time required for the process.
During the last decade, debugging techniques and tools have advanced immensely. Many of the most popular and widely used debugging tools are available for free and developed as open source projects. The most popular tools used by programmers, starting from beginners to professionals, are probably Eclipse and NetBeans IDE. These IDEs are not only used by individual developers, but also widely used by developers working on commercial products.
Debugging Steps
Debugging process is divided into these three steps:
- Detecting failure
- Localizing fault
- Correcting fault
Failure Detection
Failure detection occurs during software testing. Failure is first detected when program fails to run or does not pass the unit tests. The process of finding the failures started as simple as implementing the print line command such as below:
int i = 5; int j = 3; int k = i+j; System.out.println("i is " + i); System.out.println("j is " + j); System.out.println("i+j is " + k);
From the results printed in the console window, we can evaluate whether the code is doing what it supposed to do or not. However, when the complexity of the code is growing and you need to work with multiple classes and packages, it will be more convenient to automate the testing process. Automation tools such as JUnit comes in handy and provides programmers with information on which class or function failed. The next step is to locate the exact statement or logic that caused the failures.
Fault Localization
Fault localization is a time consuming work. Debugger tools usually come with advanced debugging features that help programmers trace through the code and find the exact location of the fault. The Eclipse Platform provides a built-in Java language debugger with standard debugging functionality, including the ability to perform step execution, to set breakpoints and values, to inspect variables and values, and to suspend and resume threads. It can also be used to debug applications running on a remote machine.[2]
There are various research topics focused on debugging algorithm and tools that implement or enhance the algorithms.
- Delta Debugging
Delta Debugging, developed by Professor Andreas Zeller's group at Saarland University in Germany, is an automatic and systematic technique that deals with isolation of the source of the failure -- often the developer's longest, most demotivating, and most repetitive activity when carried out manually.[1] The algorithm isolates the difference between the passing and failing test case hence simplifies the number of test cases needed.
Delta Debugging can be applied to isolate the cause of these different applications:
- Failure-inducing input
- Failure-inducing changes (adding / updating / deleting variables, functions, classes, etc.)
- Failure-inducing states (key presses, button presses, mouse clicks, etc.)
- Whyline
Whyline is an interactive debugging tool which is designed to help programmers locating the fault by allowing them to ask questions along the source code based on their dependency.
- Visual Interactive Debugging Aids (VIDA)
Visual Interactive Debugging Aids (VIDA) is a debugging tool which continuously recommends breakpoints for the programmer based on the analysis of execution information and the gathered feedback from the programmer.
Debugging and The Open-Source Community
There are a lot of open source debugger tools that have become popular among professional developers. They range from stand alone applications to Integrated Development Environment (IDE). They provide many choices for developers to choose whether they want tools for specific languages, operating systems, algorithms, optional plug-ins, etc. Two of the most popular IDEs that are widely used are Eclipse and NetBeans. Both tools are open source, easy to use, and provide cross-platform environment.
Eclipse
IBM developed Eclipse in the late 1990s and turned it over in 2001 to the nonprofit Eclipse Foundation. It became an open-source platform which enabled anyone to build applications using the technology. Eclipse is a popular choice, especially among Java developers, and often compared to NetBeans.
NetBeans
NetBeans is an open-source IDE developed in Java using the NetBeans Platform. NetBeans offer bundles for specific development needs, such as Java EE, Ruby, PHP, and C/C++.
Debugging in Eclipse and NetBeans
Eclipse and NetBeans come with debugging facilities, such as running and stopping the program, setting up breakpoints, keeping track of variables' value, watchpoint, hit count, etc. A nice tutorial for Java debugging with Eclipse can be found here.
Advanced Debugging Tools
Tarantula
Tarantula is a visualization system that displays the results of running suites of tests against software systems. By showing what portions of the code are executed by passed and failed tests, the system helps people identify faults in their programs. (http://pleuma.cc.gatech.edu/aristotle/Tools/tarantula/) Tarantula automates the time-consuming debugging process of stepping through the code and verifying the values at each step. It visualizes the suspicions of statements by different colors, ranging from red, yellow, to green. The statements that are suspicious will be marked with red color, whereas the innocent statements marked by green color.
(Insert example screenshot)
Debugging in Commercial Software Development
References
[1] An Introduction to Delta Debugging by Alessandro Giusti