diff --git a/requirements.txt b/requirements.txt index 6225dd4dabb4a11bc8a59fb9591058cb32af2665..d8d1f41470659a8f623f5a25fe17268ae11c412b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,6 @@ scp-udg-client-rest @ git+https://crossserv.bologna.enea.it/gitlab/cross/scp_udg setuptools~=75.1.0 wheel~=0.44.0 jproperties~=2.1.2 -jpype1~=1.5.0 requests-cache~=1.2.1 simple-file-poller python-dateutil~=2.9.0.post0 diff --git a/scp_udg_client_app/jars/commons-jxpath-1.3.jar b/scp_udg_client_app/jars/commons-jxpath-1.3.jar deleted file mode 100644 index 271659ab10a7ac36c8c5ebdbced9aedb0f02671a..0000000000000000000000000000000000000000 Binary files a/scp_udg_client_app/jars/commons-jxpath-1.3.jar and /dev/null differ diff --git a/scp_udg_client_app/jars/jdom2-2.0.5.jar b/scp_udg_client_app/jars/jdom2-2.0.5.jar deleted file mode 100644 index 8e6e020217878636f2e35b3077e48ca4309abaaa..0000000000000000000000000000000000000000 Binary files a/scp_udg_client_app/jars/jdom2-2.0.5.jar and /dev/null differ diff --git a/scp_udg_client_app/jars/json-20240303.jar b/scp_udg_client_app/jars/json-20240303.jar deleted file mode 100644 index 3de65235382da564dc138eafa20899101d250f9e..0000000000000000000000000000000000000000 Binary files a/scp_udg_client_app/jars/json-20240303.jar and /dev/null differ diff --git a/scp_udg_client_app/jars/urbandataset-core-validation-1.3.jar b/scp_udg_client_app/jars/urbandataset-core-validation-1.3.jar deleted file mode 100644 index 461466ee88e4e9548bc1c5fcde33f1a9c1851f7f..0000000000000000000000000000000000000000 Binary files a/scp_udg_client_app/jars/urbandataset-core-validation-1.3.jar and /dev/null differ diff --git a/scp_udg_client_app/validate.py b/scp_udg_client_app/validate.py deleted file mode 100644 index 59596d23b6c0f2a30b4849a46497635e6d36f10e..0000000000000000000000000000000000000000 --- a/scp_udg_client_app/validate.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env python3 -import logging -from importlib.resources import files -from pathlib import Path - -import click -import click_log -# noinspection PyUnresolvedReferences -import jpype -# noinspection PyUnresolvedReferences -import jpype.imports -import requests_cache -# noinspection PyUnresolvedReferences -from jpype.types import * - -# Launch the JVM -jpype.startJVM(classpath=[str(files(__package__).joinpath("jars/*"))]) - -# import the Java modules -# noinspection PyUnresolvedReferences -from it.enea.validation.Validators import JSONSchematronValidator - -from scp_udg_client_rest.models.scps_urbandataset_schema20 import ScpsUrbandatasetSchema20 - -SCHEMA_BASE_URL = 'https://smartcityplatform.enea.it/UDWebLibrary/it/template/' - -# Logger configuration -logger = click_log.basic_config() - - -@click.command() -@click_log.simple_verbosity_option(logger, show_default=True) -@click.option('--ud-schema-path', type=click.Path(dir_okay=False), help="Path to schema.") -@click.argument("ud_path", type=click.File('rb')) -def validate(ud_path, ud_schema_path): - logger.info(f"Validating {ud_path.name} UrbanDataset...") - - try: - ud_content = ud_path.read() - urban_dataset = ScpsUrbandatasetSchema20.from_json(ud_content) - logger.info("UrbanDataset loaded.") - logger.debug(urban_dataset.to_json()) - - schema_content = load_schema(ud_schema_path, urban_dataset) - validator = JSONSchematronValidator() - validation_report = validator.getValidationReport(ud_content, schema_content) - success = validation_report.isSuccess() - - log_validation_errors(validation_report.getErrors()) - logger.log(logging.INFO if success else logging.ERROR, f'JSONSchematronValidator Success: {success}') - - except Exception as e: - logger.error(e) - - -def load_schema(schema_path, urban_dataset): - if schema_path: - return Path(schema_path).read_text() - urban_spec_id = urban_dataset.urban_dataset.specification.id.value.split('-')[0] - session = requests_cache.CachedSession() - response = session.get(f'{SCHEMA_BASE_URL}{urban_spec_id}?templ=schem') - return response.text - - -def log_validation_errors(errors): - for error in errors: - message = error.getMessage() - logger.error(message) - - -if __name__ == "__main__": - validate() diff --git a/setup.py b/setup.py index c82b1e0733955f715768357a8d1e8622e13174f7..15362e5e156ae86b6f98dec951a1380aad4144ca 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,6 @@ setuptools.setup( include_package_data=True, # url="https://github.com/username/scp-udg-client-app", packages=setuptools.find_packages(), - package_data={'scp_udg_client_app': ['jars/*.jar']}, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", @@ -58,7 +57,6 @@ setuptools.setup( "click-log>=0.4.0", "click-params>=0.5.0", "javaproperties>=0.8.1", - "jpype1>=1.5.0", "outgoing>=0.6.1", "python-dateutil>=2.9.0", "requests-cache>=1.2.1", @@ -68,7 +66,6 @@ setuptools.setup( ], cmdclass={"sdist": SdistCommand, "bdist_wheel": BdistWheelCommand}, entry_points={ - 'console_scripts': ['scp-udg-client=scp_udg_client_app.cli:cli', - 'urbandataset-core-validation=scp_udg_client_app.validate:validate'] + 'console_scripts': ['scp-udg-client=scp_udg_client_app.cli:cli'] } )