Skip to content

Commit

Permalink
fix regex for defs names
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Sep 27, 2023
1 parent b71cfe6 commit d19f3e1
Show file tree
Hide file tree
Showing 8 changed files with 99 additions and 99 deletions.
2 changes: 1 addition & 1 deletion ADAravis/ADAravis.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: ADAravis

defs:

- name: ADAravis.aravisCamera
- name: aravisCamera
description: |-
Creates a aravisCamera camera areaDetector driver
args:
Expand Down
54 changes: 27 additions & 27 deletions ADCore/ADCore.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: ADCore

defs:

- name: ADCore.NDFileNexus
- name: NDFileNexus
description: |-
This plugin can compress NDArrays to Nexus and write them to file
args:
Expand Down Expand Up @@ -98,7 +98,7 @@ defs:
# NDFileNexusConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileNexusConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDFFT
- name: NDFFT
description: |-
This plugin is used to calculate the FFT of a time series
args:
Expand Down Expand Up @@ -227,7 +227,7 @@ defs:
# NDFFTConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDFFTConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, {{PRIORITY}}, {{STACKSIZE}}, {{MAX_THREADS}})
- name: ADCore.NDAttrPlot
- name: NDAttrPlot
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -362,7 +362,7 @@ defs:
NDAttrPlotConfig("{{PORT}}", {{N_ATTRS}}, {{N_CACHE}},
# TODO - MISSING ARGS: N_ATTRS

- name: ADCore.NDOverlay
- name: NDOverlay
description: |-
This plugin writes overlays on the array, like cursors and boxes
args:
Expand Down Expand Up @@ -536,7 +536,7 @@ defs:
NDOverlayConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, {{NOverlays}}, 0, 0, 0, 0, {{MAX_THREADS}})
# TODO - MISSING ARGS: NOverlays

- name: ADCore.NDColorConvert
- name: NDColorConvert
description: |-
This plugin converts arrays from one colour type to another, e.g. Bayer -> RGB1
args:
Expand Down Expand Up @@ -636,7 +636,7 @@ defs:
# NDColorConvertConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDColorConvertConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, 0, 0, {{MAX_THREADS}})
- name: ADCore.NDFileHDF5
- name: NDFileHDF5
description: |-
This plugin can compress NDArrays to HDF5 and write them to file
args:
Expand Down Expand Up @@ -737,7 +737,7 @@ defs:
# NDFileHDF5Configure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileHDF5Configure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDStdArrays
- name: NDStdArrays
description: |-
This plugin provides a waveform record that can display the NDArrays
produced by its NDARRAY_PORT
Expand Down Expand Up @@ -867,7 +867,7 @@ defs:
# NDStdArraysConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDStdArraysConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, 0, 0, {{MAX_THREADS}})
- name: ADCore._NDCircularBuff
- name: _NDCircularBuff
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -960,7 +960,7 @@ defs:
TIMEOUT:
PORT:

- name: ADCore.NDFileMagick
- name: NDFileMagick
description: |-
This plugin can compress NDArrays to a range of formats supported by
graphics magick and write them to file
Expand Down Expand Up @@ -1055,7 +1055,7 @@ defs:
# NDFileMagickConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileMagickConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDCircularBuff
- name: NDCircularBuff
description: |-
This plugin provides a pre and post external trigger frame capture buffer
args:
Expand Down Expand Up @@ -1169,7 +1169,7 @@ defs:
# NDCircularBuffConfigure(portName, queueSize, blockingCallbacks,
NDCircularBuffConfigure(
- name: ADCore.NDPosPlugin
- name: NDPosPlugin
description: |-
This plugin attaches position information to NDArrays
args:
Expand Down Expand Up @@ -1273,7 +1273,7 @@ defs:
# NDPosPluginConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize)
NDPosPluginConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, {{PRIORITY}}, {{STACKSIZE}})
- name: ADCore.NDCodec
- name: NDCodec
description: |-
This plugin can compress or decompress NDArrays
args:
Expand Down Expand Up @@ -1373,7 +1373,7 @@ defs:
# NDCodecConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDCodecConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, 0, 0, {{MAX_THREADS}})
- name: ADCore.NDGather
- name: NDGather
description: |-
This plugin is used to gather NDArrays from multiple upstream plugins and merge them into a single stream
args:
Expand Down Expand Up @@ -1475,7 +1475,7 @@ defs:
# NDGatherConfigure(portName, queueSize, blockingCallbacks, maxPorts)
NDGatherConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{MAX_PORTS}}")
- name: ADCore.NDROI
- name: NDROI
description: |-
This plugin selects a region of interest and optionally scales it to
fit in a particular data type
Expand Down Expand Up @@ -1576,7 +1576,7 @@ defs:
# NDROIConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDROIConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, 0, 0, {{MAX_THREADS}})
- name: ADCore.NDAttribute
- name: NDAttribute
description: |-
This plugin displays NDArray attributes
args:
Expand Down Expand Up @@ -1706,7 +1706,7 @@ defs:
dbLoadRecords("$(ADCORE)/db/NDTimeSeries.template","P={{P}},R={{R_TS}},PORT={{PORT}}_TS,ADDR=0,TIMEOUT={{TIMEOUT}},NDARRAY_PORT={{PORT}},NDARRAY_ADDR=1,NCHANS={{MAX_ATTRIBUTES}},ENABLED=1")
# TODO - MISSING ARGS: R_TS

