This repository contains the experiments to evaluate Classport tool. A tool for runtime dependencies introspection in Java. Each experiment includes scripts to automatically build, run, and collect performance data.
The repository is structured as follows:
- 6 Maven Java projects (listed in the table below)
- overhead folder contains the Java Microbenchmark Harness (JMH) implementation for each project to comput the runtime overhead
- scripts folder contains the script necessarry to run the experiments
- resources folder contains resources needed by the application under test to perform their workload
Project | Version | Deps. | Workload |
---|---|---|---|
PDFBox-app | 3.0.4 | 12 | Extract text from a PDF file |
Certificate-ripper | 2.4.1 | 5 | Print the certificate of the CHAINS website |
mcs | 0.7.3 | 4 | Lookup dependency coordinates in Maven Central |
batik | 1.17 | 6 | Convert an SVG to PNG |
checkstyle | 10.23.0 | 34 | Lint a Java file |
zxing | 3.5.3 | 4 | Decode 4 QR codes |
- Java 17+
- Maven 3.8+
- Clone the Classport repo:
git clone --recurse-submodules [email protected]:chains-project/classport.git
Check if the classport-experiments repo is not empty. If it is, do this:
cd classport
# Initialize and update all submodules
git submodule update --init --recursive
- Install Classport
cd classport
mvn install -DskipTests
The objective of the experiments is to test the two main feature of Classport: embedding dependency information into Java class files and instrospecting runtime dependencies during execution.
The experiments map the research questions of the paper:
RQ1. To what extent can Classport effectively embed dependencies into Java binary artifacts?
RQ2. To what extent does Classport support runtime inspection of dependencies?
Before running the experiments:
cd classport-experiments/scripts
./embed.sh <name-of-the-project>
where name-of-the-project can be: mcs, ripper, batik, checkstyle, or zxing.
For embedding pdfbox do this:
cd classport-experiments/scripts
./embed_with_copy.sh pdfbox-3.0.4 pdfbox app
Check the class completeness:
./check_if_deps_embedded.sh <name-of-the-project>
where name-of-the-project can be: pdfbox, mcs, ripper, batik, checkstyle, or zxing.
The output reports the number of embedded and not embedded classes. It also reports the list of the not embedded files to show that there are no classes but other files, such as images, that are not executed by the JVM and are not part of our study.
./check_if_deps_embedded.sh <name-of-the-project> --deps
The output lists the embedded dependencies and the ground truth.
./compute_build_overhead.sh <name-of-the-project>
Where name-of-the-project can be: pdfbox, mcs, ripper, batik, checkstyle, or zxing.
For build time overhead information check the output in the console.
cd classport-experiments/scripts
./embed.sh <name-of-the-project>
where name-of-the-project can be: mcs, ripper, batik, checkstyle, or zxing.
For embedding pdfbox do this:
cd classport-experiments/scripts
./embed_with_copy.sh pdfbox-3.0.4 pdfbox app
For disk overhead information check the output in the console.
This experiments must be run on the embedded projects, so firts embed them.
Run the project with the workload in the table. The resuls is a csv file in the output folder (in scripts) with the list of detected dependencies.
# pdfbox
./introspect_pdfbox.sh
# mcs
./introspect_mcs.sh
# ripper
./introspect_ripper.sh
# batik
./introspect_wrapper.sh batik ../batikwrapper/src/main/resources
# checkstyle
./introspect_checkstyle.sh
# zxing
./introspect_wrapper.sh zxing ../zxing-wrapper/barcodes
cd overhead
# pdfbox
cd pdfbox-overhead
./compute_overhead.sh
# mcs
cd mcs-overhead
./compute_overhead.sh
# ripper
cd ripper-overhead
./compute_overhead.sh
# batik
cd batik-overhead
./compute_overhead.sh
# checkstyle
cd checkstyle-overhead
./compute_overhead.sh
# zxing
cd zxing-overhead
./compute_overhead.sh
In the project folder a result.json file is created with all the information about the execution time with and without Classport.