Classes | |
struct | Payload |
struct | RawData |
These are FIFO. More... | |
struct | RawDataReader |
Public Member Functions | |
XPrimaryDriver (const char *name, bool runtime, Transaction &tr_meas, const shared_ptr< XMeasure > &meas) | |
virtual void | showForms ()=0 |
Shows all forms belonging to driver. | |
virtual void | stop ()=0 |
![]() | |
XDriver (const char *name, bool runtime, Transaction &tr_meas, const shared_ptr< XMeasure > &meas) | |
![]() | |
XNode (const char *name, bool runtime=false) | |
template<class T > | |
shared_ptr< T > | create (const char *name) |
template<class T , typename... Args> | |
shared_ptr< T > | create (const char *name, bool runtime, Args &&...args) |
template<class T > | |
shared_ptr< T > | create (Transaction &tr, const char *name) |
template<class T , typename... Args> | |
shared_ptr< T > | create (Transaction &tr, const char *name, bool runtime, Args &&...args) |
XString | getName () const |
virtual XString | getLabel () const |
XString | getTypename () const |
shared_ptr< XNode > | getChild (const XString &var) const |
shared_ptr< XNode > | getParent () const |
void | setUIEnabled (bool v) |
Enables/disables controls over scripting/GUI. | |
void | disable () |
Disables all scripting/GUI operations on this node hereafter. | |
![]() | |
bool | insert (Transaction< XNode > &tr, const shared_ptr< XNode > &var, bool online_after_insertion=false) |
void | insert (const shared_ptr< XNode > &var) |
bool | release (Transaction< XNode > &tr, const shared_ptr< XNode > &var) |
void | release (const shared_ptr< XNode > &var) |
void | releaseAll () |
bool | swap (Transaction< XNode > &tr, const shared_ptr< XNode > &x, const shared_ptr< XNode > &y) |
void | swap (const shared_ptr< XNode > &x, const shared_ptr< XNode > &y) |
XNode * | upperNode (Snapshot< XNode > &shot) |
Finds the parent node in shot. | |
Snapshot< XNode > | iterate_commit (Closure) |
Snapshot< XNode > | iterate_commit_if (Closure) |
void | iterate_commit_while (Closure) |
void | print_ () const |
Node (const Node &)=delete | |
Node & | operator= (const Node &)=delete |
Protected Member Functions | |
virtual void | start ()=0 |
virtual void | closeInterface ()=0 |
virtual void | analyzeRaw (RawDataReader &reader, Transaction &tr)=0 throw (XRecordError&) |
void | finishWritingRaw (const shared_ptr< const RawData > &rawdata, const XTime &time_awared, const XTime &time_recorded) |
![]() | |
virtual void | visualize (const Snapshot &shot)=0 |
void | record (Transaction &tr, const XTime &time_awared, const XTime &time_recorded) |
Friends | |
class | XRawStreamRecordReader |
class | XRawStreamRecorder |
Additional Inherited Members | |
![]() | |
using | NodeNotFoundError = std::domain_error |
using | NodeList = fast_vector< shared_ptr< XNode >, 2 > |
using | iterator = typename NodeList::iterator |
using | const_iterator = typename NodeList::const_iterator |
![]() | |
template<class T__ > | |
static shared_ptr< T__ > | createOrphan (const char *name) |
template<class T__ , typename... Args_> | |
static shared_ptr< T__ > | createOrphan (const char *name, bool runtime, Args_ &&...args) |
Definition at line 20 of file primarydriver.h.
|
protectedpure virtual |
This function will be called when raw data are written. Implement this function to convert the raw data to the record (Payload).
Implemented in XPulser, XTempControl, XDCSource, XMonteCarloDriver, XNetworkAnalyzer, XQDPPMS, XMagnetPS, XSG, XDMM, XDSO, XTestDriver, XFuncSynth, XLevelMeter, XFlowControllerDriver, XLIA, XMotorDriver, and XCounter.
Referenced by finishWritingRaw().
|
protectedpure virtual |
Be called for closing interfaces. This function should not cause an exception.
Implemented in XNIDAQmxDriver< XPulser >, XNIDAQmxDriver< XDSO >, XAVS47IB, XAH2500A, XNMRBuiltInNetworkAnalyzer, XLI5640, XCharDeviceDriver< XFuncSynth >, XCharDeviceDriver< XThamwayPulser, XThamwayPGCUSBInterface >, XCharDeviceDriver< XCounter >, XCharDeviceDriver< XThamwayPulser >, XCharDeviceDriver< XMagnetPS >, XCharDeviceDriver< XSG, XThamwayMODCUSBInterface >, XCharDeviceDriver< XNetworkAnalyzer >, XCharDeviceDriver< XSG >, XCharDeviceDriver< XTempControl, XOxfordInterface >, XCharDeviceDriver< XMotorDriver, XModbusRTUInterface >, XCharDeviceDriver< XQDPPMS >, XCharDeviceDriver< XDCSource >, XCharDeviceDriver< XMotorDriver >, XCharDeviceDriver< XMagnetPS, XOxfordInterface >, XCharDeviceDriver< XSG, tInterface >, XCharDeviceDriver< XPulser >, XCharDeviceDriver< XTempControl, XModbusRTUInterface >, XCharDeviceDriver< XLevelMeter >, XCharDeviceDriver< XTempControl, XCryoconCharInterface >, XCharDeviceDriver< XDSO >, XCharDeviceDriver< XDMM >, XCharDeviceDriver< XLIA >, XCharDeviceDriver< XFlowControllerDriver, XFujikinInterface >, XCharDeviceDriver< XDSO, XThamwayDVCUSBInterface >, XCharDeviceDriver< XLevelMeter, XOxfordInterface >, XCharDeviceDriver< XSG, XCharInterface >, XCharDeviceDriver< XTempControl >, XPrimaryDriverWithThread, and XSR830.
Referenced by XFuncSynth::stop(), XDCSource::stop(), and XPulser::stop().
|
protected |
will call analyzeRaw()
rawdata | the data being processed. |
time_awared | time when a visible phenomenon started |
time_recorded | usually pass XTime::now() |
Definition at line 22 of file primarydriver.cpp.
References analyzeRaw(), XNode::getLabel(), Transactional::Node< XNode >::iterate_commit(), XDriver::record(), and XDriver::visualize().
|
protectedpure virtual |
Starts up your threads, connects GUI, and activates signals. This function should not cause an exception.
Implemented in XPulser, XThamwayUSBPROT, XThamwayPROT< tInterface >, XThamwayPROT< XThamwayMODCUSBInterface >, XThamwayPROT< XCharInterface >, XSecondaryDriverInterface< XNetworkAnalyzer >, XDCSource, XMonteCarloDriver, XSG, XFuncSynth, and XPrimaryDriverWithThread.
|
pure virtual |
Shuts down your threads, unconnects GUI, and deactivates signals.
This function may be called even if driver has already stopped. This should not cause an exception.
Implemented in XPulser, XThamwayPROT< tInterface >, XThamwayPROT< XThamwayMODCUSBInterface >, XThamwayPROT< XCharInterface >, XSecondaryDriverInterface< XNetworkAnalyzer >, XDCSource, XMonteCarloDriver, XSG, XFuncSynth, and XPrimaryDriverWithThread.
Referenced by XMeasure::stop().