Files
epics-base/src/std/rec/lsiRecord.c

288 lines
6.6 KiB
C

/*************************************************************************\
* Copyright (c) 2012 UChicago Argonne LLC, as Operator of Argonne
* National Laboratory.
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
/* Long String Input record type */
/*
* Author: Andrew Johnson
* Date: 2012-11-27
*/
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include "dbDefs.h"
#include "errlog.h"
#include "alarm.h"
#include "cantProceed.h"
#include "dbAccess.h"
#include "dbEvent.h"
#include "dbFldTypes.h"
#include "errMdef.h"
#include "menuPost.h"
#include "menuYesNo.h"
#include "recSup.h"
#include "recGbl.h"
#include "special.h"
#define GEN_SIZE_OFFSET
#include "lsiRecord.h"
#undef GEN_SIZE_OFFSET
#include "epicsExport.h"
static void monitor(lsiRecord *);
static long readValue(lsiRecord *);
static long init_record(struct dbCommon *pcommon, int pass)
{
struct lsiRecord *prec = (struct lsiRecord *)pcommon;
lsidset *pdset;
if (pass == 0) {
size_t sizv = prec->sizv;
if (sizv < 16) {
sizv = 16; /* Enforce a minimum size for the VAL field */
prec->sizv = sizv;
}
prec->val = callocMustSucceed(1, sizv, "lsi::init_record");
prec->len = 0;
prec->oval = callocMustSucceed(1, sizv, "lsi::init_record");
prec->olen = 0;
return 0;
}
dbLoadLink(&prec->siml, DBF_USHORT, &prec->simm);
pdset = (lsidset *) prec->dset;
if (!pdset) {
recGblRecordError(S_dev_noDSET, prec, "lsi: init_record");
return S_dev_noDSET;
}
/* must have a read_string function */
if (pdset->number < 5 || !pdset->read_string) {
recGblRecordError(S_dev_missingSup, prec, "lsi: init_record");
return S_dev_missingSup;
}
if (pdset->init_record) {
long status = pdset->init_record(prec);
if (status)
return status;
}
if (prec->len) {
strcpy(prec->oval, prec->val);
prec->olen = prec->len;
prec->udf = FALSE;
}
return 0;
}
static long process(struct dbCommon *pcommon)
{
struct lsiRecord *prec = (struct lsiRecord *)pcommon;
int pact = prec->pact;
lsidset *pdset = (lsidset *) prec->dset;
long status = 0;
if (!pdset || !pdset->read_string) {
prec->pact = TRUE;
recGblRecordError(S_dev_missingSup, prec, "lsi: read_string");
return S_dev_missingSup;
}
status = readValue(prec); /* read the new value */
if (!pact && prec->pact)
return 0;
prec->pact = TRUE;
recGblGetTimeStamp(prec);
monitor(prec);
/* Wrap up */
recGblFwdLink(prec);
prec->pact = FALSE;
return status;
}
static long cvt_dbaddr(DBADDR *paddr)
{
lsiRecord *prec = (lsiRecord *) paddr->precord;
int fieldIndex = dbGetFieldIndex(paddr);
if (fieldIndex == lsiRecordVAL) {
paddr->pfield = prec->val;
paddr->special = SPC_MOD;
}
else if (fieldIndex == lsiRecordOVAL) {
paddr->pfield = prec->oval;
paddr->special = SPC_NOMOD;
}
else {
errlogPrintf("lsiRecord::cvt_dbaddr called for %s.%s\n",
prec->name, paddr->pfldDes->name);
return -1;
}
paddr->no_elements = 1;
paddr->field_type = DBF_STRING;
paddr->dbr_field_type = DBF_STRING;
paddr->field_size = prec->sizv;
return 0;
}
static long get_array_info(DBADDR *paddr, long *no_elements, long *offset)
{
lsiRecord *prec = (lsiRecord *) paddr->precord;
int fieldIndex = dbGetFieldIndex(paddr);
if (fieldIndex == lsiRecordVAL)
*no_elements = prec->len;
else if (fieldIndex == lsiRecordOVAL)
*no_elements = prec->olen;
else
return -1;
*offset = 0;
return 0;
}
static long put_array_info(DBADDR *paddr, long nNew)
{
lsiRecord *prec = (lsiRecord *) paddr->precord;
if (nNew >= prec->sizv)
nNew = prec->sizv - 1; /* truncated string */
if (paddr->field_type == DBF_CHAR)
prec->val[nNew] = 0; /* ensure data is terminated */
return 0;
}
static long special(DBADDR *paddr, int after)
{
lsiRecord *prec = (lsiRecord *) paddr->precord;
if (!after)
return 0;
/* We set prec->len here and not in put_array_info()
* because that does not get called if the put was
* done using a DBR_STRING type.
*/
prec->len = strlen(prec->val) + 1;
db_post_events(prec, &prec->len, DBE_VALUE | DBE_LOG);
return 0;
}
static void monitor(lsiRecord *prec)
{
epicsUInt16 events = recGblResetAlarms(prec);
if (prec->len != prec->olen ||
memcmp(prec->oval, prec->val, prec->len)) {
events |= DBE_VALUE | DBE_LOG;
memcpy(prec->oval, prec->val, prec->len);
}
if (prec->len != prec->olen) {
prec->olen = prec->len;
db_post_events(prec, &prec->len, DBE_VALUE | DBE_LOG);
}
if (prec->mpst == menuPost_Always)
events |= DBE_VALUE;
if (prec->apst == menuPost_Always)
events |= DBE_LOG;
if (events)
db_post_events(prec, prec->val, events);
}
static long readValue(lsiRecord *prec)
{
long status;
lsidset *pdset = (lsidset *) prec->dset;
if (prec->pact)
goto read;
status = dbGetLink(&prec->siml, DBR_USHORT, &prec->simm, 0, 0);
if (status)
return status;
switch (prec->simm) {
case menuYesNoNO:
read:
status = pdset->read_string(prec);
break;
case menuYesNoYES:
recGblSetSevr(prec, SIMM_ALARM, prec->sims);
status = dbGetLinkLS(&prec->siol, prec->val, prec->sizv, &prec->len);
break;
default:
recGblSetSevr(prec, SOFT_ALARM, INVALID_ALARM);
status = -1;
}
if (!status)
prec->udf = FALSE;
return status;
}
/* Create Record Support Entry Table*/
#define report NULL
#define initialize NULL
/* init_record */
/* process */
/* special */
#define get_value NULL
/* cvt_dbaddr */
/* get_array_info */
/* put_array_info */
#define get_units NULL
#define get_precision NULL
#define get_enum_str NULL
#define get_enum_strs NULL
#define put_enum_str NULL
#define get_graphic_double NULL
#define get_control_double NULL
#define get_alarm_double NULL
rset lsiRSET = {
RSETNUMBER,
report,
initialize,
init_record,
process,
special,
get_value,
cvt_dbaddr,
get_array_info,
put_array_info,
get_units,
get_precision,
get_enum_str,
get_enum_strs,
put_enum_str,
get_graphic_double,
get_control_double,
get_alarm_double
};
epicsExportAddress(rset, lsiRSET);