Skip to the content.

Installation

Installation Instructions

In the following, we describe how to replicate the feasibility study from our paper (Section 6) step-by-step. The instructions explain how to build the Docker image and run the validation in a Docker container.

1. Start Docker

Start the docker deamon:

More detailed instructions on starting the deamon are given here on the docker website.

2. Open a Suitable Terminal

# Windows PowerShell:
 - Open the search bar (Default: 'Windows Key') and search for 'PowerShell'
 - Start the PowerShell
 
# Linux:
 - Press 'ctrl + alt + T' on your keyboard

Clone this repository to a directory of your choice using git:

git clone https://github.com/VariantSync/DiffDetective.git

Then, navigate to the root of your local clone of this repository

cd DiffDetective

and checkout the branch of the replication:

git checkout splc23-views

Finally, navigate to the replication directory

cd replication/splc23-views

3. Build the Docker Container

To build the Docker container you can run the build script corresponding to your operating system:

# Windows: 
  .\build.bat
# Linux/Mac (bash): 
  ./build.sh

4. Verification & Replication

Running the Replication or Verification

To execute the replication you can run the execute script corresponding to your operating system with replication as first argument.

Windows:

.\execute.bat replication

Linux/Mac (bash):

./execute.sh replication

WARNING! The replication may require multiple hours, depending on your system (and internet connection to clone the datasets repositories). Therefore, we offer a short verification (5-10 minutes) which runs the feasibility study on only four of the datasets (instead of all 44). You can run the short verification by providing “verification” as argument instead of “replication” (i.e., .\execute.bat verification, ./execute.sh verification). If you want to stop the execution, you can call the provided script for stopping the container in a separate terminal. When restarted, the execution will continue processing by restarting at the last unfinished repository.

Windows:

.\stop-execution.bat

Linux/Mac (bash):

./stop-execution.sh

You might see warnings or errors reported from SLF4J like Failed to load class "org.slf4j.impl.StaticLoggerBinder" which you can safely ignore. Further troubleshooting advice can be found at the bottom of this file.

The results of the verification will be stored in the results directory.

Expected Output of the Feasibility Study

The aggregated results of the study can be found in the results/views directory. The results split into two subdirectories:

results/views/current

There should be a subdirectory for each repository, the feasibility study has been executed on. The analysis processes the commits of each repository in batches of up to 1000 commits. Each repository directory contains three files for each batch. The three files are named by the hash of the first commit in the batch. The files are:

Additionally, each repository directory also contains a totalresult.metadata.txt, which is an aggregation of the *.metadata.txt files of each batch.

results/views/current_plots

The directory results/views/current_plots contains plots, latex tables, and aggregated results that we used to report results in the paper. The directory should contain the following files:

(Optional) Running the Feasibility Study on Custom Datasets

You can also run the feasibility study on other datasets by providing the path to the dataset file as first argument to the execution script:

Windows:

.\execute.bat path\to\custom\dataset.md

Linux/Mac (bash):

./execute.sh path/to/custom/dataset.md

The input file must have the same format as the other dataset files (i.e., repositories are listed in a Markdown table). You can find dataset files in the docs/datasets folder.

Troubleshooting

‘Got permission denied while trying to connect to the Docker daemon socket’

Problem: This is a common problem under Linux, if the user trying to execute Docker commands does not have the permissions to do so.

Fix: You can fix this problem by either following the post-installation instructions, or by executing the scripts in the replication package with elevated permissions (i.e., sudo).

‘Unable to find image ‘replication-package:latest’ locally’

Problem: The Docker container could not be found. This either means that the name of the container that was built does not fit the name of the container that is being executed (this only happens if you changed the provided scripts), or that the Docker container was not built yet.

Fix: Follow the instructions described above in the section Build the Docker Container.

No results after verification, or ‘cannot create directory ‘../results/views/current’: Permission denied’

Problem: This problem can occur due to how permissions are managed inside the Docker container. More specifically, it will appear, if Docker is executed with elevated permissions (i.e., sudo) and if there is no results directory because it was deleted manually. In this case, Docker will create the directory with elevated permissions, and the Docker user has no permissions to access the directory.

Fix: If there is a results directory, delete it with elevated permission (e.g., sudo rm -r results). Then, create a new results directory without elevated permissions, or execute git restore . to restore the deleted directory.

Failed to load class “org.slf4j.impl.StaticLoggerBinder”

Problem: An operation within the initialization phase of the logger library we use (tinylog) failed.

Fix: Please ignore this warning. Tinylog will fall back onto a default implementation (Defaulting to no-operation (NOP) logger implementation) and logging will work as expected.

’./build.sh: Bad substitution’ or ‘./execute.sh: [[: not found’

Problem: The scripts build.sh and execute.sh were not run in bash. The scripts were probably run in shell explicitly (i.e., the sh command, for example via sh build.sh).

Fix: Run the scripts directly (i.e., ./build.sh or ./execute.sh ...) or via bash (i.e., bash build.sh).