pvCopy.h now pvStructureCopy.h; copy name space now epics::pvCopy
This commit is contained in:
@ -15,10 +15,10 @@ INC += pv/pvDatabase.h
|
|||||||
INC += pv/traceRecord.h
|
INC += pv/traceRecord.h
|
||||||
INC += pv/removeRecord.h
|
INC += pv/removeRecord.h
|
||||||
|
|
||||||
|
include $(PVDATABASE_SRC)/copy/Makefile
|
||||||
include $(PVDATABASE_SRC)/database/Makefile
|
include $(PVDATABASE_SRC)/database/Makefile
|
||||||
include $(PVDATABASE_SRC)/pvAccess/Makefile
|
include $(PVDATABASE_SRC)/pvAccess/Makefile
|
||||||
include $(PVDATABASE_SRC)/special/Makefile
|
include $(PVDATABASE_SRC)/special/Makefile
|
||||||
include $(PVDATABASE_SRC)/copy/Makefile
|
|
||||||
|
|
||||||
pvDatabase_LIBS += $(EPICS_BASE_PVA_CORE_LIBS)
|
pvDatabase_LIBS += $(EPICS_BASE_PVA_CORE_LIBS)
|
||||||
pvDatabase_LIBS += $(EPICS_BASE_IOC_LIBS)
|
pvDatabase_LIBS += $(EPICS_BASE_IOC_LIBS)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
SRC_DIRS += $(PVDATABASE_SRC)/copy
|
SRC_DIRS += $(PVDATABASE_SRC)/copy
|
||||||
|
|
||||||
INC += pv/pvCopy.h
|
INC += pv/pvStructureCopy.h
|
||||||
INC += pv/pvPlugin.h
|
INC += pv/pvPlugin.h
|
||||||
INC += pv/pvArrayPlugin.h
|
INC += pv/pvArrayPlugin.h
|
||||||
INC += pv/pvDeadbandPlugin.h
|
INC += pv/pvDeadbandPlugin.h
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <pv/pvData.h>
|
#include <pv/pvData.h>
|
||||||
#include <pv/pvPlugin.h>
|
#include <pv/pvPlugin.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
class PVArrayPlugin;
|
class PVArrayPlugin;
|
||||||
class PVArrayFilter;
|
class PVArrayFilter;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <pv/pvData.h>
|
#include <pv/pvData.h>
|
||||||
#include <pv/pvPlugin.h>
|
#include <pv/pvPlugin.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
class PVDeadbandPlugin;
|
class PVDeadbandPlugin;
|
||||||
class PVDeadbandFilter;
|
class PVDeadbandFilter;
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <pv/lock.h>
|
#include <pv/lock.h>
|
||||||
#include <pv/pvCopy.h>
|
#include <pv/pvStructureCopy.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
class PVPlugin;
|
class PVPlugin;
|
||||||
class PVFilter;
|
class PVFilter;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* pvCopy.h */
|
/* pvStructureCopy.h */
|
||||||
/*
|
/*
|
||||||
* Copyright information and license terms for this software can be
|
* Copyright information and license terms for this software can be
|
||||||
* found in the file LICENSE that is included with the distribution
|
* found in the file LICENSE that is included with the distribution
|
||||||
@ -7,8 +7,8 @@
|
|||||||
* @author Marty Kraimer
|
* @author Marty Kraimer
|
||||||
* @date 2013.04
|
* @date 2013.04
|
||||||
*/
|
*/
|
||||||
#ifndef PVCOPY_H
|
#ifndef PVSTRUCTURECOPY_H
|
||||||
#define PVCOPY_H
|
#define PVSTRUCTURECOPY_H
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
#include <pv/pvData.h>
|
#include <pv/pvData.h>
|
||||||
#include <pv/bitSet.h>
|
#include <pv/bitSet.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
class PVCopyTraverseMasterCallback;
|
class PVCopyTraverseMasterCallback;
|
||||||
typedef std::tr1::shared_ptr<PVCopyTraverseMasterCallback> PVCopyTraverseMasterCallbackPtr;
|
typedef std::tr1::shared_ptr<PVCopyTraverseMasterCallback> PVCopyTraverseMasterCallbackPtr;
|
||||||
@ -27,6 +27,11 @@ typedef std::tr1::shared_ptr<PVCopyTraverseMasterCallback> PVCopyTraverseMasterC
|
|||||||
* @brief Callback for traversing master structure
|
* @brief Callback for traversing master structure
|
||||||
*
|
*
|
||||||
* Must be implemented by code that creates pvCopy.
|
* Must be implemented by code that creates pvCopy.
|
||||||
|
*
|
||||||
|
* This was originally name pvCopy.h and implemented in pvDataCPP
|
||||||
|
* When it was moved to pvDatabaseCPP it was renamed to prevent conflicts with
|
||||||
|
* the version in pvDataCPP.
|
||||||
|
* Also the namespace was changed from epics::pvData to epics::pvCopy
|
||||||
*/
|
*/
|
||||||
class epicsShareClass PVCopyTraverseMasterCallback
|
class epicsShareClass PVCopyTraverseMasterCallback
|
||||||
{
|
{
|
||||||
@ -235,4 +240,4 @@ private:
|
|||||||
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
#endif /* PVCOPY_H */
|
#endif /* PVSTRUCTURECOPY_H */
|
@ -17,7 +17,7 @@
|
|||||||
#include <pv/pvPlugin.h>
|
#include <pv/pvPlugin.h>
|
||||||
#include <pv/pvTimeStamp.h>
|
#include <pv/pvTimeStamp.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
class PVTimestampPlugin;
|
class PVTimestampPlugin;
|
||||||
class PVTimestampFilter;
|
class PVTimestampFilter;
|
||||||
|
@ -19,7 +19,7 @@ using std::tr1::static_pointer_cast;
|
|||||||
using std::vector;
|
using std::vector;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
static ConvertPtr convert = getConvert();
|
static ConvertPtr convert = getConvert();
|
||||||
static std::string name("array");
|
static std::string name("array");
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include <pv/thread.h>
|
#include <pv/thread.h>
|
||||||
|
|
||||||
#define epicsExportSharedSymbols
|
#define epicsExportSharedSymbols
|
||||||
#include <pv/pvCopy.h>
|
#include <pv/pvStructureCopy.h>
|
||||||
#include <pv/pvArrayPlugin.h>
|
#include <pv/pvArrayPlugin.h>
|
||||||
#include <pv/pvTimestampPlugin.h>
|
#include <pv/pvTimestampPlugin.h>
|
||||||
#include <pv/pvDeadbandPlugin.h>
|
#include <pv/pvDeadbandPlugin.h>
|
||||||
@ -31,7 +31,7 @@ using std::endl;
|
|||||||
using std::vector;
|
using std::vector;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase {
|
namespace epics { namespace pvCopy {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience method for implementing dump.
|
* Convenience method for implementing dump.
|
||||||
|
@ -19,7 +19,7 @@ using std::tr1::static_pointer_cast;
|
|||||||
using std::vector;
|
using std::vector;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
static ConvertPtr convert = getConvert();
|
static ConvertPtr convert = getConvert();
|
||||||
static std::string name("deadband");
|
static std::string name("deadband");
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
typedef std::map<std::string,PVPluginPtr> PVPluginMap;
|
typedef std::map<std::string,PVPluginPtr> PVPluginMap;
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#define epicsExportSharedSymbols
|
#define epicsExportSharedSymbols
|
||||||
#include <pv/pvTimestampPlugin.h>
|
#include <pv/pvTimestampPlugin.h>
|
||||||
#include <pv/pvCopy.h>
|
#include <pv/pvStructureCopy.h>
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::size_t;
|
using std::size_t;
|
||||||
@ -19,7 +19,7 @@ using std::tr1::static_pointer_cast;
|
|||||||
using std::vector;
|
using std::vector;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase{
|
namespace epics { namespace pvCopy{
|
||||||
|
|
||||||
static ConvertPtr convert = getConvert();
|
static ConvertPtr convert = getConvert();
|
||||||
static std::string name("timestamp");
|
static std::string name("timestamp");
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
#include <epicsGuard.h>
|
#include <epicsGuard.h>
|
||||||
#include <epicsThread.h>
|
#include <epicsThread.h>
|
||||||
|
|
||||||
|
#include <pv/pvStructureCopy.h>
|
||||||
|
|
||||||
#define epicsExportSharedSymbols
|
#define epicsExportSharedSymbols
|
||||||
|
|
||||||
#include <pv/pvDatabase.h>
|
#include <pv/pvDatabase.h>
|
||||||
@ -18,6 +20,7 @@
|
|||||||
|
|
||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
|
using namespace epics::pvDatabase;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase {
|
namespace epics { namespace pvDatabase {
|
||||||
@ -236,7 +239,7 @@ bool PVRecord::addPVRecordClient(PVRecordClientPtr const & pvRecordClient)
|
|||||||
|
|
||||||
bool PVRecord::addListener(
|
bool PVRecord::addListener(
|
||||||
PVListenerPtr const & pvListener,
|
PVListenerPtr const & pvListener,
|
||||||
PVCopyPtr const & pvCopy)
|
epics::pvCopy::PVCopyPtr const & pvCopy)
|
||||||
{
|
{
|
||||||
if(traceLevel>1) {
|
if(traceLevel>1) {
|
||||||
cout << "PVRecord::addListener() " << recordName << endl;
|
cout << "PVRecord::addListener() " << recordName << endl;
|
||||||
@ -267,7 +270,7 @@ void PVRecord::nextMasterPVField(PVFieldPtr const & pvField)
|
|||||||
|
|
||||||
bool PVRecord::removeListener(
|
bool PVRecord::removeListener(
|
||||||
PVListenerPtr const & pvListener,
|
PVListenerPtr const & pvListener,
|
||||||
PVCopyPtr const & pvCopy)
|
epics::pvCopy::PVCopyPtr const & pvCopy)
|
||||||
{
|
{
|
||||||
if(traceLevel>1) {
|
if(traceLevel>1) {
|
||||||
cout << "PVRecord::removeListener() " << recordName << endl;
|
cout << "PVRecord::removeListener() " << recordName << endl;
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <shareLib.h>
|
#include <shareLib.h>
|
||||||
#include <pv/pvCopy.h>
|
#include <pv/pvStructureCopy.h>
|
||||||
#include <pv/pvDatabase.h>
|
#include <pv/pvDatabase.h>
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase {
|
namespace epics { namespace pvDatabase {
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include <pv/pvData.h>
|
#include <pv/pvData.h>
|
||||||
#include <pv/pvTimeStamp.h>
|
#include <pv/pvTimeStamp.h>
|
||||||
#include <pv/rpcService.h>
|
#include <pv/rpcService.h>
|
||||||
|
#include <pv/pvStructureCopy.h>
|
||||||
|
|
||||||
#ifdef pvdatabaseEpicsExportSharedSymbols
|
#ifdef pvdatabaseEpicsExportSharedSymbols
|
||||||
# define epicsExportSharedSymbols
|
# define epicsExportSharedSymbols
|
||||||
@ -24,8 +25,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <shareLib.h>
|
#include <shareLib.h>
|
||||||
#include <pv/pvCopy.h>
|
|
||||||
|
|
||||||
|
|
||||||
namespace epics { namespace pvDatabase {
|
namespace epics { namespace pvDatabase {
|
||||||
|
|
||||||
@ -65,7 +64,7 @@ typedef std::tr1::weak_ptr<PVDatabase> PVDatabaseWPtr;
|
|||||||
* @date 2012.11.20
|
* @date 2012.11.20
|
||||||
*/
|
*/
|
||||||
class epicsShareClass PVRecord :
|
class epicsShareClass PVRecord :
|
||||||
public PVCopyTraverseMasterCallback,
|
public epics::pvCopy::PVCopyTraverseMasterCallback,
|
||||||
public std::tr1::enable_shared_from_this<PVRecord>
|
public std::tr1::enable_shared_from_this<PVRecord>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -210,7 +209,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool addListener(
|
bool addListener(
|
||||||
PVListenerPtr const & pvListener,
|
PVListenerPtr const & pvListener,
|
||||||
PVCopyPtr const & pvCopy);
|
epics::pvCopy::PVCopyPtr const & pvCopy);
|
||||||
/**
|
/**
|
||||||
* @brief PVCopyTraverseMasterCallback method
|
* @brief PVCopyTraverseMasterCallback method
|
||||||
*
|
*
|
||||||
@ -226,7 +225,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool removeListener(
|
bool removeListener(
|
||||||
PVListenerPtr const & pvListener,
|
PVListenerPtr const & pvListener,
|
||||||
PVCopyPtr const & pvCopy);
|
epics::pvCopy::PVCopyPtr const & pvCopy);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvAccess;
|
using namespace epics::pvAccess;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using std::tr1::dynamic_pointer_cast;
|
using std::tr1::dynamic_pointer_cast;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvAccess;
|
using namespace epics::pvAccess;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using std::tr1::dynamic_pointer_cast;
|
using std::tr1::dynamic_pointer_cast;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvAccess;
|
using namespace epics::pvAccess;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
using std::endl;
|
using std::endl;
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include <pv/pvTimeStamp.h>
|
#include <pv/pvTimeStamp.h>
|
||||||
#include <pv/pvAlarm.h>
|
#include <pv/pvAlarm.h>
|
||||||
#include <pv/pvDatabase.h>
|
#include <pv/pvDatabase.h>
|
||||||
|
#include <pv/pvStructureCopy.h>
|
||||||
|
|
||||||
#ifdef listenerEpicsExportSharedSymbols
|
#ifdef listenerEpicsExportSharedSymbols
|
||||||
# define epicsExportSharedSymbols
|
# define epicsExportSharedSymbols
|
||||||
@ -87,7 +88,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
Listener(PVRecordPtr const & pvRecord)
|
Listener(PVRecordPtr const & pvRecord)
|
||||||
: pvCopy(
|
: pvCopy(
|
||||||
PVCopy::create(
|
epics::pvCopy::PVCopy::create(
|
||||||
getPVDataCreate()->createPVStructure(
|
getPVDataCreate()->createPVStructure(
|
||||||
pvRecord->getPVRecordStructure()->getPVStructure()),
|
pvRecord->getPVRecordStructure()->getPVStructure()),
|
||||||
CreateRequest::create()->createRequest(""),
|
CreateRequest::create()->createRequest(""),
|
||||||
@ -96,7 +97,7 @@ private:
|
|||||||
recordName(pvRecord->getRecordName())
|
recordName(pvRecord->getRecordName())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
PVCopyPtr pvCopy;
|
epics::pvCopy::PVCopyPtr pvCopy;
|
||||||
PVStructurePtr pvStructure;
|
PVStructurePtr pvStructure;
|
||||||
string recordName;
|
string recordName;
|
||||||
};
|
};
|
||||||
|
@ -37,6 +37,7 @@ using namespace std;
|
|||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvAccess;
|
using namespace epics::pvAccess;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using namespace epics::pvDatabase;
|
using namespace epics::pvDatabase;
|
||||||
|
|
||||||
static bool debug = false;
|
static bool debug = false;
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include <pv/standardField.h>
|
#include <pv/standardField.h>
|
||||||
#include <pv/standardPVField.h>
|
#include <pv/standardPVField.h>
|
||||||
#include <pv/pvData.h>
|
#include <pv/pvData.h>
|
||||||
#include <pv/pvCopy.h>
|
#include <pv/pvStructureCopy.h>
|
||||||
#define epicsExportSharedSymbols
|
#define epicsExportSharedSymbols
|
||||||
#include "powerSupply.h"
|
#include "powerSupply.h"
|
||||||
|
|
||||||
@ -37,6 +37,7 @@ using namespace std;
|
|||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvDatabase;
|
using namespace epics::pvDatabase;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
static bool debug = false;
|
static bool debug = false;
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
#include <pv/standardPVField.h>
|
#include <pv/standardPVField.h>
|
||||||
#include <pv/channelProviderLocal.h>
|
#include <pv/channelProviderLocal.h>
|
||||||
#include <pv/convert.h>
|
#include <pv/convert.h>
|
||||||
|
#include <pv/pvStructureCopy.h>
|
||||||
#define epicsExportSharedSymbols
|
#define epicsExportSharedSymbols
|
||||||
#include "powerSupply.h"
|
#include "powerSupply.h"
|
||||||
|
|
||||||
@ -37,6 +38,7 @@ using namespace std;
|
|||||||
using std::tr1::static_pointer_cast;
|
using std::tr1::static_pointer_cast;
|
||||||
using namespace epics::pvData;
|
using namespace epics::pvData;
|
||||||
using namespace epics::pvAccess;
|
using namespace epics::pvAccess;
|
||||||
|
using namespace epics::pvCopy;
|
||||||
using namespace epics::pvDatabase;
|
using namespace epics::pvDatabase;
|
||||||
|
|
||||||
static bool debug = true;
|
static bool debug = true;
|
||||||
|
Reference in New Issue
Block a user