* master: (226 commits) ioc/db: testdbGetFieldEqual() detect zero size Cleanup in asLib Allow whitespace before comments in AS config files Supress MS warning C4251 Add a plan to std/filters/test/syncTest.c Fix dbUnitTest.c avoid void* += Fix and test for macLib losing error status update notes libCom/test: ipAddrToAsciiTest skip cleanup unless valgrind is possible libCom/test: add ipAddrToAsciiTest to testHarness db/test: dbPutGetTest check dbGet() of long string field db: dbGet() ensure long string nil and actual string length db/test: dbPutGetTest check for dbGet() attribute crash db: fix dbGet() for attributes as long string db/test: dbPutGetTest add test for lp:1678494 db: fix dbGet() of link fields as DBF_CHAR dbUnitTest: add testdbGetArrFieldEqual() db/test: add dbPutGetTest Update release notes as per Michael's review comment ... Conflicts: src/ioc/db/dbLink.c src/ioc/db/test/Makefile src/std/dev/devSoSoftCallback.c src/std/rec/boRecord.c src/std/rec/dfanoutRecord.c src/std/rec/longinRecord.c src/std/rec/longoutRecord.c
46 lines
1.2 KiB
C
46 lines
1.2 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.
|
|
\*************************************************************************/
|
|
/*
|
|
* Author: Andrew Johnson
|
|
* Date: 28 Sept 2012
|
|
*/
|
|
|
|
#include "alarm.h"
|
|
#include "dbAccess.h"
|
|
#include "recGbl.h"
|
|
#include "printfRecord.h"
|
|
#include "epicsExport.h"
|
|
|
|
static long write_string(printfRecord *prec)
|
|
{
|
|
struct link *plink = &prec->out;
|
|
int dtyp = dbGetLinkDBFtype(plink);
|
|
long len = prec->len;
|
|
long status;
|
|
|
|
if (prec->pact || dtyp < 0)
|
|
return 0;
|
|
|
|
if (dtyp != DBR_CHAR && dtyp != DBF_UCHAR) {
|
|
dtyp = DBR_STRING;
|
|
len = 1;
|
|
}
|
|
|
|
status = dbPutLinkAsync(plink, dtyp, prec->val, len);
|
|
if (!status)
|
|
prec->pact = TRUE;
|
|
else if (status == S_db_noLSET)
|
|
status = dbPutLink(plink, dtyp, prec->val, len);
|
|
|
|
return status;
|
|
}
|
|
|
|
printfdset devPrintfSoftCallback = {
|
|
5, NULL, NULL, NULL, NULL, write_string
|
|
};
|
|
epicsExportAddress(dset, devPrintfSoftCallback);
|