DUECA/DUSIME
Loading...
Searching...
No Matches
dueca::MatchIntervalStart< T > Class Template Reference

Data selector class. More...

#include <DataReader.hxx>

Inheritance diagram for dueca::MatchIntervalStart< T >:
Collaboration diagram for dueca::MatchIntervalStart< T >:

Public Member Functions

 MatchIntervalStart (DataReaderBase &r)
 Constructor.
 
const T & access (DataReaderBase &r)
 extrapolate the data object data, which became valid for a time data_time, to a time in the future or past wish_time.
 
const void release (ChannelReadToken &token)
 Release a previous access.
 

Detailed Description

template<class T>
class dueca::MatchIntervalStart< T >

Data selector class.

The DataReader objects access data in a channel using ChannelReadToken objects. A DataReader is supplied with a time specification for the requested data interval at its construction. The data selector class template parameter defines how that interval is interpreted in accessing the data.

Behaviour of this MatchIntervalStart class, explained for the four different cases created by the combination of reading mode and channel entry data type:

  • Time access reading specified for the token (Channel::JumpToMatchTime):

    • The accessed channel entry contains stream data:

      Given a Time Specification for the requested access time (req_s, req_e), and stream data in the channel with (data_s, data_e), the data is returned when (data_e > req_s && data_s <= req_s). If such data is not present, a NoDataAvailable exception is thrown.

    • The accessed channel entry contains event data:

      Given a Time Specification for the requested access time (req_s, req_e), and event data in the channel with timestamp (data_t), the latest event is returned for which (data_t == req_s). If no such event is found, a NoDataAvailable exception is thrown.

  • serial reading specified for the token (Channel::ReadAllData or Channel::ReadReservation):

    Warning
    { The MatchIntervalStart uses lazy access to the channel. If you are using stepwise read, you must use data(), timeSpec() or origin() from your DataReader object, otherwise no advance is made to the next event/data point. }
    • The accessed channel entry contains stream data:

      Given a Time Specification for the requested access time (req_s, req_e), the next datapoint is tested and returned when (data_e > req_s && data_s <= req_s). If the next datapoint does not match this, a NoDataAvailable exception is thrown.

    • The accessed channel entry contains event data:

      Given a Time Specification for the requested access time (req_s, req_e), and event data in the channel with timestamp (data_t), the next event is returned if for that event (data_t <= req_s). If that condition does not match, a NoDataAvailable exception is thrown.

Note that for this access, only the combination time access reading with stream data makes sense.

Constructor & Destructor Documentation

◆ MatchIntervalStart()

template<class T >
dueca::MatchIntervalStart< T >::MatchIntervalStart ( DataReaderBase & r)
inline

Constructor.

Essential to initialize data pointer to NULL

Member Function Documentation

◆ access()

template<class T >
const T & dueca::MatchIntervalStart< T >::access ( DataReaderBase & r)
inline

extrapolate the data object data, which became valid for a time data_time, to a time in the future or past wish_time.

This one actually does nothing but return the unchanged data object.

Parameters
rBase class for the calling datareader object.
Returns
A reference to the extrapolated data.

The documentation for this class was generated from the following file: