NDPluginFile saves the NDArray data from a callback to a disk file.
NDPluginFile inherits from NDPluginDriver. This plugin currently saves data in the netCDF file format, which is a portable self-describing binary file format supported by UniData at UCAR (University Corporation for Atmospheric Research). Additional file formats, such as TIFF and HDF may be supported in the future.
The NDArray callback data can be written to disk in 1 of 3 modes:
The NDPluginFile public interface is defined in NDPluginFile.h as follows:
/* Note that the file format enum must agree with the mbbo/mbbi records in the NDFile.template file */
typedef enum {
NDFileFormatNetCDF,
} NDPluginFileFormat_t;
typedef enum {
NDPluginFileModeSingle,
NDPluginFileModeCapture,
NDPluginFileModeStream
} NDPluginFileMode_t;
...
class NDPluginFile : public NDPluginDriver {
public:
NDPluginFile(const char *portName, int queueSize, int blockingCallbacks,
const char *NDArrayPort, int NDArrayAddr);
/* These methods override those in the base class */
void processCallbacks(NDArray *pArray);
asynStatus writeInt32(asynUser *pasynUser, epicsInt32 value);
asynStatus writeNDArray(asynUser *pasynUser, void *genericPointer);
asynStatus drvUserCreate(asynUser *pasynUser, const char *drvInfo,
const char **pptypeName, size_t *psize);
...
}
NDPluginFile also supports all of the file saving parameters defined in ADStdDriverParams.h described above, e.g.ADFilePath, ADFileName, etc. Thus, the same interface that is used for saving files directly in a driver are used for this plugin.
The NDPluginFile plugin is created with the following command, either from C/C++ or from the EPICS IOC shell.
drvNDFileConfigure(const char *portName, int queueSize, int blockingCallbacks,
const char *NDArrayPort, int NDArrayAddr)
| Argument | Description |
|---|---|
portName |
The name of the asyn port for this plugin. |
queueSize |
The maximum number of NDArray objects that can be queued for processing. Passed to the NDPluginDriver base class constructor. |
blockingCallbacks |
Flag controlling whether callbacks block. Passed to the NDPluginDriver base class constructor. |
NDArrayPort |
The name of the asyn port of the driver that will provide the NDArray data. Passed to the NDPluginDriver base class constructor. |
NDArrayAddr |
The asyn addr of the asyn port of the driver that will provide the NDArray data. Passed to the NDPluginDriver base class constructor. |
The following is the MEDM screen that provides access to the parameters in NDPluginDriver.h and NDPluginFile.h through records in NDPluginBase.template and NDFile.template. This is the MEDM screen that is used to control the saving of images to disk for drivers that do not support saving files to disk themselves.
