With this, records can be configured to have a lower alarm severity when they are undefined. Sets initial severity at iocInit too.
393 lines
11 KiB
C
393 lines
11 KiB
C
/*************************************************************************\
|
||
* Copyright (c) 2008 UChicago Argonne LLC, as Operator of Argonne
|
||
* National Laboratory.
|
||
* Copyright (c) 2002 The Regents of the University of California, as
|
||
* Operator of Los Alamos National Laboratory.
|
||
* EPICS BASE is distributed subject to a Software License Agreement found
|
||
* in file LICENSE that is included with this distribution.
|
||
\*************************************************************************/
|
||
|
||
/* $Revision-Id$ */
|
||
/*
|
||
* Author: Janet Anderson
|
||
* Date: 9/23/91
|
||
*/
|
||
#include <stddef.h>
|
||
#include <stdlib.h>
|
||
#include <stdarg.h>
|
||
#include <stdio.h>
|
||
#include <string.h>
|
||
|
||
#include "dbDefs.h"
|
||
#include "epicsPrint.h"
|
||
#include "alarm.h"
|
||
#include "dbAccess.h"
|
||
#include "dbEvent.h"
|
||
#include "dbFldTypes.h"
|
||
#include "devSup.h"
|
||
#include "errMdef.h"
|
||
#include "recSup.h"
|
||
#include "recGbl.h"
|
||
#include "menuYesNo.h"
|
||
#define GEN_SIZE_OFFSET
|
||
#include "longoutRecord.h"
|
||
#undef GEN_SIZE_OFFSET
|
||
#include "menuIvoa.h"
|
||
#include "menuOmsl.h"
|
||
#include "epicsExport.h"
|
||
|
||
/* Create RSET - Record Support Entry Table*/
|
||
#define report NULL
|
||
#define initialize NULL
|
||
static long init_record(longoutRecord *, int);
|
||
static long process(longoutRecord *);
|
||
#define special NULL
|
||
#define get_value NULL
|
||
#define cvt_dbaddr NULL
|
||
#define get_array_info NULL
|
||
#define put_array_info NULL
|
||
static long get_units(DBADDR *, char *);
|
||
#define get_precision NULL
|
||
#define get_enum_str NULL
|
||
#define get_enum_strs NULL
|
||
#define put_enum_str NULL
|
||
static long get_graphic_double(DBADDR *, struct dbr_grDouble *);
|
||
static long get_control_double(DBADDR *, struct dbr_ctrlDouble *);
|
||
static long get_alarm_double(DBADDR *, struct dbr_alDouble *);
|
||
|
||
rset longoutRSET={
|
||
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,longoutRSET);
|
||
|
||
|
||
struct longoutdset { /* longout input dset */
|
||
long number;
|
||
DEVSUPFUN dev_report;
|
||
DEVSUPFUN init;
|
||
DEVSUPFUN init_record; /*returns: (-1,0)=>(failure,success)*/
|
||
DEVSUPFUN get_ioint_info;
|
||
DEVSUPFUN write_longout;/*(-1,0)=>(failure,success*/
|
||
};
|
||
static void checkAlarms(longoutRecord *prec);
|
||
static void monitor(longoutRecord *prec);
|
||
static long writeValue(longoutRecord *prec);
|
||
static void convert(longoutRecord *prec, epicsInt32 value);
|
||
|
||
|
||
static long init_record(longoutRecord *prec, int pass)
|
||
{
|
||
struct longoutdset *pdset;
|
||
long status=0;
|
||
|
||
if (pass==0) return(0);
|
||
if (prec->siml.type == CONSTANT) {
|
||
recGblInitConstantLink(&prec->siml,DBF_USHORT,&prec->simm);
|
||
}
|
||
if(!(pdset = (struct longoutdset *)(prec->dset))) {
|
||
recGblRecordError(S_dev_noDSET,(void *)prec,"longout: init_record");
|
||
return(S_dev_noDSET);
|
||
}
|
||
/* must have write_longout functions defined */
|
||
if( (pdset->number < 5) || (pdset->write_longout == NULL) ) {
|
||
recGblRecordError(S_dev_missingSup,(void *)prec,"longout: init_record");
|
||
return(S_dev_missingSup);
|
||
}
|
||
if (prec->dol.type == CONSTANT) {
|
||
if(recGblInitConstantLink(&prec->dol,DBF_LONG,&prec->val))
|
||
prec->udf=FALSE;
|
||
}
|
||
if( pdset->init_record ) {
|
||
if((status=(*pdset->init_record)(prec))) return(status);
|
||
}
|
||
prec->mlst = prec->val;
|
||
prec->alst = prec->val;
|
||
prec->lalm = prec->val;
|
||
return(0);
|
||
}
|
||
|
||
static long process(longoutRecord *prec)
|
||
{
|
||
struct longoutdset *pdset = (struct longoutdset *)(prec->dset);
|
||
long status=0;
|
||
epicsInt32 value;
|
||
unsigned char pact=prec->pact;
|
||
|
||
if( (pdset==NULL) || (pdset->write_longout==NULL) ) {
|
||
prec->pact=TRUE;
|
||
recGblRecordError(S_dev_missingSup,(void *)prec,"write_longout");
|
||
return(S_dev_missingSup);
|
||
}
|
||
if (!prec->pact) {
|
||
if((prec->dol.type != CONSTANT)
|
||
&& (prec->omsl == menuOmslclosed_loop)) {
|
||
status = dbGetLink(&(prec->dol),DBR_LONG,
|
||
&value,0,0);
|
||
if (prec->dol.type!=CONSTANT && RTN_SUCCESS(status))
|
||
prec->udf=FALSE;
|
||
}
|
||
else {
|
||
value = prec->val;
|
||
}
|
||
if (!status) convert(prec,value);
|
||
}
|
||
|
||
/* check for alarms */
|
||
checkAlarms(prec);
|
||
|
||
if (prec->nsev < INVALID_ALARM )
|
||
status=writeValue(prec); /* write the new value */
|
||
else {
|
||
switch (prec->ivoa) {
|
||
case (menuIvoaContinue_normally) :
|
||
status=writeValue(prec); /* write the new value */
|
||
break;
|
||
case (menuIvoaDon_t_drive_outputs) :
|
||
break;
|
||
case (menuIvoaSet_output_to_IVOV) :
|
||
if(prec->pact == FALSE){
|
||
prec->val=prec->ivov;
|
||
}
|
||
status=writeValue(prec); /* write the new value */
|
||
break;
|
||
default :
|
||
status=-1;
|
||
recGblRecordError(S_db_badField,(void *)prec,
|
||
"longout:process Illegal IVOA field");
|
||
}
|
||
}
|
||
|
||
/* check if device support set pact */
|
||
if ( !pact && prec->pact ) return(0);
|
||
prec->pact = TRUE;
|
||
|
||
recGblGetTimeStamp(prec);
|
||
|
||
/* check event list */
|
||
monitor(prec);
|
||
|
||
/* process the forward scan link record */
|
||
recGblFwdLink(prec);
|
||
|
||
prec->pact=FALSE;
|
||
return(status);
|
||
}
|
||
|
||
#define indexof(field) longoutRecord##field
|
||
|
||
static long get_units(DBADDR *paddr,char *units)
|
||
{
|
||
longoutRecord *prec=(longoutRecord *)paddr->precord;
|
||
|
||
if(paddr->pfldDes->field_type == DBF_LONG) {
|
||
strncpy(units,prec->egu,DB_UNITS_SIZE);
|
||
}
|
||
return(0);
|
||
}
|
||
|
||
static long get_graphic_double(DBADDR *paddr,struct dbr_grDouble *pgd)
|
||
{
|
||
longoutRecord *prec=(longoutRecord *)paddr->precord;
|
||
|
||
switch (dbGetFieldIndex(paddr)) {
|
||
case indexof(VAL):
|
||
case indexof(HIHI):
|
||
case indexof(HIGH):
|
||
case indexof(LOW):
|
||
case indexof(LOLO):
|
||
case indexof(LALM):
|
||
case indexof(ALST):
|
||
case indexof(MLST):
|
||
pgd->upper_disp_limit = prec->hopr;
|
||
pgd->lower_disp_limit = prec->lopr;
|
||
break;
|
||
default:
|
||
recGblGetGraphicDouble(paddr,pgd);
|
||
}
|
||
return(0);
|
||
}
|
||
|
||
static long get_control_double(DBADDR *paddr,struct dbr_ctrlDouble *pcd)
|
||
{
|
||
longoutRecord *prec=(longoutRecord *)paddr->precord;
|
||
|
||
switch (dbGetFieldIndex(paddr)) {
|
||
case indexof(VAL):
|
||
case indexof(HIHI):
|
||
case indexof(HIGH):
|
||
case indexof(LOW):
|
||
case indexof(LOLO):
|
||
case indexof(LALM):
|
||
case indexof(ALST):
|
||
case indexof(MLST):
|
||
/* do not change pre drvh/drvl behavior */
|
||
if(prec->drvh > prec->drvl) {
|
||
pcd->upper_ctrl_limit = prec->drvh;
|
||
pcd->lower_ctrl_limit = prec->drvl;
|
||
} else {
|
||
pcd->upper_ctrl_limit = prec->hopr;
|
||
pcd->lower_ctrl_limit = prec->lopr;
|
||
}
|
||
break;
|
||
default:
|
||
recGblGetControlDouble(paddr,pcd);
|
||
}
|
||
return(0);
|
||
}
|
||
|
||
static long get_alarm_double(DBADDR *paddr,struct dbr_alDouble *pad)
|
||
{
|
||
longoutRecord *prec=(longoutRecord *)paddr->precord;
|
||
|
||
if(dbGetFieldIndex(paddr) == indexof(VAL)) {
|
||
pad->upper_alarm_limit = prec->hihi;
|
||
pad->upper_warning_limit = prec->high;
|
||
pad->lower_warning_limit = prec->low;
|
||
pad->lower_alarm_limit = prec->lolo;
|
||
} else recGblGetAlarmDouble(paddr,pad);
|
||
return(0);
|
||
}
|
||
|
||
static void checkAlarms(longoutRecord *prec)
|
||
{
|
||
epicsInt32 val, hyst, lalm;
|
||
epicsInt32 alev;
|
||
epicsEnum16 asev;
|
||
|
||
if (prec->udf) {
|
||
recGblSetSevr(prec, UDF_ALARM, prec->udfs);
|
||
return;
|
||
}
|
||
|
||
val = prec->val;
|
||
hyst = prec->hyst;
|
||
lalm = prec->lalm;
|
||
|
||
/* alarm condition hihi */
|
||
asev = prec->hhsv;
|
||
alev = prec->hihi;
|
||
if (asev && (val >= alev || ((lalm == alev) && (val >= alev - hyst)))) {
|
||
if (recGblSetSevr(prec, HIHI_ALARM, asev))
|
||
prec->lalm = alev;
|
||
return;
|
||
}
|
||
|
||
/* alarm condition lolo */
|
||
asev = prec->llsv;
|
||
alev = prec->lolo;
|
||
if (asev && (val <= alev || ((lalm == alev) && (val <= alev + hyst)))) {
|
||
if (recGblSetSevr(prec, LOLO_ALARM, asev))
|
||
prec->lalm = alev;
|
||
return;
|
||
}
|
||
|
||
/* alarm condition high */
|
||
asev = prec->hsv;
|
||
alev = prec->high;
|
||
if (asev && (val >= alev || ((lalm == alev) && (val >= alev - hyst)))) {
|
||
if (recGblSetSevr(prec, HIGH_ALARM, asev))
|
||
prec->lalm = alev;
|
||
return;
|
||
}
|
||
|
||
/* alarm condition low */
|
||
asev = prec->lsv;
|
||
alev = prec->low;
|
||
if (asev && (val <= alev || ((lalm == alev) && (val <= alev + hyst)))) {
|
||
if (recGblSetSevr(prec, LOW_ALARM, asev))
|
||
prec->lalm = alev;
|
||
return;
|
||
}
|
||
|
||
/* we get here only if val is out of alarm by at least hyst */
|
||
prec->lalm = val;
|
||
return;
|
||
}
|
||
|
||
/* DELTA calculates the absolute difference between its arguments
|
||
* expressed as an unsigned 32-bit integer */
|
||
#define DELTA(last, val) \
|
||
((epicsUInt32) ((last) > (val) ? (last) - (val) : (val) - (last)))
|
||
|
||
static void monitor(longoutRecord *prec)
|
||
{
|
||
unsigned short monitor_mask = recGblResetAlarms(prec);
|
||
|
||
if (prec->mdel < 0 ||
|
||
DELTA(prec->mlst, prec->val) > (epicsUInt32) prec->mdel) {
|
||
/* post events for value change */
|
||
monitor_mask |= DBE_VALUE;
|
||
/* update last value monitored */
|
||
prec->mlst = prec->val;
|
||
}
|
||
|
||
if (prec->adel < 0 ||
|
||
DELTA(prec->alst, prec->val) > (epicsUInt32) prec->adel) {
|
||
/* post events for archive value change */
|
||
monitor_mask |= DBE_LOG;
|
||
/* update last archive value monitored */
|
||
prec->alst = prec->val;
|
||
}
|
||
|
||
/* send out monitors connected to the value field */
|
||
if (monitor_mask)
|
||
db_post_events(prec, &prec->val, monitor_mask);
|
||
}
|
||
|
||
static long writeValue(longoutRecord *prec)
|
||
{
|
||
long status;
|
||
struct longoutdset *pdset = (struct longoutdset *) (prec->dset);
|
||
|
||
if (prec->pact == TRUE){
|
||
status=(*pdset->write_longout)(prec);
|
||
return(status);
|
||
}
|
||
|
||
status=dbGetLink(&(prec->siml),DBR_USHORT,&(prec->simm),0,0);
|
||
if (!RTN_SUCCESS(status))
|
||
return(status);
|
||
|
||
if (prec->simm == menuYesNoNO){
|
||
status=(*pdset->write_longout)(prec);
|
||
return(status);
|
||
}
|
||
if (prec->simm == menuYesNoYES){
|
||
status=dbPutLink(&prec->siol,DBR_LONG,&prec->val,1);
|
||
} else {
|
||
status=-1;
|
||
recGblSetSevr(prec,SOFT_ALARM,INVALID_ALARM);
|
||
return(status);
|
||
}
|
||
recGblSetSevr(prec,SIMM_ALARM,prec->sims);
|
||
|
||
return(status);
|
||
}
|
||
|
||
static void convert(longoutRecord *prec, epicsInt32 value)
|
||
{
|
||
/* check drive limits */
|
||
if(prec->drvh > prec->drvl) {
|
||
if (value > prec->drvh) value = prec->drvh;
|
||
else if (value < prec->drvl) value = prec->drvl;
|
||
}
|
||
prec->val = value;
|
||
}
|