From f32a43efb68ae7a0ba6e0ad0c20207cf062e2db7 Mon Sep 17 00:00:00 2001 From: Jens Pots Date: Thu, 12 Sep 2024 12:56:07 +0200 Subject: [PATCH] refactor: moved orchestrator to separate dir [no ci] --- .../build.gradle.kts | 2 +- .../gradle.properties | 0 .../gradle}/wrapper/gradle-wrapper.jar | Bin .../gradle}/wrapper/gradle-wrapper.properties | 0 gradlew => orchestrator/gradlew | 0 gradlew.bat => orchestrator/gradlew.bat | 0 .../settings.gradle.kts | 0 {src => orchestrator/src}/main/kotlin/Main.kt | 0 .../src}/main/kotlin/Orchestrator.kt | 0 .../src}/main/kotlin/broker/Broker.kt | 0 .../src}/main/kotlin/broker/BrokerClient.kt | 0 .../src}/main/kotlin/broker/impl/SimpleBroker.kt | 0 .../main/kotlin/exception/RunnerException.kt | 0 .../src}/main/kotlin/extensions/Channel.kt | 0 .../src}/main/kotlin/extensions/File.kt | 0 .../src}/main/kotlin/extensions/Model.kt | 0 .../src}/main/kotlin/intermediate/IRArgument.kt | 0 .../main/kotlin/intermediate/IRDependency.kt | 0 .../src}/main/kotlin/intermediate/IRPackage.kt | 0 .../src}/main/kotlin/intermediate/IRParameter.kt | 0 .../src}/main/kotlin/intermediate/IRPipeline.kt | 0 .../src}/main/kotlin/intermediate/IRProcessor.kt | 0 .../src}/main/kotlin/intermediate/IRRunner.kt | 0 .../src}/main/kotlin/intermediate/IRStage.kt | 0 .../src}/main/kotlin/parser/Parser.kt | 0 .../main/kotlin/parser/impl/jena/JenaParser.kt | 0 .../src}/main/kotlin/parser/impl/jena/RDFC.kt | 0 .../main/kotlin/parser/impl/jena/ShaclShapes.kt | 0 .../src}/main/kotlin/resolver/Resolver.kt | 0 .../main/kotlin/resolver/impl/GenericResolver.kt | 0 .../main/kotlin/resolver/impl/GitResolver.kt | 0 .../main/kotlin/resolver/impl/LocalResolver.kt | 0 .../src}/main/kotlin/runner/Runner.kt | 0 .../src}/main/kotlin/runner/impl/grpc/Config.kt | 0 .../main/kotlin/runner/impl/grpc/GRPCRunner.kt | 0 .../kotlin/runner/impl/grpc/HostedGRPCRunner.kt | 0 .../main/kotlin/runner/impl/grpc/Serialize.kt | 0 .../main/kotlin/runner/impl/jvm/Arguments.kt | 0 .../main/kotlin/runner/impl/jvm/JVMRunner.kt | 0 .../main/kotlin/runner/impl/jvm/Processor.kt | 0 .../src}/main/kotlin/util/Log.kt | 0 .../src}/main/kotlin/util/ManagedProcess.kt | 0 .../src}/main/kotlin/util/Retries.kt | 0 .../src}/main/resources/pipeline.ttl | 0 .../src}/test/kotlin/OrchestratorTest.kt | 0 .../src}/test/kotlin/e2e/E2ETest.kt | 0 .../src}/test/kotlin/extensions/ChannelTest.kt | 0 .../src}/test/kotlin/extensions/FileTest.kt | 0 .../src}/test/kotlin/parser/ParserTest.kt | 0 .../src}/test/kotlin/processors/TappedReader.kt | 0 .../src}/test/kotlin/processors/TappedWriter.kt | 0 .../test/kotlin/runner/impl/jvm/ArgumentsTest.kt | 0 .../src}/test/resources/.gitignore | 0 .../src}/test/resources/e2e/data/invalid.ttl | 0 .../src}/test/resources/e2e/data/valid.ttl | 0 .../src}/test/resources/e2e/jvm.ttl | 6 +++--- .../src}/test/resources/e2e/node.ttl | 6 +++--- .../src}/test/resources/e2e/python.ttl | 6 +++--- .../src}/test/resources/e2e/shacl/shapes.ttl | 0 .../src}/test/resources/packages/.keep | 0 .../src}/test/resources/packages/basic/index.ttl | 0 .../test/resources/packages/basic/processor.ttl | 0 .../src}/test/resources/packages/dummy/index.ttl | 0 .../test/resources/packages/dummy/processor.ttl | 0 .../test/resources/packages/dummy/runner.ttl | 0 .../src}/test/resources/pipeline.ttl | 0 .../test/resources/pipelines/basic/index.ttl | 0 .../test/resources/pipelines/basic/stage.ttl | 0 .../test/resources/pipelines/dummy/index.ttl | 0 .../test/resources/pipelines/dummy/stage.ttl | 0 packages/file-utils-kt/build.gradle.kts | 2 +- packages/http-utils-kt/build.gradle.kts | 2 +- packages/shacl-validator-kt/build.gradle.kts | 2 +- .../__pycache__/__init__.cpython-312.pyc | Bin 280 -> 0 bytes .../__pycache__/validator.cpython-312.pyc | Bin 2693 -> 0 bytes 75 files changed, 13 insertions(+), 13 deletions(-) rename build.gradle.kts => orchestrator/build.gradle.kts (98%) rename gradle.properties => orchestrator/gradle.properties (100%) rename {gradle => orchestrator/gradle}/wrapper/gradle-wrapper.jar (100%) rename {gradle => orchestrator/gradle}/wrapper/gradle-wrapper.properties (100%) rename gradlew => orchestrator/gradlew (100%) rename gradlew.bat => orchestrator/gradlew.bat (100%) rename settings.gradle.kts => orchestrator/settings.gradle.kts (100%) rename {src => orchestrator/src}/main/kotlin/Main.kt (100%) rename {src => orchestrator/src}/main/kotlin/Orchestrator.kt (100%) rename {src => orchestrator/src}/main/kotlin/broker/Broker.kt (100%) rename {src => orchestrator/src}/main/kotlin/broker/BrokerClient.kt (100%) rename {src => orchestrator/src}/main/kotlin/broker/impl/SimpleBroker.kt (100%) rename {src => orchestrator/src}/main/kotlin/exception/RunnerException.kt (100%) rename {src => orchestrator/src}/main/kotlin/extensions/Channel.kt (100%) rename {src => orchestrator/src}/main/kotlin/extensions/File.kt (100%) rename {src => orchestrator/src}/main/kotlin/extensions/Model.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRArgument.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRDependency.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRPackage.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRParameter.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRPipeline.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRProcessor.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRRunner.kt (100%) rename {src => orchestrator/src}/main/kotlin/intermediate/IRStage.kt (100%) rename {src => orchestrator/src}/main/kotlin/parser/Parser.kt (100%) rename {src => orchestrator/src}/main/kotlin/parser/impl/jena/JenaParser.kt (100%) rename {src => orchestrator/src}/main/kotlin/parser/impl/jena/RDFC.kt (100%) rename {src => orchestrator/src}/main/kotlin/parser/impl/jena/ShaclShapes.kt (100%) rename {src => orchestrator/src}/main/kotlin/resolver/Resolver.kt (100%) rename {src => orchestrator/src}/main/kotlin/resolver/impl/GenericResolver.kt (100%) rename {src => orchestrator/src}/main/kotlin/resolver/impl/GitResolver.kt (100%) rename {src => orchestrator/src}/main/kotlin/resolver/impl/LocalResolver.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/Runner.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/grpc/Config.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/grpc/GRPCRunner.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/grpc/HostedGRPCRunner.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/grpc/Serialize.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/jvm/Arguments.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/jvm/JVMRunner.kt (100%) rename {src => orchestrator/src}/main/kotlin/runner/impl/jvm/Processor.kt (100%) rename {src => orchestrator/src}/main/kotlin/util/Log.kt (100%) rename {src => orchestrator/src}/main/kotlin/util/ManagedProcess.kt (100%) rename {src => orchestrator/src}/main/kotlin/util/Retries.kt (100%) rename {src => orchestrator/src}/main/resources/pipeline.ttl (100%) rename {src => orchestrator/src}/test/kotlin/OrchestratorTest.kt (100%) rename {src => orchestrator/src}/test/kotlin/e2e/E2ETest.kt (100%) rename {src => orchestrator/src}/test/kotlin/extensions/ChannelTest.kt (100%) rename {src => orchestrator/src}/test/kotlin/extensions/FileTest.kt (100%) rename {src => orchestrator/src}/test/kotlin/parser/ParserTest.kt (100%) rename {src => orchestrator/src}/test/kotlin/processors/TappedReader.kt (100%) rename {src => orchestrator/src}/test/kotlin/processors/TappedWriter.kt (100%) rename {src => orchestrator/src}/test/kotlin/runner/impl/jvm/ArgumentsTest.kt (100%) rename {src => orchestrator/src}/test/resources/.gitignore (100%) rename {src => orchestrator/src}/test/resources/e2e/data/invalid.ttl (100%) rename {src => orchestrator/src}/test/resources/e2e/data/valid.ttl (100%) rename {src => orchestrator/src}/test/resources/e2e/jvm.ttl (92%) rename {src => orchestrator/src}/test/resources/e2e/node.ttl (91%) rename {src => orchestrator/src}/test/resources/e2e/python.ttl (90%) rename {src => orchestrator/src}/test/resources/e2e/shacl/shapes.ttl (100%) rename {src => orchestrator/src}/test/resources/packages/.keep (100%) rename {src => orchestrator/src}/test/resources/packages/basic/index.ttl (100%) rename {src => orchestrator/src}/test/resources/packages/basic/processor.ttl (100%) rename {src => orchestrator/src}/test/resources/packages/dummy/index.ttl (100%) rename {src => orchestrator/src}/test/resources/packages/dummy/processor.ttl (100%) rename {src => orchestrator/src}/test/resources/packages/dummy/runner.ttl (100%) rename {src => orchestrator/src}/test/resources/pipeline.ttl (100%) rename {src => orchestrator/src}/test/resources/pipelines/basic/index.ttl (100%) rename {src => orchestrator/src}/test/resources/pipelines/basic/stage.ttl (100%) rename {src => orchestrator/src}/test/resources/pipelines/dummy/index.ttl (100%) rename {src => orchestrator/src}/test/resources/pipelines/dummy/stage.ttl (100%) delete mode 100644 packages/shacl-validator-py/src/rdfc_shacl/__pycache__/__init__.cpython-312.pyc delete mode 100644 packages/shacl-validator-py/src/rdfc_shacl/__pycache__/validator.cpython-312.pyc diff --git a/build.gradle.kts b/orchestrator/build.gradle.kts similarity index 98% rename from build.gradle.kts rename to orchestrator/build.gradle.kts index 5684d39..d670f8a 100644 --- a/build.gradle.kts +++ b/orchestrator/build.gradle.kts @@ -38,7 +38,7 @@ tasks.test { } /** We define these explicitly due to the reliance on Protobuf and gRPC. */ -sourceSets { main { proto { srcDir("proto") } } } +sourceSets { main { proto { srcDir("../proto") } } } /* * Check this document for more info on the section below: diff --git a/gradle.properties b/orchestrator/gradle.properties similarity index 100% rename from gradle.properties rename to orchestrator/gradle.properties diff --git a/gradle/wrapper/gradle-wrapper.jar b/orchestrator/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from gradle/wrapper/gradle-wrapper.jar rename to orchestrator/gradle/wrapper/gradle-wrapper.jar diff --git a/gradle/wrapper/gradle-wrapper.properties b/orchestrator/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from gradle/wrapper/gradle-wrapper.properties rename to orchestrator/gradle/wrapper/gradle-wrapper.properties diff --git a/gradlew b/orchestrator/gradlew similarity index 100% rename from gradlew rename to orchestrator/gradlew diff --git a/gradlew.bat b/orchestrator/gradlew.bat similarity index 100% rename from gradlew.bat rename to orchestrator/gradlew.bat diff --git a/settings.gradle.kts b/orchestrator/settings.gradle.kts similarity index 100% rename from settings.gradle.kts rename to orchestrator/settings.gradle.kts diff --git a/src/main/kotlin/Main.kt b/orchestrator/src/main/kotlin/Main.kt similarity index 100% rename from src/main/kotlin/Main.kt rename to orchestrator/src/main/kotlin/Main.kt diff --git a/src/main/kotlin/Orchestrator.kt b/orchestrator/src/main/kotlin/Orchestrator.kt similarity index 100% rename from src/main/kotlin/Orchestrator.kt rename to orchestrator/src/main/kotlin/Orchestrator.kt diff --git a/src/main/kotlin/broker/Broker.kt b/orchestrator/src/main/kotlin/broker/Broker.kt similarity index 100% rename from src/main/kotlin/broker/Broker.kt rename to orchestrator/src/main/kotlin/broker/Broker.kt diff --git a/src/main/kotlin/broker/BrokerClient.kt b/orchestrator/src/main/kotlin/broker/BrokerClient.kt similarity index 100% rename from src/main/kotlin/broker/BrokerClient.kt rename to orchestrator/src/main/kotlin/broker/BrokerClient.kt diff --git a/src/main/kotlin/broker/impl/SimpleBroker.kt b/orchestrator/src/main/kotlin/broker/impl/SimpleBroker.kt similarity index 100% rename from src/main/kotlin/broker/impl/SimpleBroker.kt rename to orchestrator/src/main/kotlin/broker/impl/SimpleBroker.kt diff --git a/src/main/kotlin/exception/RunnerException.kt b/orchestrator/src/main/kotlin/exception/RunnerException.kt similarity index 100% rename from src/main/kotlin/exception/RunnerException.kt rename to orchestrator/src/main/kotlin/exception/RunnerException.kt diff --git a/src/main/kotlin/extensions/Channel.kt b/orchestrator/src/main/kotlin/extensions/Channel.kt similarity index 100% rename from src/main/kotlin/extensions/Channel.kt rename to orchestrator/src/main/kotlin/extensions/Channel.kt diff --git a/src/main/kotlin/extensions/File.kt b/orchestrator/src/main/kotlin/extensions/File.kt similarity index 100% rename from src/main/kotlin/extensions/File.kt rename to orchestrator/src/main/kotlin/extensions/File.kt diff --git a/src/main/kotlin/extensions/Model.kt b/orchestrator/src/main/kotlin/extensions/Model.kt similarity index 100% rename from src/main/kotlin/extensions/Model.kt rename to orchestrator/src/main/kotlin/extensions/Model.kt diff --git a/src/main/kotlin/intermediate/IRArgument.kt b/orchestrator/src/main/kotlin/intermediate/IRArgument.kt similarity index 100% rename from src/main/kotlin/intermediate/IRArgument.kt rename to orchestrator/src/main/kotlin/intermediate/IRArgument.kt diff --git a/src/main/kotlin/intermediate/IRDependency.kt b/orchestrator/src/main/kotlin/intermediate/IRDependency.kt similarity index 100% rename from src/main/kotlin/intermediate/IRDependency.kt rename to orchestrator/src/main/kotlin/intermediate/IRDependency.kt diff --git a/src/main/kotlin/intermediate/IRPackage.kt b/orchestrator/src/main/kotlin/intermediate/IRPackage.kt similarity index 100% rename from src/main/kotlin/intermediate/IRPackage.kt rename to orchestrator/src/main/kotlin/intermediate/IRPackage.kt diff --git a/src/main/kotlin/intermediate/IRParameter.kt b/orchestrator/src/main/kotlin/intermediate/IRParameter.kt similarity index 100% rename from src/main/kotlin/intermediate/IRParameter.kt rename to orchestrator/src/main/kotlin/intermediate/IRParameter.kt diff --git a/src/main/kotlin/intermediate/IRPipeline.kt b/orchestrator/src/main/kotlin/intermediate/IRPipeline.kt similarity index 100% rename from src/main/kotlin/intermediate/IRPipeline.kt rename to orchestrator/src/main/kotlin/intermediate/IRPipeline.kt diff --git a/src/main/kotlin/intermediate/IRProcessor.kt b/orchestrator/src/main/kotlin/intermediate/IRProcessor.kt similarity index 100% rename from src/main/kotlin/intermediate/IRProcessor.kt rename to orchestrator/src/main/kotlin/intermediate/IRProcessor.kt diff --git a/src/main/kotlin/intermediate/IRRunner.kt b/orchestrator/src/main/kotlin/intermediate/IRRunner.kt similarity index 100% rename from src/main/kotlin/intermediate/IRRunner.kt rename to orchestrator/src/main/kotlin/intermediate/IRRunner.kt diff --git a/src/main/kotlin/intermediate/IRStage.kt b/orchestrator/src/main/kotlin/intermediate/IRStage.kt similarity index 100% rename from src/main/kotlin/intermediate/IRStage.kt rename to orchestrator/src/main/kotlin/intermediate/IRStage.kt diff --git a/src/main/kotlin/parser/Parser.kt b/orchestrator/src/main/kotlin/parser/Parser.kt similarity index 100% rename from src/main/kotlin/parser/Parser.kt rename to orchestrator/src/main/kotlin/parser/Parser.kt diff --git a/src/main/kotlin/parser/impl/jena/JenaParser.kt b/orchestrator/src/main/kotlin/parser/impl/jena/JenaParser.kt similarity index 100% rename from src/main/kotlin/parser/impl/jena/JenaParser.kt rename to orchestrator/src/main/kotlin/parser/impl/jena/JenaParser.kt diff --git a/src/main/kotlin/parser/impl/jena/RDFC.kt b/orchestrator/src/main/kotlin/parser/impl/jena/RDFC.kt similarity index 100% rename from src/main/kotlin/parser/impl/jena/RDFC.kt rename to orchestrator/src/main/kotlin/parser/impl/jena/RDFC.kt diff --git a/src/main/kotlin/parser/impl/jena/ShaclShapes.kt b/orchestrator/src/main/kotlin/parser/impl/jena/ShaclShapes.kt similarity index 100% rename from src/main/kotlin/parser/impl/jena/ShaclShapes.kt rename to orchestrator/src/main/kotlin/parser/impl/jena/ShaclShapes.kt diff --git a/src/main/kotlin/resolver/Resolver.kt b/orchestrator/src/main/kotlin/resolver/Resolver.kt similarity index 100% rename from src/main/kotlin/resolver/Resolver.kt rename to orchestrator/src/main/kotlin/resolver/Resolver.kt diff --git a/src/main/kotlin/resolver/impl/GenericResolver.kt b/orchestrator/src/main/kotlin/resolver/impl/GenericResolver.kt similarity index 100% rename from src/main/kotlin/resolver/impl/GenericResolver.kt rename to orchestrator/src/main/kotlin/resolver/impl/GenericResolver.kt diff --git a/src/main/kotlin/resolver/impl/GitResolver.kt b/orchestrator/src/main/kotlin/resolver/impl/GitResolver.kt similarity index 100% rename from src/main/kotlin/resolver/impl/GitResolver.kt rename to orchestrator/src/main/kotlin/resolver/impl/GitResolver.kt diff --git a/src/main/kotlin/resolver/impl/LocalResolver.kt b/orchestrator/src/main/kotlin/resolver/impl/LocalResolver.kt similarity index 100% rename from src/main/kotlin/resolver/impl/LocalResolver.kt rename to orchestrator/src/main/kotlin/resolver/impl/LocalResolver.kt diff --git a/src/main/kotlin/runner/Runner.kt b/orchestrator/src/main/kotlin/runner/Runner.kt similarity index 100% rename from src/main/kotlin/runner/Runner.kt rename to orchestrator/src/main/kotlin/runner/Runner.kt diff --git a/src/main/kotlin/runner/impl/grpc/Config.kt b/orchestrator/src/main/kotlin/runner/impl/grpc/Config.kt similarity index 100% rename from src/main/kotlin/runner/impl/grpc/Config.kt rename to orchestrator/src/main/kotlin/runner/impl/grpc/Config.kt diff --git a/src/main/kotlin/runner/impl/grpc/GRPCRunner.kt b/orchestrator/src/main/kotlin/runner/impl/grpc/GRPCRunner.kt similarity index 100% rename from src/main/kotlin/runner/impl/grpc/GRPCRunner.kt rename to orchestrator/src/main/kotlin/runner/impl/grpc/GRPCRunner.kt diff --git a/src/main/kotlin/runner/impl/grpc/HostedGRPCRunner.kt b/orchestrator/src/main/kotlin/runner/impl/grpc/HostedGRPCRunner.kt similarity index 100% rename from src/main/kotlin/runner/impl/grpc/HostedGRPCRunner.kt rename to orchestrator/src/main/kotlin/runner/impl/grpc/HostedGRPCRunner.kt diff --git a/src/main/kotlin/runner/impl/grpc/Serialize.kt b/orchestrator/src/main/kotlin/runner/impl/grpc/Serialize.kt similarity index 100% rename from src/main/kotlin/runner/impl/grpc/Serialize.kt rename to orchestrator/src/main/kotlin/runner/impl/grpc/Serialize.kt diff --git a/src/main/kotlin/runner/impl/jvm/Arguments.kt b/orchestrator/src/main/kotlin/runner/impl/jvm/Arguments.kt similarity index 100% rename from src/main/kotlin/runner/impl/jvm/Arguments.kt rename to orchestrator/src/main/kotlin/runner/impl/jvm/Arguments.kt diff --git a/src/main/kotlin/runner/impl/jvm/JVMRunner.kt b/orchestrator/src/main/kotlin/runner/impl/jvm/JVMRunner.kt similarity index 100% rename from src/main/kotlin/runner/impl/jvm/JVMRunner.kt rename to orchestrator/src/main/kotlin/runner/impl/jvm/JVMRunner.kt diff --git a/src/main/kotlin/runner/impl/jvm/Processor.kt b/orchestrator/src/main/kotlin/runner/impl/jvm/Processor.kt similarity index 100% rename from src/main/kotlin/runner/impl/jvm/Processor.kt rename to orchestrator/src/main/kotlin/runner/impl/jvm/Processor.kt diff --git a/src/main/kotlin/util/Log.kt b/orchestrator/src/main/kotlin/util/Log.kt similarity index 100% rename from src/main/kotlin/util/Log.kt rename to orchestrator/src/main/kotlin/util/Log.kt diff --git a/src/main/kotlin/util/ManagedProcess.kt b/orchestrator/src/main/kotlin/util/ManagedProcess.kt similarity index 100% rename from src/main/kotlin/util/ManagedProcess.kt rename to orchestrator/src/main/kotlin/util/ManagedProcess.kt diff --git a/src/main/kotlin/util/Retries.kt b/orchestrator/src/main/kotlin/util/Retries.kt similarity index 100% rename from src/main/kotlin/util/Retries.kt rename to orchestrator/src/main/kotlin/util/Retries.kt diff --git a/src/main/resources/pipeline.ttl b/orchestrator/src/main/resources/pipeline.ttl similarity index 100% rename from src/main/resources/pipeline.ttl rename to orchestrator/src/main/resources/pipeline.ttl diff --git a/src/test/kotlin/OrchestratorTest.kt b/orchestrator/src/test/kotlin/OrchestratorTest.kt similarity index 100% rename from src/test/kotlin/OrchestratorTest.kt rename to orchestrator/src/test/kotlin/OrchestratorTest.kt diff --git a/src/test/kotlin/e2e/E2ETest.kt b/orchestrator/src/test/kotlin/e2e/E2ETest.kt similarity index 100% rename from src/test/kotlin/e2e/E2ETest.kt rename to orchestrator/src/test/kotlin/e2e/E2ETest.kt diff --git a/src/test/kotlin/extensions/ChannelTest.kt b/orchestrator/src/test/kotlin/extensions/ChannelTest.kt similarity index 100% rename from src/test/kotlin/extensions/ChannelTest.kt rename to orchestrator/src/test/kotlin/extensions/ChannelTest.kt diff --git a/src/test/kotlin/extensions/FileTest.kt b/orchestrator/src/test/kotlin/extensions/FileTest.kt similarity index 100% rename from src/test/kotlin/extensions/FileTest.kt rename to orchestrator/src/test/kotlin/extensions/FileTest.kt diff --git a/src/test/kotlin/parser/ParserTest.kt b/orchestrator/src/test/kotlin/parser/ParserTest.kt similarity index 100% rename from src/test/kotlin/parser/ParserTest.kt rename to orchestrator/src/test/kotlin/parser/ParserTest.kt diff --git a/src/test/kotlin/processors/TappedReader.kt b/orchestrator/src/test/kotlin/processors/TappedReader.kt similarity index 100% rename from src/test/kotlin/processors/TappedReader.kt rename to orchestrator/src/test/kotlin/processors/TappedReader.kt diff --git a/src/test/kotlin/processors/TappedWriter.kt b/orchestrator/src/test/kotlin/processors/TappedWriter.kt similarity index 100% rename from src/test/kotlin/processors/TappedWriter.kt rename to orchestrator/src/test/kotlin/processors/TappedWriter.kt diff --git a/src/test/kotlin/runner/impl/jvm/ArgumentsTest.kt b/orchestrator/src/test/kotlin/runner/impl/jvm/ArgumentsTest.kt similarity index 100% rename from src/test/kotlin/runner/impl/jvm/ArgumentsTest.kt rename to orchestrator/src/test/kotlin/runner/impl/jvm/ArgumentsTest.kt diff --git a/src/test/resources/.gitignore b/orchestrator/src/test/resources/.gitignore similarity index 100% rename from src/test/resources/.gitignore rename to orchestrator/src/test/resources/.gitignore diff --git a/src/test/resources/e2e/data/invalid.ttl b/orchestrator/src/test/resources/e2e/data/invalid.ttl similarity index 100% rename from src/test/resources/e2e/data/invalid.ttl rename to orchestrator/src/test/resources/e2e/data/invalid.ttl diff --git a/src/test/resources/e2e/data/valid.ttl b/orchestrator/src/test/resources/e2e/data/valid.ttl similarity index 100% rename from src/test/resources/e2e/data/valid.ttl rename to orchestrator/src/test/resources/e2e/data/valid.ttl diff --git a/src/test/resources/e2e/jvm.ttl b/orchestrator/src/test/resources/e2e/jvm.ttl similarity index 92% rename from src/test/resources/e2e/jvm.ttl rename to orchestrator/src/test/resources/e2e/jvm.ttl index 8ef7428..592d035 100644 --- a/src/test/resources/e2e/jvm.ttl +++ b/orchestrator/src/test/resources/e2e/jvm.ttl @@ -23,9 +23,9 @@ test:JVMTestingPipeline test:HttpFetch , test:HttpWriter ; rdfc:dependency - <../../../../packages/http-utils-kt> , - <../../../../packages/file-utils-kt> , - <../../../../packages/shacl-validator-kt> . + <../../../../../packages/http-utils-kt> , + <../../../../../packages/file-utils-kt> , + <../../../../../packages/shacl-validator-kt> . test:HttpFetch a rdfc:HttpFetchKT ; diff --git a/src/test/resources/e2e/node.ttl b/orchestrator/src/test/resources/e2e/node.ttl similarity index 91% rename from src/test/resources/e2e/node.ttl rename to orchestrator/src/test/resources/e2e/node.ttl index 9951c6f..f7faf95 100644 --- a/src/test/resources/e2e/node.ttl +++ b/orchestrator/src/test/resources/e2e/node.ttl @@ -20,9 +20,9 @@ test:NodePipeline test:FileWriter , test:ReportWriter ; rdfc:dependency - <../../../../packages/runner-ts> , - <../../../../packages/file-utils-ts> , - <../../../../packages/shacl-validator-ts> . + <../../../../../packages/runner-ts> , + <../../../../../packages/file-utils-ts> , + <../../../../../packages/shacl-validator-ts> . test:FileReader a rdfc:FileReaderTS ; diff --git a/src/test/resources/e2e/python.ttl b/orchestrator/src/test/resources/e2e/python.ttl similarity index 90% rename from src/test/resources/e2e/python.ttl rename to orchestrator/src/test/resources/e2e/python.ttl index eaab3a6..cf8a54a 100644 --- a/src/test/resources/e2e/python.ttl +++ b/orchestrator/src/test/resources/e2e/python.ttl @@ -20,9 +20,9 @@ test:PythonPipeline test:ReportWriter , test:PythonProcessor ; rdfc:dependency - <../../../../packages/runner-py> , - <../../../../packages/file-utils-kt> , - <../../../../packages/shacl-validator-py> . + <../../../../../packages/runner-py> , + <../../../../../packages/file-utils-kt> , + <../../../../../packages/shacl-validator-py> . test:FileReader a rdfc:FileReaderKT ; diff --git a/src/test/resources/e2e/shacl/shapes.ttl b/orchestrator/src/test/resources/e2e/shacl/shapes.ttl similarity index 100% rename from src/test/resources/e2e/shacl/shapes.ttl rename to orchestrator/src/test/resources/e2e/shacl/shapes.ttl diff --git a/src/test/resources/packages/.keep b/orchestrator/src/test/resources/packages/.keep similarity index 100% rename from src/test/resources/packages/.keep rename to orchestrator/src/test/resources/packages/.keep diff --git a/src/test/resources/packages/basic/index.ttl b/orchestrator/src/test/resources/packages/basic/index.ttl similarity index 100% rename from src/test/resources/packages/basic/index.ttl rename to orchestrator/src/test/resources/packages/basic/index.ttl diff --git a/src/test/resources/packages/basic/processor.ttl b/orchestrator/src/test/resources/packages/basic/processor.ttl similarity index 100% rename from src/test/resources/packages/basic/processor.ttl rename to orchestrator/src/test/resources/packages/basic/processor.ttl diff --git a/src/test/resources/packages/dummy/index.ttl b/orchestrator/src/test/resources/packages/dummy/index.ttl similarity index 100% rename from src/test/resources/packages/dummy/index.ttl rename to orchestrator/src/test/resources/packages/dummy/index.ttl diff --git a/src/test/resources/packages/dummy/processor.ttl b/orchestrator/src/test/resources/packages/dummy/processor.ttl similarity index 100% rename from src/test/resources/packages/dummy/processor.ttl rename to orchestrator/src/test/resources/packages/dummy/processor.ttl diff --git a/src/test/resources/packages/dummy/runner.ttl b/orchestrator/src/test/resources/packages/dummy/runner.ttl similarity index 100% rename from src/test/resources/packages/dummy/runner.ttl rename to orchestrator/src/test/resources/packages/dummy/runner.ttl diff --git a/src/test/resources/pipeline.ttl b/orchestrator/src/test/resources/pipeline.ttl similarity index 100% rename from src/test/resources/pipeline.ttl rename to orchestrator/src/test/resources/pipeline.ttl diff --git a/src/test/resources/pipelines/basic/index.ttl b/orchestrator/src/test/resources/pipelines/basic/index.ttl similarity index 100% rename from src/test/resources/pipelines/basic/index.ttl rename to orchestrator/src/test/resources/pipelines/basic/index.ttl diff --git a/src/test/resources/pipelines/basic/stage.ttl b/orchestrator/src/test/resources/pipelines/basic/stage.ttl similarity index 100% rename from src/test/resources/pipelines/basic/stage.ttl rename to orchestrator/src/test/resources/pipelines/basic/stage.ttl diff --git a/src/test/resources/pipelines/dummy/index.ttl b/orchestrator/src/test/resources/pipelines/dummy/index.ttl similarity index 100% rename from src/test/resources/pipelines/dummy/index.ttl rename to orchestrator/src/test/resources/pipelines/dummy/index.ttl diff --git a/src/test/resources/pipelines/dummy/stage.ttl b/orchestrator/src/test/resources/pipelines/dummy/stage.ttl similarity index 100% rename from src/test/resources/pipelines/dummy/stage.ttl rename to orchestrator/src/test/resources/pipelines/dummy/stage.ttl diff --git a/packages/file-utils-kt/build.gradle.kts b/packages/file-utils-kt/build.gradle.kts index dbcbcde..d4a74d5 100644 --- a/packages/file-utils-kt/build.gradle.kts +++ b/packages/file-utils-kt/build.gradle.kts @@ -16,7 +16,7 @@ dependencies { implementation("org.reflections:reflections:0.10.2") // Processor class and other utilities. - implementation(files("../../build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) + implementation(files("../../orchestrator/build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) // RDF dependencies. implementation("org.apache.jena:apache-jena-libs:5.0.0") diff --git a/packages/http-utils-kt/build.gradle.kts b/packages/http-utils-kt/build.gradle.kts index bee1ba3..1f9314b 100644 --- a/packages/http-utils-kt/build.gradle.kts +++ b/packages/http-utils-kt/build.gradle.kts @@ -16,7 +16,7 @@ dependencies { implementation("org.reflections:reflections:0.10.2") // Processor class and other utilities. - implementation(files("../../build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) + implementation(files("../../orchestrator/build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) // RDF dependencies. implementation("org.apache.jena:apache-jena-libs:5.0.0") diff --git a/packages/shacl-validator-kt/build.gradle.kts b/packages/shacl-validator-kt/build.gradle.kts index 2810069..e3a4486 100644 --- a/packages/shacl-validator-kt/build.gradle.kts +++ b/packages/shacl-validator-kt/build.gradle.kts @@ -16,7 +16,7 @@ dependencies { implementation("org.reflections:reflections:0.10.2") // Processor class and other utilities. - implementation(files("../../build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) + implementation(files("../../orchestrator/build/libs/technology.idlab.jvm-runner-0.0.4-all.jar")) // RDF dependencies. implementation("org.apache.jena:apache-jena-libs:5.0.0") diff --git a/packages/shacl-validator-py/src/rdfc_shacl/__pycache__/__init__.cpython-312.pyc b/packages/shacl-validator-py/src/rdfc_shacl/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 48e1afcdd113a4887eee1d81a44f2ec304a548dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmX@j%ge<81g%Z$(_Db`V-N=hn4pZ$VnD`ph7^Vr#vF!R#wbQch7_iB#weyrW=)ot zj6g|E##?;B9*)jFVTn1JDTyWdMMca&VLwggTbyMmLburC;}dgo;^S8`dlD zIJKx)KPxq_Sl=bJEHx*;Ahk%pBsDoBFFz+gy;3hTB_}aSFRLt9x2QBP4=7iVn4F!M zo?5J5oROHEqYJk{x1dtLxF}h_C?zd99xSIHAD@|*SrQ+wS5Wzj!zMRBr8Fniu80$8 fG054)0zl#eGb1D8T?W+$+|n1gWE$Cv*nxroQ?X9% diff --git a/packages/shacl-validator-py/src/rdfc_shacl/__pycache__/validator.cpython-312.pyc b/packages/shacl-validator-py/src/rdfc_shacl/__pycache__/validator.cpython-312.pyc deleted file mode 100644 index b76a23f6ff7cd8515d1682bed750387b74ac38c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2693 zcmb7FU2GFa5Z*oCoiFiEoCHh~ev$x6;!@%g3bYLbXb7Mtico=4MG))oofA9fpYELj zQ(K~iR*8fZA|xE7N(8A=((4<2*vY(}_8_BC~uPm^6}*gcUSY_~RjL%$XsEK_`&J+(42= z#v!n=e#}`4D?@Aod)PneWYAx(RFtFTd00&&8ByCq%vmH`LPEJ>ftNW69|RVp_KH&G zf29^fY7Mz6?q#V|;=p#@%klst@i*9^YRP&74cQWcr%HF8K6$iv;3H89N}?7ex)6-` zqv2p=MCXYdixN#2qH%2`YOJWEVoX+bRwN^;pDDA?0#Bo`?8Y<#NgRUz`XS-D;%XB4 zN^;OO^HjD$V#;*Q_)@!-bS-7N)DvTXuFd3E{}OBJrWnm(u7{i^xB8zevfyhehe=c^ z>Y@78T_%@gByOIcE5-<;1oBu133Z;(3L{oZsNEMfO}?UewK&lf*@JaH5G7$z^HkIL zi;_%?O*(&>1T~nHHtW2qkwTiJfD*i@b0>%x8#Qd|TudaY?6K&qDk}j}Wge!|NVc@J zya;;Fsxnc%AvvOYkI9#0B^r~7SCjptk*E?KNpuD!MZDMeuxcIzXd@v(4V8BRj}QvJb%rsX<(%cme;{Rl$^YbCjaC1&2T znn|dE^2babJ;fGeLueD7G&mM=LDrLb12)rzQ6*oab0k_piats6-!vGd&Oxmu~3 zE1^b`0lz9#@oEjGEJ@3G@Gr%txD=mc$19o`)6CASaK;Y@(9Q4Qdl$Z{{pb~*H@@1oVH2?7j^XzKNI9lfD*64IR>~^Hy0%gh z=zGg$>=6d9ZeLsZ@3oxPM500Ww#Zjxe_RVjBWIxZxquQ^M+r@|htXL8WRcJp0z@{W zvwS18$6q$rXIg0qK(DEzvgC092mn541#3i5FLa@UuS6uuGX)OP$yk%0mPZ_!>m*+0=geQx%`c>mA#?&mz(e<-)FFSD<2(Y0~r?Qgp8 zcR#l<`<>&*0Y3J1XY6~%Pu>d8od1hQt_F%Y;i+)W?a8=3v+Y@TSI*Uyadj;fkSOPF z&$!!X?YWNbOh@6b++b&){M~lta!y=gv0-;7vbWcHyvxkU$MQl z%na_e@%JsjeSOpmix28?uY-TEVGr;N9PX{*7kG~HHViro4ovwPgVt`NychR&u?uf) z2mWClKDLp4SYHqPpvO)TIwFQ;pHHv$`NB~tu2A0Y^L-K*m7;{D@UHV88c&j5~A)g