Skip to content

A library for mining of path-based representations of code (and more)

License

Notifications You must be signed in to change notification settings

kisate/astminer

 
 

Repository files navigation

JetBrains Research astminer version

astminer

A library for mining of path-based representations of code and more, supported by the Machine Learning Methods for Software Engineering group at JetBrains Research.

Supported languages of the input:

  • Java
  • Python
  • C/C++
  • Javascript

Version history

See changelog

About

astminer was first implemented as a part of pipeline in the code style extraction project and later converted into a reusable tool.

Currently, it supports extraction of:

  • Path-based representations of files
  • Path-based representations of methods
  • Raw ASTs

Supported languages are Java, Python, C/C++, but it is designed to be very easily extensible.

For the output format, see the section below.

Usage

There are two ways to use astminer.

Using astminer CLI

Building or installing astminer CLI

astminer CLI can be either built from sources or installed in a pre-built Docker image.

Building locally

./cli.sh will do the job for you by triggering a Gradle build on the first run.

Installing the Docker image

The C++ parser in astminer relies on g++. To avoid misconfiguration with this and likely other future external dependencies, you can use it from a Docker container.

Install the image with the last release by pulling it from Docker Hub:

docker pull voudy/astminer

To rebuild the image locally, run

docker build -t voudy/astminer .

Running astminer CLI

Run

./cli.sh optionName parameters

Where optionName is one of the following options:

Preprocess

Run preprocessing on C/C++ project to unfold #define directives. In other tasks, if you feed C/C++ file with macroses, they will be dropped as well as their appearances in code.

./cli.sh preprocess --project path/to/project --output path/to/preprocessedProject

Parse

Extract ASTs from all the files in supported languages.

./cli.sh parse --lang py,java,c,cpp,js --project path/to/project --output path/to/result --storage dot

PathContexts

Extract path contexts from all the files in supported languages and store in form fileName triplesOfPathContexts.

./cli.sh pathContexts --lang py,java,c,cpp,js --project path/to/project --output path/to/results --maxL L --maxW W --maxContexts C --maxTokens T --maxPaths P

Code2vec

Extract data suitable as input for code2vec model. Parse all files written in specified language into ASTs, split into methods, and store in form method|name triplesOfPathContexts.

./cli.sh code2vec --lang py,java,c,cpp,js --project path/to/project --output path/to/results --maxL L --maxW W --maxContexts C --maxTokens T --maxPaths P  --split-tokens --granularity method

Using astminer as a dependency

Import

astminer is available in the JetBrains Space package repository. You can add the dependency in your build.gradle file:

repositories {
    maven {
        url "https://packages.jetbrains.team/maven/p/astminer/astminer"
    }
}

dependencies {
    compile 'io.github.vovak:astminer:<VERSION>'
}

If you use build.gradle.kts:

repositories {
    maven(url = uri("https://packages.jetbrains.team/maven/p/astminer/astminer"))
}

dependencies {
    compile("io.github.vovak", "astminer", <VERSION>)
}

Local development

To use a specific version of the library, navigate to the required branch and build local version of astminer:

./gradlew publishToMavenLocal

After that, add mavenLocal() into the repositories section in your gradle configuration.

Examples

If you want to use astminer as a library in your Java/Kotlin based data mining tool, check the following examples:

Please consider trying Kotlin for your data mining pipelines: from our experience, it is much better suited for data collection and transformation instruments.

Output format

For path-based representations, astminer supports two output formats. In both of them, we store 4 .csv files:

  1. node_types.csv contains numeric ids and corresponding node types with directions (up/down, as described in paper);
  2. tokens.csv contains numeric ids and corresponding tokens;
  3. paths.csv contains numeric ids and AST paths in form of space-separated sequences of node type ids;
  4. path_contexts.csv contains labels and sequences of path contexts (triples of two tokens and a path between them).

If the replica of code2vec format is used, each line in path_contexts.csv starts with a label, then it contains a sequence of space-separated triples. Each triple contains start token id, path id, end token id, separated with commas.

If csv format is used, each line in path_contexts.csv contains label, then comma, then a sequence of ;-separated triples. Each triple contains start token id, path id, end token id, separated with spaces.

Other languages

Support for a new programming language can be implemented in a few simple steps.

If there is an ANTLR grammar for the language:

  1. Add the corresponding ANTLR4 grammar file to the antlr directory;
  2. Run the generateGrammarSource Gradle task to generate the parser;
  3. Implement a small wrapper around the generated parser. See JavaParser or PythonParser for an example of a wrapper.

If the language has a parsing tool that is available as Java library:

  1. Add the library as a dependency in build.gradle.kts;
  2. Implement a wrapper for the parsing tool. See FuzzyCppParser for an example of a wrapper.

Contribution

We believe that astminer could find use beyond our own mining tasks.

Please help make astminer easier to use by sharing your use cases. Pull requests are welcome as well. Support for other languages and documentation are the key areas of improvement.

Citing astminer

A paper dedicated to astminer (more precisely, to its older version PathMiner) was presented at MSR'19. If you use astminer in your academic work, please cite it.

@inproceedings{kovalenko2019pathminer,
  title={PathMiner: a library for mining of path-based representations of code},
  author={Kovalenko, Vladimir and Bogomolov, Egor and Bryksin, Timofey and Bacchelli, Alberto},
  booktitle={Proceedings of the 16th International Conference on Mining Software Repositories},
  pages={13--17},
  year={2019},
  organization={IEEE Press}
}

About

A library for mining of path-based representations of code (and more)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 40.3%
  • Java 37.9%
  • ANTLR 14.5%
  • C++ 4.9%
  • JavaScript 1.5%
  • Python 0.5%
  • Other 0.4%