IJ Code Server is used to perform unification and distance calculation that require working with PSI files.
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.
Use unify
method. Request should be sent in proto
format and contain
submission's code. Response contains unified submission's code.
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).
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).