cgse 0.16.9__tar.gz → 0.16.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cgse-0.16.9 → cgse-0.16.11}/PKG-INFO +2 -1
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-common/settings.md +4 -4
- cgse-0.16.11/docs/user_guide/cli.md +35 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/pyproject.toml +2 -1
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/env.py +1 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/setup.py +1 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/system.py +24 -11
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/zmq_ser.py +14 -5
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/settings.yaml +2 -2
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/async_control.py +448 -256
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/confman/__init__.py +23 -1
- cgse-0.16.11/libs/cgse-core/src/egse/confman/confman_acs.py +36 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/connect.py +5 -5
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/logger/__init__.py +2 -1
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/logger/log_cs.py +2 -2
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/server.py +12 -12
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/protocol.py +5 -1
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/registry/client.py +49 -50
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/registry/server.py +26 -22
- cgse-0.16.11/libs/cgse-core/tests/marimo/intro.py +116 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/script_test_registry_client_server.py +3 -9
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510.py +27 -18
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_adev.py +8 -7
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_cs.py +38 -33
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_dev.py +9 -7
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/keithley_tempcontrol/cgse_services.py +4 -4
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/keithley_tempcontrol/settings.yaml +2 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/pyproject.toml +2 -2
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/__init__.py +3 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/pmac.py +18 -6
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/pmac_regex.py +5 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna_ui.py +25 -25
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/symetrie_hexapod/settings.yaml +1 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-fits/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-hdf5/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-spw/pyproject.toml +1 -1
- {cgse-0.16.9 → cgse-0.16.11}/pyproject.toml +2 -1
- {cgse-0.16.9 → cgse-0.16.11}/service_registry.db +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/service_registry.db-shm +0 -0
- cgse-0.16.11/service_registry.db-wal +0 -0
- cgse-0.16.9/docs/user_guide/cli.md +0 -13
- cgse-0.16.9/service_registry.db-wal +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/.github/workflows/ruff-format-check.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/.gitignore +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/buffer_vat.log +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/buffer_vat.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/bump.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/conftest.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/bits.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/calibration.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/command.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/config.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/control.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/counter.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/decorators.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/device.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/dicts.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/dummy.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/env.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/exceptions.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/heartbeat.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/hk.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/listener.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/metrics.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/mixin.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/monitoring.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/observer.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/obsid.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/persistence.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/plugin.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/process.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/reload.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/settings.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/setup.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/api/system.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/custom_theme/main.html +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/coding_style.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/docs.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/installation.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/monitoring.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/monorepo.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/nox.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/plugins.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/project-configuration.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/unit_testing.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/uv.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/dev_guide/versioning.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/getting_started.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/help.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/cli-cgse.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/github-fork-clone-dark.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/github-fork-clone.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/grafana-queries.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/icons/cgse-logo-blue.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/images/icons/cgse-logo.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/initialize.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-common/images/load_methods.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-common/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-common/setup.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-coordinates/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-core/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-core/notifyhub.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-core/registry.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/cgse-gui/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/libs/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/package_list.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/projects/cgse-tools.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/projects/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/projects/symetrie-hexapod.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/roadmap.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/stylesheets/custom.css +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/stylesheets/extra.css +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/tutorial.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/docs/user_guide/index.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/duckdb_metrics.db +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/duckdb_metrics.db.wal +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/identifier.sqlite +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/justfile +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/justfile +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/noxfile.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/service_registry.db +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/cgse_common/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/cgse_common/cgse.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/cgse_common/settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/bits.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/calibration.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/config.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/counter.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/decorators.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/device.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/dicts.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/exceptions.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/heartbeat.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/hk.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/log.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/metrics.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/observer.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/obsid.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/persistence.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/plugin.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/plugins/metrics/duckdb.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/plugins/metrics/influxdb.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/plugins/metrics/timescaledb.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/process.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/py.typed +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/randomwalk.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/ratelimit.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/reload.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/resource.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/response.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/scpi.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/settings.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/signal.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/socketdevice.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/state.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/task.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/src/egse/version.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/conftest.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/COPYING +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00028_201028_155259.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00029_201028_155331.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00030_210311_134043.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00080_210917_105245.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00081_210922_142259.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL/conf/SETUP_CSL_00082_210923_094458.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL1/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/CSL2/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/IAS/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/INTA/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/LAB23/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/SRON/conf/SETUP_SRON_00027_211119_140441.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/SRON/conf/SETUP_SRON_00028_211119_160406.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/SRON/conf/SETUP_SRON_00029_211119_172918.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/SRON/conf/SETUP_SRON_00030_211122_103604.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/SRON/conf/SETUP_SRON_00031_211123_124900.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/common/telemetry/tm-dictionary-default.csv +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/conf/SETUP_20250114_1519.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/conf/config-file.toml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/cal_coeff_1234.csv +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/calibration.csv +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/calibration.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/command.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/corrupt.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/data-file.txt +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/empty_data_file.txt +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/empty_yaml_file.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/local_settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/new_local_settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/data/test_setup.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/icons/hourglass.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/icons/keyboard.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/icons/soap_sponge.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/lib/dev1/shared-lib.so +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/data/lib/dev2/shared-lib.so +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/fixtures/default_env.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/fixtures/helpers.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/empty_process.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/handle_sigterm.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/process_with_children.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/raise_value_error.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/void-0.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/scripts/void-1.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_bits.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_config.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_decorators.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_device.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_env.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_fixtures.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_hk.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_influxdb_plugin.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_log.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_metrics.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_plugin.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_process.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_ratelimit.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_resource.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_response.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_settings.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_setup.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_signal.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_state.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_system.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_task.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-common/tests/test_zmq_ser.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/cgse_coordinates/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/cgse_coordinates/settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/avoidance.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/cslmodel.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/laser_tracker_to_dict.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/point.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/pyplot.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/referenceFrame.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/refmodel.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/rotationMatrix.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/src/egse/coordinates/transform3d_addon.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_avoidance.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_coordinates_plot.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_coordinates_serialize.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_point.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_ref_model.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_reference_frames.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-coordinates/tests/test_refmodel.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/.envrc.disabled +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/service_registry.db +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/_start.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/_status.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/_stop.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/cgse_explore.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/cgse_core/services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/_setup_core.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/async_control_claude.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/command.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/confman/__main__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/confman/confman.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/confman/confman_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/connect-todo.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/control.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/dummy.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/busy.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/operational-mode.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/pm_ui.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/simulator-mode.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/start-process-button.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/stop-process-button.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/icons/user-interface.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/listener.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/logger/__main__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/metricshub/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/metricshub/server.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/mixin.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/monitoring.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/client.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/event.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/notifyhub/test.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/procman/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/procman/procman.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/procman/procman_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/procman/procman_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/procman/procman_ui.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/proxy.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/registry/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/registry/backend.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/registry/service.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/services.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/storage/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/storage/__main__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/storage/persistence.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/storage/storage.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/src/egse/storage/storage_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/conftest.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/data/local_settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/fixtures/default_env.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/fixtures/helpers.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/fixtures/services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/script_subscribe_to_notifyhub.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/script_test_async_registry_client.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/script_test_service_registry_server.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/script_test_sync_registry_client.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/stress_test_registry_server.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_async_control.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_client_server_interaction.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_cm_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_command.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_confman_setups.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_connect.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_control.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_dummy.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_event_notification.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_extensions.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_listener.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_logger.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_mixin.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_notify_hub.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_registry_backend.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_registry_service.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_server_running.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_server_running_with_fixture.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_settings_core.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-core/tests/test_zmq_microservice.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/buttons.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu-cs-start.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu-cs-stop.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu-cs.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu_cs-started.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu_cs-stopped.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/aeu_cs.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/alert.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/arrow-double-left.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/arrow-double-right.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/arrow-up.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/backward.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/busy.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/cleaning.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/color-scheme.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/cs-connected-alert.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/cs-connected-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/cs-connected.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/cs-not-connected.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/double-left-arrow.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/double-right-arrow.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/erase-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/erase.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fitsgen-start.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fitsgen-stop.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fitsgen.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/forward.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fov-hk-start.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fov-hk-stop.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/fov-hk.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/front-desk.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/home-actioned.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/home-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/home.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/info.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/invalid.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-green.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-grey.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-orange.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-red.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-square-green.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-square-grey.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-square-orange.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/led-square-red.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/limit-switch-all-green.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/limit-switch-all-red.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/limit-switch-el+.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/limit-switch-el-.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/location-marker.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-dpu.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-gimbal.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-huber.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-ogse.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-puna.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-tcs.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/logo-zonda.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/maximize.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/meter.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/more.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/n-fee-hk-start.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/n-fee-hk-stop.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/n-fee-hk.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/observing-off.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/observing-on.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/open-document-hdf5.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/open-document-hdf5.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/ops-mode.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/play-green.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/plugged-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/plugged.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/pm_ui.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/power-button-green.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/power-button-red.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/power-button.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/radar.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/radioactive.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/reload.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/remote-control-off.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/remote-control-on.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/repeat-blue.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/repeat.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/settings.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/shrink.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/shutter.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/sign-off.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/sign-on.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/sim-mode.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/small-buttons-go.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/small-buttons-minus.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/small-buttons-plus.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/sponge.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/start-button-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/start-button.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/stop-button-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/stop-button.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/stop-red.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/stop.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-disabled-square.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-disabled.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-off-square.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-off.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-on-square.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/switch-on.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/temperature-control.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/th_ui_logo.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/unplugged.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/unvalid.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/user-interface.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/vacuum.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/valid.png +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/zoom-to-pixel-dark.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/icons/zoom-to-pixel-white.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/led.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/limitswitch.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/states.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/styles/dark.qss +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/styles/default.qss +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/styles.qss +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/libs/cgse-gui/src/egse/gui/switch.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/mkdocs.yml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/noxfile.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/overrides/.icons/custom/dbend-dark.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/overrides/.icons/custom/dbend-light.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/overrides/.icons/custom/gear.svg +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/src/cgse_tools/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/src/cgse_tools/cgse_clock.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/src/cgse_tools/cgse_commands.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/src/cgse_tools/cgse_services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/cgse-tools/src/egse/tools/status.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/justfile +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/noxfile.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/service_registry.db +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_acs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_mon.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/egse/tempcontrol/keithley/daq6510_sim.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/keithley_tempcontrol/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/src/keithley_tempcontrol/cgse_explore.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/temperature_readings.log +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/tests/script_daq6510_central_heating.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/tests/script_daq6510_mon.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/tests/script_plot_readings.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/tests/test_adev.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/keithley-tempcontrol/tests/test_dev.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/egse/tempcontrol/lakeshore/lakeshore336.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/egse/tempcontrol/lakeshore/lakeshore336.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/egse/tempcontrol/lakeshore/lakeshore336_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/egse/tempcontrol/lakeshore/lakeshore336_devif.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/egse/tempcontrol/lakeshore/lakeshore336_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/lakeshore_tempcontrol/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/lakeshore_tempcontrol/cgse_explore.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/lakeshore_tempcontrol/cgse_services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/src/lakeshore_tempcontrol/settings.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/lakeshore-tempcontrol/tests/test_lakeshore336_simulator.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/alpha.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/dynalpha.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/hexapod.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/hexapod_ui.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/joran.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/joran.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/joran_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/joran_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/joran_ui.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/puna_sim.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/punaplus.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda.yaml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda_devif.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda_protocol.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/egse/hexapod/symetrie/zonda_ui.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/symetrie_hexapod/__init__.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/symetrie_hexapod/cgse_explore.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/src/symetrie_hexapod/cgse_services.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/tests/test_puna.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/tests/test_puna_cs.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/generic/symetrie-hexapod/tests/test_puna_simulator.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-fits/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-fits/src/egse/plugins/storage/fits.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-hdf5/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-hdf5/src/egse/plugins/storage/hdf5.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-spw/README.md +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/projects/plato/plato-spw/src/egse/spw.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/ruff.toml +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/scratch/advanced-process-monitoring.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/scratch/live-process-monitoring.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/scratch/match-case.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/scratch/processes.json +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/scratch/simple-process-monitoring.py +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/temperature_readings.log +0 -0
- {cgse-0.16.9 → cgse-0.16.11}/test_service_registry.db +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cgse
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.11
|
|
4
4
|
Summary: Generic Common-EGSE: Commanding and monitoring lab equipment
|
|
5
5
|
Author: IvS KU Leuven
|
|
6
6
|
Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
|
|
@@ -9,6 +9,7 @@ Requires-Python: >=3.10
|
|
|
9
9
|
Requires-Dist: cgse-common
|
|
10
10
|
Requires-Dist: cgse-core
|
|
11
11
|
Requires-Dist: cgse-tools
|
|
12
|
+
Requires-Dist: marimo>=0.17.0
|
|
12
13
|
Requires-Dist: rich>=13.9.4
|
|
13
14
|
Requires-Dist: tomlkit>=0.13.2
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
@@ -39,8 +39,8 @@ Settings
|
|
|
39
39
|
│ ├── METRICS_PORT: 7003
|
|
40
40
|
│ ├── MAX_NR_LOG_FILES: 20
|
|
41
41
|
│ ├── MAX_SIZE_LOG_FILES: 20
|
|
42
|
-
│ ├──
|
|
43
|
-
│ └──
|
|
42
|
+
│ ├── EXTERN_LOG_HOST: 127.0.0.1
|
|
43
|
+
│ └── EXTERN_LOG_PORT: 19996
|
|
44
44
|
├── Configuration Manager Control Server
|
|
45
45
|
│ ├── PROTOCOL: tcp
|
|
46
46
|
│ ├── HOSTNAME: localhost
|
|
@@ -146,8 +146,8 @@ Logging Control Server: # LOG_CS
|
|
|
146
146
|
METRICS_PORT: 7003 # The HTTP port where Prometheus will connect to for retrieving metrics
|
|
147
147
|
MAX_NR_LOG_FILES: 20 # The maximum number of log files that will be maintained in a roll-over
|
|
148
148
|
MAX_SIZE_LOG_FILES: 20 # The maximum size one log file can become
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
EXTERN_LOG_HOST: 127.0.0.1 # The IP address of the external logger
|
|
150
|
+
EXTERN_LOG_PORT: 19996 # The port number on which the external logger is listening
|
|
151
151
|
|
|
152
152
|
Configuration Manager Control Server: # CM_CS
|
|
153
153
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
# CLI Commands CGSE
|
|
3
|
+
|
|
4
|
+
The CGSE comes with a suite of CLI commands to start and stop services, get
|
|
5
|
+
status reports and check the installation. It's actually a suite of `cgse`
|
|
6
|
+
sub-commands that is extendable by external packages. This section will
|
|
7
|
+
describe the commands that are available from the `cgse` packages.
|
|
8
|
+
|
|
9
|
+
## The `cgse` command
|
|
10
|
+
|
|
11
|
+
When you run the `cgse` command without arguments, you will see something
|
|
12
|
+
like this.
|
|
13
|
+

