Modules, Definitions and Entities#
This page is a top down explanation of the above key terms by referencing the example IOC instance bl45p-mo-ioc-02 used in the system tests for this project.
The explanations rely on an understanding of the difference between generic IOCs and IOC instances. See Generic IOCs and instances.
Modules#
Every generic IOC image will include a number of EPICS support modules.
The bl45p-mo-ioc-02 ioc instance example uses the generic IOC container image ioc-pmac . This image contains the support modules pmac and motor plus the common support modules from epics-modules
Each IOC instance will mount a generic IOC image and therefore be able to make use of the libraries and DB templates in any of those support modules.
The goal of ibek is to allow a developer to define an instance of an IOC and make use of functions of its support modules.
ibek uses a support module definition file to determine what features of a support module may be instantiated.
Hence there is a collection of support module definition files inside of each generic IOC.
In the code the class GenericIoc is used to represent a generic IOC and an instance of that class represent an IOC instance.
Definition#
Each support module has its own support module definition file . This
is a YAML file whose name is by convention <support_module>.ibek.support.yaml
These will all reside in a folder called /ibek in the container image.
The support module definition file contains Definitions which determine what Entities an IOC instance may instantiate.
For example the pmac support module declares the following Definitions
in pmac.ibek.support.yaml
(currently this is limited to 3 - the full implementation would have more):
Geobrick
DlsPmacAsynIPPort
DlsPmacAsynMotor
Each Definition describes a class of Entity by providing:
Entity class name
a list of arguments to supply when declaring an Entity
boot script entries to add for the Entity in the form of a jinja template that may refer to the above arguments
database templates to instantiate for the Entity with macro values from the above arguments
Expand below for the example support module definition file:
objects.ibek.support.yaml
# yaml-language-server: $schema=../schemas/ibek.support.schema.json # slightly extended version of motorMotorSim.ibek.support.yaml from ibek-support. # the extra things are fictitious but are here to exercise all of the features # of the ibek.support schema module: motorSim defs: - name: simMotorController description: |- Creates a simulation motion controller args: - type: id name: controllerName description: |- The name of the controller and its Asyn Port Name - type: str name: P description: |- Device PV Prefix - type: int name: numAxes description: |- The number of axes to create - type: object name: port description: |- a reference to the asyn port for communication with the controller - type: str name: DESC description: |- The description of the controller default: "Simulated Motion Controller testing escaping: {% raw %} {{enclosed in escaped curly braces}} {% endraw %}" pre_init: - value: | # motorSimCreateController(controller_asyn_port_name, axis_count) # testing escaping: {% raw %} {{enclosed in escaped curly braces}} {% endraw %} motorSimCreateController({{controllerName}}, {{numAxes}}) databases: - file: sim_motor.db args: controllerName: P: DESC: pvi: yaml_path: simple.pvi.device.yaml ui_macros: P: pv: true pv_prefix: $(P) - name: simMotorAxis description: |- Creates a simulation motor axis args: - type: object name: controller description: |- a reference to the motion controller - type: str name: M description: |- PV suffix for the motor record - type: int name: ADDR description: |- The axis number (allowed to be from 0 to controller.numAxes-1) - type: str name: DESC description: |- The description of the axis default: "Motor {{ADDR}}" - type: int name: DLLM description: |- The low limit of the axis (in counts) default: -20000 - type: int name: DHLM description: |- The high limit of the axis (in counts) default: 20000 - type: int name: home description: |- The home position of the axis (in counts) default: 0 - type: str # int or jinja string name: start description: |- The starting position of the axis (in counts) default: "{{home}}" - type: enum name: DIR description: |- The direction of the axis default: 0 values: Pos: 0 Neg: 1 - type: float name: VELO description: |- The velocity of the axis (in counts/sec) default: 10.0 - type: str # float or jinja string name: VMAX description: |- The maximum velocity of the axis (in counts/sec) default: "{{VELO}}" - type: bool name: is_cs description: |- Set to True if this axis a coordinate system axis default: false - type: int name: CS_NUM description: |- The coordinate system number for this axis default: 0 post_init: - when: once value: | # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) - value: | motorSimConfigAxis({{controller}}, {{ADDR}}, {{DHLM}}, {{DLLM}}, {{home}}, {{start}}) databases: - file: basic_asyn_motor.db enabled: "{{not is_cs}}" args: P: "{{controller.P}}" M: DTYP: "asynMotor" PORT: "{{controller}}" ADDR: DESC: EGU: "degrees" DIR: VELO: VMAX: MRES: ".01" DHLM: DLLM: INIT: "" - file: basic_cs_asyn_motor.db enabled: "{{is_cs}}" args: P: "{{controller.P}}" CS_NUM: DTYP: "asynMotor" PORT: "{{controller}}" ADDR: DESC: EGU: "degrees" DIR: VELO: VMAX: MRES: ".01" DHLM: DLLM: INIT: ""
Definition is implemented in the code using a class of the same name.
Entity#
ibek can generate an IOC instance using an
IOC instance entity file. This is
a YAML file with name of the form <ioc_name>.<container>.yaml
.
The IOC instance entity file declares the Entities that the IOC instance requires.
An Entity represents any piece of functionality of an IOC that is configured through EPICS database and/or startup script.
The classes of Entity that can be instantiated for a given generic IOC are declared in the Definitions files described above.
Declaring an Entity for an IOC instance will cause ibek to generate lines in the startup script. The generated startup script will also supply the EPICS database entries using dbLoadRecords and database templates.
The example motion IOC instance bl45p-mo-ioc-02 has the following entities:
DlsPmacAsynIPPort (one instance)
represents a connection to a motion controller
configured via
pmacAsynIPConfigure in the boot script
Geobrick (one instance)
represents the motion controller itself
configured via
pmacCreateController in boot script
pmacCreateAxes in the boot script
dbLoadRecords of pmacController.template and pmacStatus.template
DlsPmacAsynMotor (two instances)
represents a single motor connected to the controller
configured via:
dbLoadRecords of dls_pmac_asyn_motor.template
The example IOC instance entity file is shown below along with the st.cmd file that ibek will generate from it.
Click the arrows to reveal the files.
all.ibek.ioc.yaml
# yaml-language-server: $schema=../schemas/motorSim.ibek.ioc.schema.json ioc_name: "{{ ioc_yaml_file_name }}" description: Example simulated motion IOC for Testing ibek entities: - type: asyn.AsynIP name: controllerOnePort port: 192.168.0.55:2002 - type: motorSim.simMotorController port: controllerOnePort controllerName: controllerOne numAxes: 4 P: "IBEK-MO-TST-01:" - type: motorSim.simMotorAxis controller: controllerOne # Use ADDR in other fields to verify jinja templating between Args M: M{{ADDR}} ADDR: 0 # Also use ioc_name to verify jinja templating of ioc_name DESC: "Motor {{ADDR}} for ioc {{ioc_name}}" home: 500 - type: motorSim.simMotorAxis controller: controllerOne M: M{{ADDR}} ADDR: 1 # verify escaping for jinja templating DESC: "Motor {{ADDR}} {% raw %} {{enclosed in escaped curly braces}} {% endraw %}" home: 500 - type: motorSim.simMotorAxis controller: controllerOne M: M{{ADDR}} ADDR: 2 # testing default DESC home: 1500 - type: motorSim.simMotorAxis controller: controllerOne M: M{{ADDR}} ADDR: 3 DESC: "Motor {{ADDR}}" home: 2500 - type: motorSim.simMotorAxis controller: controllerOne M: CS_M{{ADDR}} ADDR: 1 DESC: "CS Motor {{ADDR}}" home: 100 CS_NUM: 3 is_cs: true - type: motorSim.simMotorAxis controller: controllerOne M: CS_M{{ADDR}} ADDR: 2 DESC: "CS Motor {{ADDR}}" home: 100 CS_NUM: 3 is_cs: truest.cmd
# EPICS IOC Startup Script generated by https://github.com/epics-containers/ibek cd "/epics/ioc" epicsEnvSet NAME_AS_ENV_VAR my name is controllerOnePort dbLoadDatabase dbd/ioc.dbd ioc_registerRecordDeviceDriver pdbbase # Setting up Asyn Port controllerOnePort on 192.168.0.55:2002: # AsynIPConfigure({{name}}, {{port}}, {{stop}}, {{parity}}, {{bits}}) AsynIPConfigure(controllerOnePort, 192.168.0.55:2002, 1, none, 8) asynSetOption(9600, 0, N, Y) asynOctetSetInputEos("\n") asynOctetSetOutputEos("\n") # motorSimCreateController(controller_asyn_port_name, axis_count) # testing escaping: {{enclosed in escaped curly braces}} motorSimCreateController(controllerOne, 4) dbLoadRecords /epics/runtime/ioc.db iocInit # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 0, 20000, -20000, 500, 500) # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 1, 20000, -20000, 500, 500) # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 2, 20000, -20000, 1500, 1500) # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 3, 20000, -20000, 2500, 2500) # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 1, 20000, -20000, 100, 100) # motorSimCreateAxis(controller_asyn_port_name, axis, axis_description) motorSimConfigAxis(controllerOne, 2, 20000, -20000, 100, 100)
Entity is implemented in the code using a class of the same name.
Schemas#
The YAML files described above are constrained by schemas. These schemas are available to the developer and may be used to assist in generating the YAML.
Note that the author of an IOC instance needs access to <container>.schema.json in order to correctly craft a correct <ioc>.<container>.yaml. For this reason the container schema file is published as a github artifact along with the release of the container image. All other ibek operations happen within the container or during container development.
Thus, the sequence of files is as follows:
num |
Name |
Description |
---|---|---|
1 |
ibek.defs.schema.json |
Global Schema for 2 |
2 |
<support>.ibek.support.yaml |
Definition file for a support module. Generates part of 3 |
3 |
<container>.entities.schema.json |
Schema for 4. Generated by combining all of 2 from a container |
4 |
<ioc>.ibek.ioc.yaml |
Description of Entities for an IOC instance. |
5 |
IOC Startup Script st.cmd |
Startup script for booting the IOC |
The Global Schema and example IOC instance schema are below:
ibek.support.schema.json
{ "$defs": { "BoolArg": { "additionalProperties": false, "description": "An argument with an bool value", "properties": { "type": { "const": "bool", "default": "bool", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "BoolArg", "type": "object" }, "Comment": { "additionalProperties": false, "description": "A script snippet that will have '# ' prepended to every line\nfor insertion into the startup script", "properties": { "type": { "const": "comment", "default": "comment", "title": "Type" }, "when": { "allOf": [ { "$ref": "#/$defs/When" } ], "default": "every", "description": "One of first / every / last" }, "value": { "default": "", "description": "A comment to add into the startup script", "title": "Value", "type": "string" } }, "title": "Comment", "type": "object" }, "Database": { "additionalProperties": false, "description": "A database file that should be loaded by the startup script and its args", "properties": { "file": { "description": "Filename of the database template in <module_root>/db", "title": "File", "type": "string" }, "enabled": { "default": "True", "description": "Set to False to disable loading this database", "title": "Enabled", "type": "string" }, "args": { "additionalProperties": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description": "Dictionary of args and values to pass through to database. A value of None is equivalent to ARG: '{{ ARG }}'. See `UTILS.render_map` for more details.", "title": "Args", "type": "object" } }, "required": [ "file", "args" ], "title": "Database", "type": "object" }, "Definition": { "additionalProperties": false, "description": "A single definition of a class of Entity that an IOC instance may instantiate", "properties": { "name": { "description": "Publish Definition as type <module>.<name> for IOC instances", "title": "Name", "type": "string" }, "description": { "description": "A description of the Support module defined here", "title": "Description", "type": "string" }, "args": { "default": [], "description": "The arguments IOC instance should supply", "items": { "anyOf": [ { "$ref": "#/$defs/FloatArg" }, { "$ref": "#/$defs/StrArg" }, { "$ref": "#/$defs/IntArg" }, { "$ref": "#/$defs/BoolArg" }, { "$ref": "#/$defs/ObjectArg" }, { "$ref": "#/$defs/IdArg" }, { "$ref": "#/$defs/EnumArg" } ] }, "title": "Args", "type": "array" }, "values": { "default": [], "description": "The values IOC instance should supply", "items": { "$ref": "#/$defs/Value" }, "title": "Values", "type": "array" }, "databases": { "default": [], "description": "Databases to instantiate", "items": { "$ref": "#/$defs/Database" }, "title": "Databases", "type": "array" }, "pre_init": { "default": [], "description": "Startup script snippets to add before iocInit()", "items": { "anyOf": [ { "$ref": "#/$defs/Text" }, { "$ref": "#/$defs/Comment" } ] }, "title": "Pre Init", "type": "array" }, "post_init": { "default": [], "description": "Startup script snippets to add post iocInit(), such as dbpf", "items": { "anyOf": [ { "$ref": "#/$defs/Text" }, { "$ref": "#/$defs/Comment" } ] }, "title": "Post Init", "type": "array" }, "env_vars": { "default": [], "description": "Environment variables to set in the boot script", "items": { "$ref": "#/$defs/EnvironmentVariable" }, "title": "Env Vars", "type": "array" }, "pvi": { "allOf": [ { "$ref": "#/$defs/EntityPVI" } ], "default": null, "description": "PVI definition for Entity" } }, "required": [ "name", "description" ], "title": "Definition", "type": "object" }, "EntityPVI": { "additionalProperties": false, "description": "Entity PVI definition", "properties": { "yaml_path": { "description": "Path to .pvi.device.yaml - absolute or relative to PVI_DEFS", "title": "Yaml Path", "type": "string" }, "ui_index": { "default": true, "description": "Whether to add the UI to the IOC index.", "title": "Ui Index", "type": "boolean" }, "ui_macros": { "additionalProperties": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "default": null, "description": "Macros to launch the UI on the IOC index. These must be args of the Entity this is attached to.", "title": "Ui Macros", "type": "object" }, "pv": { "default": false, "description": "Whether to generate a PVI PV. This adds a database template with info tags that create a PVAccess PV representing the device structure.", "title": "Pv", "type": "boolean" }, "pv_prefix": { "default": "", "description": "PV prefix for PVI PV - e.g. \"$(P)\"", "title": "Pv Prefix", "type": "string" } }, "required": [ "yaml_path" ], "title": "EntityPVI", "type": "object" }, "EnumArg": { "additionalProperties": false, "description": "An argument with an enum value", "properties": { "type": { "const": "enum", "default": "enum", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ {}, { "type": "null" } ], "default": null, "title": "Default" }, "values": { "description": "provides a list of values to make this argument an Enum", "title": "Values", "type": "object" } }, "required": [ "name", "description", "values" ], "title": "EnumArg", "type": "object" }, "EnvironmentVariable": { "additionalProperties": false, "description": "An environment variable that should be set in the startup script", "properties": { "name": { "description": "Name of environment variable", "title": "Name", "type": "string" }, "value": { "description": "Value to set", "title": "Value", "type": "string" } }, "required": [ "name", "value" ], "title": "EnvironmentVariable", "type": "object" }, "FloatArg": { "additionalProperties": false, "description": "An argument with a float value", "properties": { "type": { "const": "float", "default": "float", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "FloatArg", "type": "object" }, "IdArg": { "additionalProperties": false, "description": "Explicit ID argument that an object can refer to", "properties": { "type": { "const": "id", "default": "id", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "IdArg", "type": "object" }, "IntArg": { "additionalProperties": false, "description": "An argument with an int value", "properties": { "type": { "const": "int", "default": "int", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "IntArg", "type": "object" }, "ObjectArg": { "additionalProperties": false, "description": "A reference to another entity defined in this IOC", "properties": { "type": { "const": "object", "default": "object", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "ObjectArg", "type": "object" }, "StrArg": { "additionalProperties": false, "description": "An argument with a str value", "properties": { "type": { "const": "str", "default": "str", "title": "Type" }, "name": { "description": "Name of the argument that the IOC instance should pass", "title": "Name", "type": "string" }, "description": { "description": "Description of what the argument will be used for", "title": "Description", "type": "string" }, "default": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Default" } }, "required": [ "name", "description" ], "title": "StrArg", "type": "object" }, "Text": { "additionalProperties": false, "description": "A script snippet to insert into the startup script", "properties": { "type": { "const": "text", "default": "text", "title": "Type" }, "when": { "default": "every", "description": "One of first / every / last", "title": "When", "type": "string" }, "value": { "default": "", "description": "raw text to add to the startup script", "title": "Value", "type": "string" } }, "title": "Text", "type": "object" }, "Value": { "additionalProperties": false, "description": "A calculated string value for a definition", "properties": { "name": { "description": "Name of the value that the IOC instance will expose", "title": "Name", "type": "string" }, "description": { "description": "Description of what the value will be used for", "title": "Description", "type": "string" }, "value": { "description": "The contents of the value", "title": "Value", "type": "string" } }, "required": [ "name", "description", "value" ], "title": "Value", "type": "object" }, "When": { "enum": [ "first", "every", "last" ], "title": "When", "type": "string" } }, "additionalProperties": false, "description": "Lists the definitions for a support module, this defines what Entities it supports\n\nProvides the deserialize entry point.", "properties": { "module": { "description": "Support module name, normally the repo name", "title": "Module", "type": "string" }, "defs": { "description": "The definitions an IOC can create using this module", "items": { "$ref": "#/$defs/Definition" }, "title": "Defs", "type": "array" } }, "required": [ "module", "defs" ], "title": "Support", "type": "object" }multiple.ibek.ioc.schema.json
{ "$defs": { "DIR": { "enum": [ "Pos", "Neg" ], "title": "DIR", "type": "string" }, "motorSim_simMotorAxis": { "additionalProperties": false, "properties": { "type": { "const": "motorSim.simMotorAxis", "default": "motorSim.simMotorAxis", "description": "Creates a simulation motor axis", "title": "Type" }, "entity_enabled": { "default": true, "description": "enable or disable this entity instance", "title": "Entity Enabled", "type": "boolean" }, "controller": { "description": "a reference to the motion controller", "title": "Controller" }, "M": { "description": "PV suffix for the motor record", "title": "M", "type": "string" }, "ADDR": { "description": "The axis number (allowed to be from 0 to controller.numAxes-1)", "title": "Addr", "type": "integer" }, "DESC": { "default": "Motor {{ADDR}}", "description": "The description of the axis", "title": "Desc", "type": "string" }, "DLLM": { "default": -20000, "description": "The low limit of the axis (in counts)", "title": "Dllm", "type": "integer" }, "DHLM": { "default": 20000, "description": "The high limit of the axis (in counts)", "title": "Dhlm", "type": "integer" }, "home": { "default": 0, "description": "The home position of the axis (in counts)", "title": "Home", "type": "integer" }, "start": { "default": "{{home}}", "description": "The starting position of the axis (in counts)", "title": "Start", "type": "string" }, "DIR": { "allOf": [ { "$ref": "#/$defs/DIR" } ], "default": 0, "description": "The direction of the axis" }, "VELO": { "default": 10.0, "description": "The velocity of the axis (in counts/sec)", "title": "Velo", "type": "number" }, "VMAX": { "default": "{{VELO}}", "description": "The maximum velocity of the axis (in counts/sec)", "title": "Vmax", "type": "string" }, "is_cs": { "default": false, "description": "Set to True if this axis a coordinate system axis", "title": "Is Cs", "type": "boolean" }, "CS_NUM": { "default": 0, "description": "The coordinate system number for this axis", "title": "Cs Num", "type": "integer" } }, "required": [ "controller", "M", "ADDR" ], "title": "motorSim_simMotorAxis", "type": "object" }, "motorSim_simMotorController": { "additionalProperties": false, "properties": { "type": { "const": "motorSim.simMotorController", "default": "motorSim.simMotorController", "description": "Creates a simulation motion controller", "title": "Type" }, "entity_enabled": { "default": true, "description": "enable or disable this entity instance", "title": "Entity Enabled", "type": "boolean" }, "controllerName": { "description": "The name of the controller and its Asyn Port Name", "title": "Controllername", "type": "string" }, "P": { "description": "Device PV Prefix", "title": "P", "type": "string" }, "numAxes": { "description": "The number of axes to create", "title": "Numaxes", "type": "integer" }, "port": { "description": "a reference to the asyn port for communication with the controller", "title": "Port" }, "DESC": { "default": "Simulated Motion Controller testing escaping: {% raw %} {{enclosed in escaped curly braces}} {% endraw %}", "description": "The description of the controller", "title": "Desc", "type": "string" } }, "required": [ "controllerName", "P", "numAxes", "port" ], "title": "motorSim_simMotorController", "type": "object" } }, "additionalProperties": false, "properties": { "ioc_name": { "description": "Name of IOC instance", "title": "Ioc Name", "type": "string" }, "description": { "description": "Description of what the IOC does", "title": "Description", "type": "string" }, "entities": { "description": "List of entities this IOC instantiates", "items": { "discriminator": { "mapping": { "motorSim.simMotorAxis": "#/$defs/motorSim_simMotorAxis", "motorSim.simMotorController": "#/$defs/motorSim_simMotorController" }, "propertyName": "type" }, "oneOf": [ { "$ref": "#/$defs/motorSim_simMotorController" }, { "$ref": "#/$defs/motorSim_simMotorAxis" } ] }, "title": "Entities", "type": "array" } }, "required": [ "ioc_name", "description", "entities" ], "title": "NewIOC", "type": "object" }
This results in the overall generated file structure:
Commands#
The ibek commands to progress through the file sequence above are as follows
num |
Name |
Command |
---|---|---|
1 |
|
|
2 |
|
Hand crafted by the container developer. Held in the container. |
3 |
|
|
4 |
|
Hand crafted at IOC instance design time |
5 |
IOC startup script |
|