iTrace is a plugin for the Eclipse IDE. It interfaces with an eye tracker to determine the type of element one is looking at. In the case of source code, it will determine the location of eye gaze and map it to the source code element (method call, if statement, etc...). The data generated by iTrace has been used in program comprehension and software traceability. It has applications in code reading, code summarization as well as providing recommendations to developers based on eye movements.
- Project must be checked out as "iTrace" in your workspace.
- Eclipse IDE (Windows users should install Eclipse IDE for Java EE Developers)
- Java development kit (JDK)
- Apache IvyDE Eclipse Plugin (https://ant.apache.org/ivy/ivyde/)
- C++ compiler: g++ on UNIX or Microsoft Visual Studio on Microsoft Windows
- Java native interface (JNI) headers
- Use CMake to export build files for the libraries in the jni/ directory.
- After building the the libraries, verify that they have the characters "lib" at the beginning of the file name for UNIX-based platforms, and do not for Windows-based platforms.
- Move all dynamic libraries from the jni/ directory to the project root.
- Install all requirements and resolve Ivy dependencies (secondary click project, then click Ivy -> Resolve, then refresh the project).
- Build and install plugin binaries or click "Run" from the Eclipse workspace and choose "Eclipse Application".
- Open the "iTrace" perspective. If it is not visible, click the "Open Perspective" icon next to the "Java" perspective icon (by default in the top right corner) and choose "iTrace" from the list.
- Open the iTrace controller view on the bottom panel.
- Master is reserved for stable code.
- Develop all new features as a new branch.
- Name your branch with the issue number (issue###) followed by a dash, followed by a descriptive name of the issue you are implementing in the branch. For example issue2-calibrationGUI tells us that the branch is implementing something requested in issue 2 and is related to calibration GUI functionality.
- Keep this branch up to date with master.
- When a branch is completed, do not merge it into master. Create a pull request and possibly assign a reviewer. The code reviewer will merge your code into master.
- Minimise inclusion of automatically generated files (i.e. if a file in the
project can be automatically generated from another file in the project, there
is no reason to include the generated file).
- Executable code is an example of this. Do not include build directories.
- If possible, use Ivy to manage dependencies instead of including third-party libraries in this repository.
- Use CMake to build all JNI libraries.
- Never check in files of which you do not have the legal rights to publish.
Try to use Java code conventions. Below is an example from Eclipse.
/**
* A sample source file for the code formatter preview
*/
package mypackage;
import java.util.LinkedList;
public class MyIntStack {
private final LinkedList fStack;
public MyIntStack() {
fStack = new LinkedList();
}
public int pop() {
return ((Integer) fStack.removeFirst()).intValue();
}
public void push(int elem) {
fStack.addFirst(new Integer(elem));
}
public boolean isEmpty() {
return fStack.isEmpty();
}
}