Skip to content

Latest commit

 

History

History

mubench.cli

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

MUBench Logo

MUBench : Detector Interface

If you want to integrate your detector into MUBench, please follow these steps:

  1. Implement a MUBench Runner for your detector.
  2. Create an executable Jar file with the MUBench Runner as its entry point.
  3. Decide on a detector Id, e.g., YourDetector.
  4. Integrate the detector into the benchmark:

Feel free to contact Sven Amann, if you have questions or require assistance.

Implement a MUBench Runner

To run your detector in MUBench experiments, you need to implement a MUBench Runner that invokes your detector and reports its findings. We provide infrastructure for implementing runners in the Maven dependency de.tu-darmstadt.stg:mubench.cli via our repository

http://www.st.informatik.tu-darmstadt.de/artifacts/mubench/mvn/

Check the MUBench CLI documentation for details on how to implement runners and other utilities available through this dependency.

Once you implemented the runner, you need to bundle it together with your detector into an executable Jar file. This Jar file must have the runner as its entry point and must be named after your detector, e.g., YourDetector.jar. See the configuration of the maven-assembly-plugin in the pom.xml file of our DemoDetector for an example of how to do this.

Provide Version Information

Each detector has a releases.yml file that provides version information. The most-simple version of such a file, which suffices to run a detector locally, might look as follows:

- cli_version: 0.0.13
  md5: foo
  • The cli_version names the version of the mubench.cli dependency used to implement the respective MUBench Runner.
  • The md5 might be any string. When running experiments, the MUBench Pipeline uses this string only to determine whether the detector changed (by checking whether the md5 changed) and to invalidate existing results accordingly. Only when the detector is integrated into the MUBench detector repository, such that the MUBench Pipeline can download it automatically, the md5 needs to be changed to the actual hash of the Jar file, for download verification.

It is possible to manage multiple versions of a detector via the releases.yml file. The file might then look as follows:

- cli_version: 0.0.10
  md5: 2470067fac02ee118b7d49287246e20a
- cli_version: 0.0.8
  md5: 9e5252816faecf552464f0a6abde714f
  tag: my-tag
  • The cli_version names the version of the mubench.cli dependency used to implement the respective MUBench Runner.
  • The md5 is the hash of the respective Jar file.
  • The tag is an identifier for the detector version (case insensitive). You may specify this identifier when running experiments, using the --tag option. If the --tag option is not specified, the MUBench Pipeline runs the top-most detector version listed in the releases.yml file. If this detector version has no tag, latest is used as the default. In any case, the MUBench Pipeline expects the respective Jar file at detectors/<mydetector>/<tag>/<mydetector>.jar.

Debugging a Detector

MUBench supports testing and debugging MUBench Runners in its Docker environment using a remote debugger.

Preparation

  1. Mount the directory containing your executable Jar file, e.g., the target/ directory of your Maven project, into MUBench, by adding -v /.../target/:/mubench/debug to the Docker command running MUBench.
  2. Forward port 5005 from the shell to your host system, to allow attaching a remote debugger, by adding -p 5005:5005 to the Docker command running MUBench.

Debugging

  1. Generate YourDetector.jar.
  2. Run mubench> debug <CLI> <E> MyDetector <F>, where
    • <CLI> names the version of the mubench.cli dependency used to implement your MUBench Runner,
    • <E> is the id of the experiment to run, and
    • <F> specifies a filter (we recommend debugging on individual project versions or misuses, because debug will halt on every(!) single entity).
  3. Attach a remote debugger from the IDE of your choice to the local process on port 5005, once MUBench started the detector.
  4. Debug, make changes, and repeat from 1., as necessary.

Example: debug 0.0.13 ex2 DemoDetector --only aclang.587