Skip to main content

A pluggable task/job framework for IOC Manager applications with REST API

Project description

iocmng — IOC Manager Framework

A pluggable task/job framework for IOC Manager applications. Provides base classes for continuous tasks and one-shot jobs that can be dynamically loaded at runtime via a REST API.

Features

  • TaskBase — base class for continuous tasks (run in a loop)
  • JobBase — base class for one-shot jobs (run once, return result)
  • REST API — add/remove tasks and jobs at runtime from git repositories
  • Validation — plugins are validated (must derive from base class, must compile, abstract methods must be implemented)
  • EPICS soft IOC PVs — every task and job gets default PVs (STATUS, MESSAGE, etc.) via softioc
  • Per-plugin config.yaml — each plugin defines its PVs and parameters in a config file inside its git repo
  • Path support — specify a sub-directory inside the git repo where the plugin sources live
  • Plugin requirements.txt — plugins can ship their own dependencies
  • Optional Ophyd integration — device abstraction via ophyd/infn_ophyd_hal (optional dependency)
  • Docker image — ready-to-run container with the REST API
  • PyPI packagepip install iocmng

Quick Start

Install from PyPI

pip install iocmng

# With all optional dependencies (ophyd, kubernetes)
pip install iocmng[all]

Run the API Server

# Using the CLI entry point
iocmng-server

# Or with environment variables
IOCMNG_PORT=8080 IOCMNG_LOG_LEVEL=debug iocmng-server

# Or with Docker
docker run -p 8080:8080 ghcr.io/infn-epics/epik8s-beamline-controller:latest

Create a Task

Create a git repository with:

  1. A Python file with a class deriving from TaskBase
  2. A config.yaml defining PVs and parameters
my-monitor-repo/
├── my_monitor.py
├── config.yaml
└── requirements.txt    # optional — extra dependencies

my_monitor.py

from iocmng import TaskBase

class MyMonitor(TaskBase):
    def initialize(self):
        self.logger.info("Starting monitor")

    def execute(self):
        value = self.read_sensor()
        self.set_pv("READING", value)
        if value > self.parameters.get("threshold", 75):
            self.set_pv("ALARM", 1)

    def cleanup(self):
        self.logger.info("Stopping monitor")

    def read_sensor(self):
        return 42.0

config.yaml

parameters:
  mode: continuous
  interval: 1.0
  threshold: 75.0

pvs:
  inputs:
    SETPOINT:
      type: float
      value: 50.0
      unit: "%"
      prec: 2
      low: 0
      high: 100
  outputs:
    READING:
      type: float
      value: 0.0
      unit: "arb"
      prec: 3
    ALARM:
      type: bool
      value: 0
      znam: "OK"
      onam: "ALARM"

Create a Job

# my_diagnostics.py
from iocmng import JobBase
from iocmng.base.job import JobResult

class MyDiagnostics(JobBase):
    def initialize(self):
        self.logger.info("Preparing diagnostics")

    def execute(self) -> JobResult:
        info = {"status": "healthy", "uptime": 12345}
        self.set_pv("SYSTEM_NAME", info["status"])
        return JobResult(success=True, data=info, message="Diagnostics OK")

REST API Usage

Add a plugin (task or job — type auto-detected)

curl -X POST http://sparc-beamline-controller.k8sda.lnf.infn.it/api/v1/plugins \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-monitor",
    "git_url": "https://baltig.infn.it/lnf-da-control/epik8-sparc.git",
    "pat": "",
    "branch": "main",
    "path": "config/iocs/beamline-controller/check_motor_movement/",
  }'

The plugin type (task / job) is determined automatically from the class found in the repo. The /tasks and /jobs endpoints are still available as type-checked aliases.

Hot-reload a plugin (restart)

curl -X POST http://sparc-beamline-controller.k8sda.lnf.infn.it/api/v1/plugins/my-monitor/restart

Re-clones the repository into a temporary directory, validates the new code, and only updates the running instance if all checks pass. The original branch and PAT are reused. If validation fails the running plugin is left untouched.

Run a job

curl -X POST http://localhost:8080/api/v1/plugins/my-monitor/run

Remove a plugin

curl -X DELETE http://localhost:8080/api/v1/plugins/my-monitor

List all plugins

curl http://localhost:8080/api/v1/plugins

