Getting Started

Possible Configuration Sources

Device configuration data can be supplied to BOSS from various sources.

For testing purposes or isolated BOSS instances, you can directly supply a JSON file with the device configuration inside. Run BOSS with the absolute path to the JSON file:

python -m boss.starter --u file:///absolute/path/to/file.json

Hint

BOSS uses urllib to parse the url specified by the -u argument, which supports many more url schemes than listed here. This means you can use also completely different endpoints to host your configuration for BOSS like ftp or svn, the only requirement is that there is a valid JSON configuration string at the end.

Installing/Deploying BOSS

A convenient way to deploy BOSS is inside of a docker container. You can find pre-build containers images in our docker registry.

Hint

You can also build the BOSS docker image yourself from the Dockerfile in the repository: docker build -t atomiq/boss . By building the docker image yourself, you can modify the docker image and add for example custom device vendor libraries or similar.

A BOSS docker service can be started with the following compose file

services:
  httpclient:
    image: registry.gitlab.com/atomiq-project/boss:latest
    restart: always
    network_mode: host
    environment:
     - |
       BOSS1=
       {
        "_id": "docker-env-ftp",
           "classname": "ftplib.FTP",
           "arguments": {
                "host": "ftp.us.debian.org"
           }
       }
    command: python -m boss.starter -e BOSS1

Additionally, also specifying a file or URL is possible, such that (mounted) json files in the docker container or web URLs can be used as configuration sources. Note that the -e and -u options can be specified in the command line multiple times to define several objects that should be instantiated by the BOSS.

Additional Dependencies in Docker

Due to the large variety of devices supported by herosdevices, it becomes intractable (and sometimes legally troublesome) to have all dependencies for every device installed in the the base image. It might thus be necessary to extend the docker image by required third party libraries in one of the following ways:

BOSS can install dependencies from various sources during container creation. You can specify these dependencies in the docker-compose file as the following minimal example shows:

docker-compose.yaml
services:
  myboss:
    image: registry.gitlab.com/atomiq-project/boss
    restart: always
    network_mode: host
    environment:
      - BOSS_PIP_PKGS=toptica-lasersdk pyserial
      - BOSS_APT_PKGS=libftdi1
      - PVCAM_SDK_PATH=/opt/pvcam/sdk # For pvcam installed via script below
    command: python -m boss.starter --log debug --expose
    volumes:
      - ./my_pkgs/:/etc/boss/
  • BOSS_PIP_PKGS: Packages specified here are installed into the environment via pip. Every valid pip package syntax is usable (Notably git+https://...). Here pyserial and toptica-lasersdk are installed.

  • BOSS_APT_PKGS: Packages specified here are installed via the apt package manager. The base image is based on debian so everything debian offers can be added here. Here libftdi1.

    Note

    Packages via apt are installed first so that they are available during the installation of pip packages.

  • Local Packages: The starter looks for files with the extensions .boss.sh in /etc/boss. In the example the folder, ./my_pkgs residing in the same directory as the compose file is mounted to that location. The following scripts install the pvcam software.

    pvcam.boss.sh
    # Install prerequisites
    apt-get update && apt-get install -y sudo git
    
    # Install the vendor library itself
    # We have to agree to some licenses here so we use the "yes" command.
    # The EUID=1 is a little hack to trick the installer into thinking we're not root.
    /bin/sh -c 'yes | EUID=1 /bin/bash ./pvcam/pvcam__install_helper-Ubuntu.sh'
    
    # Remove build files after installation to make image a bit smaller
    rm -rf /pvcam
    
    # We need to point the python api to the correct library path
    export PVCAM_SDK_PATH="/opt/pvcam/sdk"
    # Install python API
    pip install --break-system-packages PyVCAM