Files
pcas/src/gdd/dbMapper.h
Andrew Johnson fbda9f3280 RCS keyword updates for Bazaar
Replaced $Id$ and $Header$ keywords with $Revision-Id$
Deleted $Log$ keywords and any log messages
2010-10-05 14:27:37 -05:00

67 lines
2.1 KiB
C++

/*************************************************************************\
* Copyright (c) 2002 The University of Chicago, 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 Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
#ifndef DB_MAPPER_H
#define DB_MAPPER_H
/*
* Author: Jim Kowalkowski
* Date: 2/96
*
* $Revision-Id$
*
*/
#include "shareLib.h"
#include "aitTypes.h"
#include "gdd.h"
#include "smartGDDPointer.h"
#include "db_access.h"
#include "cadef.h"
class gddApplicationTypeTable;
// Function proto to convert from a db_struct to a gdd. The gdd will
// reference the data in the db_struct if the db_struct points to an
// array. The second argument is the number of elements if db_struct
// represents an array, or zero if the db_struct is a scalar.
typedef smartGDDPointer (*to_gdd)(void* db_struct, aitIndex element_count);
// Function proto to convert from a gdd to a dbr structure, returns the
// number of elements that the value field of db_struct points to if the
// gdd points to an array or -1 if the number of elements in the value
// field is not identical to element_count available in db_struct.
typedef int (*to_dbr)(void* db_struct, aitIndex element_count,
const gdd &, const gddEnumStringTable &enumStringTable);
struct gddDbrMapFuncTable {
to_gdd conv_gdd;
to_dbr conv_dbr;
};
typedef struct gddDbrMapFuncTable gddDbrMapFuncTable;
struct gddDbrToAitTable {
aitEnum type;
aitUint16 app;
const char* app_name;
};
typedef struct gddDbrToAitTable gddDbrToAitTable;
#define DBM_N_DBR_TYPES 39
epicsShareExtern gddDbrToAitTable gddDbrToAit[DBM_N_DBR_TYPES];
epicsShareExtern const int gddAitToDbr[aitConvertLast+1];
epicsShareExtern const gddDbrMapFuncTable gddMapDbr[DBM_N_DBR_TYPES];
epicsShareFunc void gddMakeMapDBR(gddApplicationTypeTable& tt);
epicsShareFunc void gddMakeMapDBR(gddApplicationTypeTable* tt);
#endif