# Filter by type
curl "http://localhost:8080/api/v1/plugins?type=task"
curl "http://localhost:8080/api/v1/plugins?type=job"

Type-scoped aliases

# Tasks
curl -X POST   http://localhost:8080/api/v1/tasks
curl -X DELETE http://localhost:8080/api/v1/tasks/my-monitor
curl           http://localhost:8080/api/v1/tasks

# Jobs
curl -X POST http://localhost:8080/api/v1/jobs
curl -X POST http://localhost:8080/api/v1/jobs/my-diag/run
curl -X DELETE http://localhost:8080/api/v1/jobs/my-diag

Health check

curl http://localhost:8080/api/v1/health

Plugin Structure

Each plugin lives in a git repository (or a sub-directory of one). The expected layout:

<repo-root>/
└── <path>/                 # optional sub-directory (specified via REST "path" field)
    ├── my_plugin.py        # Python module with TaskBase/JobBase subclass
    ├── config.yaml         # Plugin configuration (PVs, parameters)
    └── requirements.txt    # Optional additional pip dependencies

config.yaml Format

# Parameters — passed to the plugin constructor as self.parameters
# REST-supplied parameters override these defaults
parameters:
  mode: continuous          # "continuous" or "triggered"
  interval: 1.0             # application-specific
  threshold: 75.0           # application-specific

# PV definitions — created automatically by the IOC Manager
pvs:
  inputs:                   # writable PVs (operator → plugin)
    SETPOINT:
      type: float           # float, int, string, bool
      value: 50.0           # initial value
      unit: "%"             # EGU (float only)
      prec: 2               # precision (float only)
      low: 0                # LOPR (float only)
      high: 100             # HOPR (float only)
  outputs:                  # read-only PVs (plugin → operator)
    READING:
      type: float
      value: 0.0
    ALARM:
      type: bool
      value: 0
      znam: "OK"            # zero-state name (bool only)
      onam: "ALARM"         # one-state name (bool only)

Plugin Validation

When a task or job is added, the framework performs the following checks:

  1. Clone — the git repository is cloned (with optional PAT for private repos)
  2. Dependenciesrequirements.txt is installed if present (from path or repo root)
  3. Configconfig.yaml is loaded from path to read PV definitions and default parameters
  4. Syntax — Python files are parsed via AST for syntax errors
  5. Import — the module is imported to check for runtime import errors
  6. Inheritance — at least one class must derive from TaskBase or JobBase
  7. Abstract methods — all abstract methods (initialize, execute, cleanup) must be implemented

If any check fails, the plugin is rejected and the error details are returned.

Default PVs

Every task automatically gets these PVs (prefix: BEAMLINE:NAMESPACE:TASKNAME):

PV Type Description
ENABLE boolOut Enable/disable the task
STATUS mbbIn INIT / RUN / PAUSED / END / ERROR
MESSAGE stringIn Human-readable status message
CYCLE_COUNT longIn Cycle counter (continuous mode)
RUN boolOut Trigger execution (triggered mode)

Every job gets:

PV Type Description
STATUS mbbIn IDLE / RUNNING / SUCCESS / FAILED
MESSAGE stringIn Human-readable status message

Additional PVs are created from the pvs section of config.yaml.

Choosing Between Continuous Task, Triggered Task, and Job

Continuous Task Triggered Task Job
Execution execute() loops indefinitely execute() called when RUN PV is written execute() called via REST
How triggered Automatic (runs on start) Operator writes 1 to the RUN EPICS PV POST /api/v1/jobs/{name}/run
Return value None (side effects only) None (side effects only) JobResult with success, data, message
Has cleanup() Yes Yes No
EPICS PV CYCLE_COUNT RUN (boolOut)
Typical use Polling, monitoring, periodic updates Operator-driven actions from CS-Studio/Phoebus API-driven actions from scripts or services

Rule of thumb:

  • Use a continuous task for anything that needs to run on a regular cycle (e.g., reading a sensor every second).
  • Use a triggered task when the action is initiated from the EPICS control system (e.g., an operator clicks a button in Phoebus that writes to a PV).
  • Use a job when the action is initiated from software/REST (e.g., a Kubernetes CronJob, a CI script, or another microservice).

Configuration

Initial Plugins (IOCMNG_PLUGINS_CONFIG)