|
|
14
|
+
The _Options_ sections shows the global options to the CGSE command and allows you to activate auto-completion for all
|
|
15
|
+
sub-commands.
|
|
16
|
+
|
|
17
|
+
The _Commands_ section lists the `cgse` commands that are not linked to a core service or a control server.
|
|
18
|
+
|
|
19
|
+
The _Core Command_ section lists the sub-command for each of the core services, use `core` when you want to
|
|
20
|
+
start/stop all core services in one go. The core services are:
|
|
21
|
+
- **reg** the service registry for all core services and control servers
|
|
22
|
+
- **not** the notification server that collects and published all events
|
|
23
|
+
- **log** the log server that collects and stores all log messages
|
|
24
|
+
- **cm** the configuration manager
|
|
25
|
+
- **sm** the storage manager
|
|
26
|
+
- **pm** the process manager
|
|
27
|
+
|
|
28
|
+
The _Device Command_ section lists the sub-commands for all device packages that have been installed and have a
|
|
29
|
+
plugin for the `cgse` command. In the `cgse` package, the following devices are available:
|
|
30
|
+
- **DAQ6510** the Keithley Data Acquisition and Logging Multimeter
|
|
31
|
+
- **LakeShore336** the LakeShore Temperature Controller
|
|
32
|
+
- **puna**, **joran**, **zonda** the Symétrie positioning Hexapods
|
|
33
|
+
|
|
34
|
+
The _Example_ section lists devices that are purely there as examples on how to develop device drives and their
|
|
35
|
+
plugins and how to use them in the framework.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "cgse-common"
|
|
3
|
-
version = "0.16.
|
|
3
|
+
version = "0.16.11"
|
|
4
4
|
description = "Software framework to support hardware testing"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "IvS KU Leuven"}
|
|
@@ -43,6 +43,7 @@ dependencies = [
|
|
|
43
43
|
"duckdb>=1.3.1",
|
|
44
44
|
"requests>=2.32.4",
|
|
45
45
|
"psycopg>=3.2.9",
|
|
46
|
+
"python-dotenv>=1.1.1",
|
|
46
47
|
]
|
|
47
48
|
|
|
48
49
|
[project.scripts]
|
|
@@ -71,19 +71,32 @@ TIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%f%z"
|
|
|
71
71
|
class Periodic:
|
|
72
72
|
"""A timer that periodically invokes a function in the background.
|
|
73
73
|
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
This class schedules a callback to be executed at regular intervals using asyncio.
|
|
75
|
+
If no callback is provided, a warning message will be logged. If the callback execution
|
|
76
|
+
takes longer than the interval, and `skip` is True (default), the timer will skip missed
|
|
77
|
+
intervals to maintain the schedule.
|
|
76
78
|
|
|
77
|
-
When the function execution takes longer then the interval there re several options:
|
|
78
|
-
|
|
79
|
-
- if skip is True (default) the interval will take precedence and the
|
|
80
79
|
Args:
|
|
81
|
-
interval: The time between timer events, in seconds.
|
|
82
|
-
name: A name to assign the event (for debugging), defaults to `Periodic#`.
|
|
83
|
-
callback: A
|
|
84
|
-
repeat: The number of times to repeat the timer, or None to repeat forever.
|
|
85
|
-
skip: Enable skipping of scheduled function calls that couldn't be sent in time.
|
|
86
|
-
pause: Start the timer paused. Use `resume()` to activate the timer.
|
|
80
|
+
interval (float): The time between timer events, in seconds.
|
|
81
|
+
name (str, optional): A name to assign the event (for debugging), defaults to `Periodic#`.
|
|
82
|
+
callback (Callable, optional): A callback to invoke when the event is handled.
|
|
83
|
+
repeat (int, optional): The number of times to repeat the timer, or None to repeat forever.
|
|
84
|
+
skip (bool, optional): Enable skipping of scheduled function calls that couldn't be sent in time.
|
|
85
|
+
pause (bool, optional): Start the timer paused. Use `resume()` to activate the timer.
|
|
86
|
+
|
|
87
|
+
Methods:
|
|
88
|
+
start(): Start the timer.
|
|
89
|
+
stop(): Stop the timer.
|
|
90
|
+
is_running(): Return True if the timer is running.
|
|
91
|
+
is_paused(): Return True if the timer is paused.
|
|
92
|
+
pause(): Pause the timer.
|
|
93
|
+
reset(): Reset the timer to start from the beginning.
|
|
94
|
+
resume(): Resume a paused timer.
|
|
95
|
+
|
|
96
|
+
Note:
|
|
97
|
+
The timer runs asynchronously and is suitable for use in asyncio-based applications.
|
|
98
|
+
If the callback is a coroutine, it will be awaited.
|
|
99
|
+
|
|
87
100
|
"""
|
|
88
101
|
|
|
89
102
|
_periodic_count: int = 0
|
|
@@ -44,17 +44,26 @@ def recv_zipped_pickle(socket, flags=0, protocol=-1):
|
|
|
44
44
|
return pickle.loads(p)
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
def get_port_number(socket: zmq.Socket) -> int
|
|
47
|
+
def get_port_number(socket: zmq.Socket | None) -> int:
|
|
48
48
|
"""
|
|
49
|
-
Returns the port number associated with this socket.
|
|
50
|
-
|
|
49
|
+
Returns the port number associated with this socket.
|
|
50
|
+
|
|
51
|
+
If the socket is bound to a TCP or IPC transport, the port number is extracted from the
|
|
52
|
+
LAST_ENDPOINT socket option.
|
|
53
|
+
|
|
54
|
+
Returns:
|
|
55
|
+
- 0 for sockets that do not bound to a TCP or IPC transport.
|
|
56
|
+
- 0 if the socket is None.
|
|
51
57
|
"""
|
|
58
|
+
if socket is None:
|
|
59
|
+
return 0
|
|
60
|
+
|
|
52
61
|
endpoint = socket.getsockopt(zmq.LAST_ENDPOINT)
|
|
53
|
-
if endpoint:
|
|
62
|
+
if endpoint and isinstance(endpoint, bytes):
|
|
54
63
|
port = endpoint.decode("utf-8").split(":")[-1]
|
|
55
64
|
return int(port)
|
|
56
65
|
else:
|
|
57
|
-
return
|
|
66
|
+
return 0
|
|
58
67
|
|
|
59
68
|
|
|
60
69
|
def zmq_string_request(request: str) -> list:
|
|
@@ -18,8 +18,8 @@ Logging Control Server: # LOG_CS
|
|
|
18
18
|
MAX_SIZE_LOG_FILES: 20 # The maximum size one log file can become
|
|
19
19
|
RECEIVER_PORT: 6105
|
|
20
20
|
COMMANDER_PORT: 6106
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
EXTERN_LOG_HOST: 127.0.0.1 # The IP address of the external logger
|
|
22
|
+
EXTERN_LOG_PORT: 19996 # The port number on which the external logger is listening
|
|
23
23
|
|
|
24
24
|
Configuration Manager Control Server: # CM_CS
|
|
25
25
|
|