- name: ADCore.NDStats
- name: NDStats
description: |-
This plugin calculates statistics like X and Y profile, centroid, and plots a histogram of binned pixels
args:
Expand Down Expand Up @@ -1844,7 +1844,7 @@ defs:
# Load time series records
dbLoadRecords("$(ADCORE)/db/NDTimeSeries.template", "P={{P}},R={{R}}, PORT={{PORT}} ,ADDR={{ADDR}},TIMEOUT={{TIMEOUT}},NDARRAY_PORT={{NDARRAY_PORT}},NDARRAY_ADDR={{NDARRAY_ADDR}},NCHANS={{NCHANS}},ENABLED={{ENABLED}}")
- name: ADCore.NDTimeSeries
- name: NDTimeSeries
description: |-
This plugin creates time series arrays from callback data
args:
Expand Down Expand Up @@ -1981,7 +1981,7 @@ defs:
# NDTimeSeriesConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxSignals, maxBuffers, maxMemory, priority, stackSize)
NDTimeSeriesConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, {{NSIGNALS}}, 0, 0, {{PRIORITY}}, {{STACKSIZE}})
- name: ADCore.NDAttributes
- name: NDAttributes
description: |-
Add an attribute to the NDAttributes file for a particular ADDriver or
NDPlugin, and associate it with the NDAttributes file
Expand Down Expand Up @@ -2055,7 +2055,7 @@ defs:
- value: |
dbpf %s%sNDAttributesFile, %s/%s.xml
- name: ADCore.NDProcess
- name: NDProcess
description: |-
This plugin does image processing like flat field correction, background
subtraction, and recursive filtering
Expand Down Expand Up @@ -2150,7 +2150,7 @@ defs:
# NDProcessConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDProcessConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDFileTIFF
- name: NDFileTIFF
description: |-
This plugin can compress NDArrays to TIFF and write them to file
args:
Expand Down Expand Up @@ -2244,7 +2244,7 @@ defs:
# NDFileTIFFConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileTIFFConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDGather8
- name: NDGather8
description: |-
This plugin is used to gather NDArrays from multiple upstream plugins and merge them into a single stream
args:
Expand Down Expand Up @@ -2355,7 +2355,7 @@ defs:
MAX_PORTS:
PORT:

- name: ADCore.NDROIStat
- name: NDROIStat
description: |-
This plugin calculates statistics of ROIs
args:
Expand Down Expand Up @@ -2476,7 +2476,7 @@ defs:
# NDROIStatConfigure(portName, queueSize, blockingCallbacks,
NDROIStatConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}},
- name: ADCore.NDFileNetCDF
- name: NDFileNetCDF
description: |-
This plugin can compress NDArrays to NetCDF and write them to file
args:
Expand Down Expand Up @@ -2570,7 +2570,7 @@ defs:
# NDFileNetCDFConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileNetCDFConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDPvaPlugin
- name: NDPvaPlugin
description: |-
This plugin makes NDArrays available through PVAccess
args:
Expand Down Expand Up @@ -2680,7 +2680,7 @@ defs:
NDPvaConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, {{PVNAME}}, 0, 0, {{PRIORITY}}, {{STACKSIZE}})
startPVAServer
- name: ADCore.NDTransform
- name: NDTransform
description: |-
This plugin selects a region of interest and optionally scales it to fit in a particular data type
args:
Expand Down Expand Up @@ -2780,7 +2780,7 @@ defs:
# NDTransformConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr, maxBuffers, maxMemory, priority, stackSize, maxThreads)
NDTransformConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}}, 0, 0, 0, 0, {{MAX_THREADS}})
- name: ADCore.NDFileJPEG
- name: NDFileJPEG
description: |-
This plugin can compress NDArrays to JPEG and write them to file
args:
Expand Down Expand Up @@ -2874,7 +2874,7 @@ defs:
# NDFileJPEGConfigure(portName, queueSize, blockingCallbacks, NDArrayPort, NDArrayAddr)
NDFileJPEGConfigure("{{PORT}}", {{QUEUE}}, {{BLOCK}}, "{{NDARRAY_PORT}}", {{NDARRAY_ADDR}})
- name: ADCore.NDScatter
- name: NDScatter
description: |-
This plugin is used to distribute processing of NDArrays to multiple downstream plugins
args:
Expand Down
10 changes: 5 additions & 5 deletions asyn/asyn.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: asyn