Set IOCMNG_PLUGINS_CONFIG to a YAML file path to pre-load plugins on startup:

# plugins.yaml
plugins:
  - name: beam-monitor
    git_url: https://github.com/org/beamline-tasks.git
    path: tasks/monitor          # sub-directory inside the repo
    branch: main
    pat: ghp_xxx                 # optional — for private repos
    parameters:
      threshold: 80.0            # override config.yaml defaults

  - name: daily-report
    git_url: https://github.com/org/beamline-jobs.git
    path: jobs/report
    auto_start: false            # jobs default to false; tasks default to true
export IOCMNG_PLUGINS_CONFIG=/etc/iocmng/plugins.yaml
iocmng-server

All paths in the file are loaded sequentially at startup. Any that fail are logged as errors but do not prevent the server from starting.

Environment Variables

Variable Default Description
IOCMNG_CONFIG (none) Path to config.yaml
IOCMNG_BEAMLINE_CONFIG (none) Path to values.yaml
IOCMNG_PLUGINS_CONFIG (none) Path to initial plugins YAML
IOCMNG_PLUGINS_DIR /data/plugins Directory for cloned plugins
IOCMNG_HOST 0.0.0.0 Server bind address
IOCMNG_PORT 8080 Server port
IOCMNG_DISABLE_OPHYD true Skip ophyd initialization
IOCMNG_LOG_LEVEL info Logging level

Optional: Ophyd Device Integration

When ophyd and infn_ophyd_hal are installed and IOCMNG_DISABLE_OPHYD=false, the controller automatically creates Ophyd device instances from your values.yaml IOC configuration. Tasks can access devices via self.get_device() and self.list_devices().

Project Structure

src/iocmng/
├── __init__.py           # Package entry: exports TaskBase, JobBase
├── base/
│   ├── task.py           # TaskBase — continuous tasks with PV support
│   └── job.py            # JobBase — one-shot jobs with PV support
├── core/
│   ├── controller.py     # Central plugin manager
│   ├── loader.py         # Git clone + config loading + module loading
│   └── validator.py      # Plugin validation
├── api/
│   ├── app.py            # FastAPI application factory
│   ├── models.py         # Pydantic request/response models
│   └── routes.py         # REST API endpoints
└── ophyd/
    └── factory.py        # Optional ophyd device creation

Development

# Install in editable mode with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest tests/ -v

# Format
black .

# Lint
flake8 .

GitHub Actions

The workflow in .github/workflows/release.yml triggers on:

  • Git tags matching v* (e.g., v2.0.0)
  • Manual dispatch (workflow_dispatch)

It will:

  1. Run tests
  2. Build and publish the Python package to PyPI
  3. Build and push a Docker image to GitHub Container Registry (ghcr.io)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iocmng-2.0.6.tar.gz (29.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iocmng-2.0.6-py3-none-any.whl (28.1 kB view details)

Uploaded Python 3

File details

Details for the file iocmng-2.0.6.tar.gz.

File metadata

  • Download URL: iocmng-2.0.6.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for iocmng-2.0.6.tar.gz
Algorithm Hash digest
SHA256 b81cfe0db8bdbee4d7d3972bb363cf4d0155ffedd353b683ee8949bd146ebff4
MD5 defacfed4722839777b100b5f46dc41b
BLAKE2b-256 6134adcc8181869c0956dd3be646a9f99e654bff43702596e8d725b035f97281

See more details on using hashes here.

Provenance

The following attestation bundles were made for iocmng-2.0.6.tar.gz:

Publisher: release.yml on infn-epics/epik8s-beamline-controller

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file iocmng-2.0.6-py3-none-any.whl.

File metadata

  • Download URL: iocmng-2.0.6-py3-none-any.whl
  • Upload date:
  • Size: 28.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for iocmng-2.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 2952f6b89c4d9f6b317ab5d770baf61ba9f1ddd1ca066eb59cec2dada14b90dc
MD5 d2f7c92a0a89606ab475e0f8b553d972
BLAKE2b-256 db97404ccf541f56cc0afb2547d25fecf7e5c7dfdc49b9b9979b0ba90d3aaa90

See more details on using hashes here.

Provenance

The following attestation bundles were made for iocmng-2.0.6-py3-none-any.whl:

Publisher: release.yml on infn-epics/epik8s-beamline-controller

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page