68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/*
|
|
* Copyright information and license terms for this software can be
|
|
* found in the file LICENSE that is included with the distribution
|
|
*/
|
|
|
|
/**
|
|
* @author mrk
|
|
* @date 2013.07.24
|
|
*/
|
|
|
|
|
|
/* Author: Marty Kraimer */
|
|
|
|
#include <epicsThread.h>
|
|
#include <iocsh.h>
|
|
#include <pv/event.h>
|
|
#include <pv/pvAccess.h>
|
|
#include <pv/serverContext.h>
|
|
#include <pv/pvData.h>
|
|
#include <pv/pvTimeStamp.h>
|
|
#include <pv/rpcService.h>
|
|
|
|
// The following must be the last include for code pvDatabase uses
|
|
#include <epicsExport.h>
|
|
#define epicsExportSharedSymbols
|
|
#include "pv/pvStructureCopy.h"
|
|
#include "pv/pvDatabase.h"
|
|
#include "pv/processRecord.h"
|
|
|
|
|
|
using namespace epics::pvData;
|
|
using namespace epics::pvAccess;
|
|
using namespace epics::pvDatabase;
|
|
using namespace std;
|
|
|
|
static const iocshArg testArg0 = { "recordName", iocshArgString };
|
|
static const iocshArg testArg1 = { "delay", iocshArgDouble };
|
|
static const iocshArg *testArgs[] = {
|
|
&testArg0,&testArg1};
|
|
|
|
static const iocshFuncDef processRecordFuncDef = {"processRecordCreate", 2,testArgs};
|
|
|
|
static void processRecordCallFunc(const iocshArgBuf *args)
|
|
{
|
|
char *recordName = args[0].sval;
|
|
if(!recordName) {
|
|
throw std::runtime_error("processRecordCreate invalid number of arguments");
|
|
}
|
|
double delay = args[1].dval;
|
|
if(delay<0.0) delay = 1.0;
|
|
ProcessRecordPtr record = ProcessRecord::create(recordName,delay);
|
|
bool result = PVDatabase::getMaster()->addRecord(record);
|
|
if(!result) cout << "recordname" << " not added" << endl;
|
|
}
|
|
|
|
static void processRecordRegister(void)
|
|
{
|
|
static int firstTime = 1;
|
|
if (firstTime) {
|
|
firstTime = 0;
|
|
iocshRegister(&processRecordFuncDef, processRecordCallFunc);
|
|
}
|
|
}
|
|
|
|
extern "C" {
|
|
epicsExportRegistrar(processRecordRegister);
|
|
}
|