defs:

- name: asyn._AsynOctetInterface
- name: _AsynOctetInterface
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -105,7 +105,7 @@ defs:
asynOctetSetInputEos("%s", 0, %s)
asynOctetSetOutputEos("%s", 0, %s)
- name: asyn.AsynIP
- name: AsynIP
description: |-
Asyn IP Port
args:
Expand Down Expand Up @@ -206,7 +206,7 @@ defs:
asynOctetSetInputEos("%s", 0, %s)
asynOctetSetOutputEos("%s", 0, %s)
- name: asyn.AsynIPServer
- name: AsynIPServer
description: |-
Asyn IP Server Port
args:
Expand Down Expand Up @@ -307,7 +307,7 @@ defs:
asynOctetSetInputEos("%s", 0, %s)
asynOctetSetOutputEos("%s", 0, %s)
- name: asyn.Vxi11
- name: Vxi11
description: |-
Asyn vxi11 Port
args:
Expand Down Expand Up @@ -358,7 +358,7 @@ defs:
- value: |
vxi11Configure("%s", "%s", %d, %s, "%s", %d, %d)
- name: asyn.AsynSerial
- name: AsynSerial
description: |-
Asyn Serial Port
args:
Expand Down
2 changes: 1 addition & 1 deletion autosave/autosave.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: autosave

defs:

- name: autosave.Autosave
- name: Autosave
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down
10 changes: 5 additions & 5 deletions iocStats/iocStats.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: devIocStats

defs:

- name: devIocStats.devIocStatsHelper
- name: devIocStatsHelper
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -61,7 +61,7 @@ defs:
args:
IOC:

- name: devIocStats.iocAdminVxWorks
- name: iocAdminVxWorks
description: |-
Create some records for reading IOC statistics and details.
args:
Expand All @@ -76,7 +76,7 @@ defs:
args:
IOC:

- name: devIocStats.iocAdminScanMon
- name: iocAdminScanMon
description: |-
Create some records for reading IOC statistics and details.
args:
Expand All @@ -91,7 +91,7 @@ defs:
args:
IOC:

- name: devIocStats.iocGui
- name: iocGui
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -120,7 +120,7 @@ defs:
name:
EDM_FILE:

- name: devIocStats.iocAdminSoft
- name: iocAdminSoft
description: |-
Create some records for reading IOC statistics and details.
args:
Expand Down
8 changes: 4 additions & 4 deletions motor/motor.ibek.support.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module: motor

defs:

- name: motor.common.motorUtil
- name: motorUtil
description: |-
TODO:ADD DESCRIPTION
args:
Expand All @@ -23,7 +23,7 @@ defs:
- value: |
motorUtilInit("{{P}}")
- name: motor.common.basic_asyn_motor
- name: basic_asyn_motor
description: |-
Basic template, including motor record and associated tags
args:
Expand Down Expand Up @@ -358,7 +358,7 @@ defs:
gda_desc:
HOMEVISSTR:

- name: motor.common.softMotorForPiezo
- name: softMotorForPiezo
description: |-
TODO:ADD DESCRIPTION
args:
Expand Down Expand Up @@ -460,7 +460,7 @@ defs:
RDBD:
DESC:

- name: motor.MotorSim.MotorSim
- name: MotorSim
description: |-
Simulated controller Device - instantiate one per controller '''
args:
Expand Down
Loading

0 comments on commit d19f3e1

Please sign in to comment.