Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.52 KB

File metadata and controls

42 lines (28 loc) · 1.52 KB

IJ Code Server

IJ Code Server is used to perform unification and distance calculation that require working with PSI files.

Request and response formats

IJ code server can perform two types of operations: unification and distance calculation. Refer to CodeServerService.proto for detailed definition of code server service and methods.

Unification

Use unify method. Request should be sent in proto format and contain submission's code. Response contains unified submission's code.

Distance calculation

Use calculateWeight method. Request should be sent in proto format and contain codes of source and target submissions. Response contains a single integer - distance between submissions (or weight of the corresponding edge in submissions graph).

How to run IJ Server locally?

Use ij-code-server Gradle task:

./gradlew :code-submissions-clustering-ij:ij-code-server -Pport=8000 -Planguage=PYTHON

or use Run IJ server run configuration in IntelliJ IDEA.

You can configure transformations to run in code-submissions-clustering-ij/src/main/resources/transformations-config.json or specify another transformations config as follows:

./gradlew :code-submissions-clustering-ij:ij-code-server -Pport=8000 -Planguage=PYTHON -PtransformationsConfig=/path/to/config.json

GRPC server starts inside application and listens to unification and distance calculation requests on the specified port (default: 8000).