Chemical Data Processing Library C++ API - Version 1.4.0
Public Types | Public Member Functions | List of all members
CDPL::Util::CompoundDataReader< DataType > Class Template Reference

Composite Base::DataReader that aggregates several underlying readers and presents their records as one contiguous record stream. More...

#include <CompoundDataReader.hpp>

+ Inheritance diagram for CDPL::Util::CompoundDataReader< DataType >:

Public Types

typedef std::shared_ptr< CompoundDataReaderSharedPointer
 A reference-counted smart pointer [SHPTR] for dynamically allocated CompoundDataReader instances. More...
 
typedef Base::DataReader< DataTypeReaderType
 Type of the underlying Base::DataReader specialization. More...
 
typedef ReaderType::SharedPointer ReaderPointer
 Shared-pointer type for the underlying readers. More...
 
- Public Types inherited from CDPL::Base::DataReader< DataType >
typedef DataType DataType
 The type of the read data objects. More...
 
typedef std::shared_ptr< DataReaderSharedPointer
 A reference-counted smart pointer [SHPTR] for dynamically allocated DataReader instances. More...
 
- Public Types inherited from CDPL::Base::DataIOBase
typedef std::function< void(const DataIOBase &, double)> IOCallbackFunction
 A functor class used to wrap I/O callback target functions. More...
 
- Public Types inherited from CDPL::Base::ControlParameterContainer
typedef ParameterMap::value_type ParameterEntry
 A Base::LookupKey / Base::Any pair used to store the control-parameter values and associated keys. More...
 
typedef ParameterMap::const_iterator ConstParameterIterator
 A constant iterator used to iterate over the control-parameter entries. More...
 
typedef std::function< void(const LookupKey &, const Any &)> ParameterChangedCallbackFunction
 A functor class that wraps callback target functions which get invoked when the value of a control-parameter has changed. More...
 
typedef std::function< void(const LookupKey &)> ParameterRemovedCallbackFunction
 A functor class that wraps callback target functions which get invoked when a control-parameter entry has been removed. More...
 
typedef std::function< void()> ParentChangedCallbackFunction
 A functor class that wraps callback target functions which get invoked when the parent container has been changed or was detached. More...
 

Public Member Functions

 CompoundDataReader ()
 Constructs an empty CompoundDataReader instance. More...
 
 ~CompoundDataReader ()
 Destructor. More...
 
 CompoundDataReader (const CompoundDataReader &)=delete
 
CompoundDataReaderoperator= (const CompoundDataReader &)=delete
 
void addReader (const ReaderPointer &reader)
 Appends reader to the list of underlying readers. More...
 
void removeReader (std::size_t idx)
 Removes the reader at index idx from the list of underlying readers. More...
 
std::size_t getNumReaders ()
 Returns the number of underlying readers. More...
 
void clear ()
 Removes all underlying readers. More...
 
std::size_t getReaderIDForRecordIndex (std::size_t idx) const
 Returns the index of the underlying reader that owns the global record index idx. More...
 
const ReaderPointergetReader (std::size_t idx) const
 Returns the underlying reader at index idx. More...
 
CompoundDataReaderread (DataType &obj, bool overwrite=true)
 Reads the next record into obj. More...
 
CompoundDataReaderread (std::size_t idx, DataType &obj, bool overwrite=true)
 Reads the record at the global index idx into obj. More...
 
CompoundDataReaderskip ()
 Skips the next record. More...
 
bool hasMoreData ()
 Tells whether more records are available. More...
 
std::size_t getRecordIndex () const
 Returns the current global record index. More...
 
void setRecordIndex (std::size_t idx)
 Sets the current global record index. More...
 
std::size_t getNumRecords ()
 Returns the total number of records across all underlying readers. More...
 
 operator const void * () const
 Tells whether the reader is in a good (readable) state. More...
 
bool operator! () const
 Tells whether the reader is in a bad (non-readable) state. More...
 
- Public Member Functions inherited from CDPL::Base::DataReader< DataType >
virtual void close ()
 Performs a reader specific shutdown operation (if required). More...
 
- Public Member Functions inherited from CDPL::Base::DataIOBase
std::size_t registerIOCallback (const IOCallbackFunction &func)
 Registers an I/O callback target function. More...
 
void unregisterIOCallback (std::size_t id)
 Unregisters the I/O callback function specified by id. More...
 
void invokeIOCallbacks (double progress) const
 Invokes all registered I/O callback functions with the argument *this. More...
 
void clearIOCallbacks ()
 Clears all registered I/O callback functions. More...
 
- Public Member Functions inherited from CDPL::Base::ControlParameterContainer
std::size_t getNumParameters () const
 Returns the number of container entries. More...
 
template<typename T >
void setParameter (const LookupKey &key, T &&val)
 Sets the value of the control-parameter specified by key to val. More...
 
const AnygetParameter (const LookupKey &key, bool throw_=false, bool local=false) const
 Returns the value of the control-parameter specified by key. More...
 
template<typename T >
const T & getParameter (const LookupKey &key, bool local=false) const
 Returns the value of the control-parameter specified by key as a const reference to an object of type T. More...
 
template<typename T >
const T & getParameterOrDefault (const LookupKey &key, const T &def_val, bool local=false) const
 Returns the value of the control-parameter specified by key as a const reference to an object of type T, or the default value def_val if a stored value does not exist. More...
 
bool removeParameter (const LookupKey &key)
 Removes the entry for the control-parameter specified by key. More...
 
void clearParameters ()
 Erases all container entries. More...
 
bool isParameterSet (const LookupKey &key, bool local=false) const
 Tells whether or not a value has been assigned to the control-parameter specified by key. More...
 
void addParameters (const ControlParameterContainer &cntnr)
 Adds the control-parameter value entries in the ControlParameterContainer instance cntnr. More...
 
void copyParameters (const ControlParameterContainer &cntnr)
 Replaces the current set of properties by a copy of the entries in cntnr. More...
 
ConstParameterIterator getParametersBegin () const
 Returns a constant iterator pointing to the beginning of the entries. More...
 
ConstParameterIterator getParametersEnd () const
 Returns a constant iterator pointing to the end of the entries. More...
 
ConstParameterIterator begin () const
 Returns a constant iterator pointing to the beginning of the entries. More...
 
ConstParameterIterator end () const
 Returns a constant iterator pointing to the end of the entries. More...
 
void setParent (const ControlParameterContainer *cntnr)
 Sets or removes the parent control-parameter container used to resolve requests for missing entries. More...
 
const ControlParameterContainergetParent () const
 Returns a pointer to the parent control-parameter container. More...
 
std::size_t registerParameterChangedCallback (const ParameterChangedCallbackFunction &func)
 Registers a callback target function that gets invoked when the value of a control-parameter has changed. More...
 
void unregisterParameterChangedCallback (std::size_t id)
 Unregisters the callback specified by id. More...
 
std::size_t registerParameterRemovedCallback (const ParameterRemovedCallbackFunction &func)
 Registers a callback target function that gets invoked when a control-parameter entry has been removed. More...
 
void unregisterParameterRemovedCallback (std::size_t id)
 Unregisters the callback specified by id. More...
 
std::size_t registerParentChangedCallback (const ParentChangedCallbackFunction &func)
 Registers a callback target function that gets invoked when the parent container has been changed or was detached. More...
 
void unregisterParentChangedCallback (std::size_t id)
 Unregisters the callback specified by id. More...
 
const ControlParameterContainergetParameters () const
 Returns a const reference to itself. More...
 

Additional Inherited Members

- Protected Member Functions inherited from CDPL::Base::DataReader< DataType >
DataReaderoperator= (const DataReader &reader)
 Assignment operator. More...
 
- Protected Member Functions inherited from CDPL::Base::DataIOBase
 DataIOBase ()
 Default constructor. More...
 
 DataIOBase (const DataIOBase &io_base)
 Copy constructor. More...
 
 ~DataIOBase ()
 Destructor. More...
 
DataIOBaseoperator= (const DataIOBase &io_base)
 Assignment operator. More...
 
- Protected Member Functions inherited from CDPL::Base::ControlParameterContainer
 ControlParameterContainer ()
 Constructs an empty ControlParameterContainer instance. More...
 
 ControlParameterContainer (const ControlParameterContainer &cntnr)
 Constructs a copy of the ControlParameterContainer instance cntnr. More...
 
virtual ~ControlParameterContainer ()
 Destructor. More...
 
ControlParameterContaineroperator= (const ControlParameterContainer &cntnr)
 Assignment operator. More...
 

Detailed Description

template<typename DataType>
class CDPL::Util::CompoundDataReader< DataType >

Composite Base::DataReader that aggregates several underlying readers and presents their records as one contiguous record stream.

Template Parameters
DataTypeThe data type read by the contained Base::DataReader instances.

Member Typedef Documentation

◆ SharedPointer

template<typename DataType >
typedef std::shared_ptr<CompoundDataReader> CDPL::Util::CompoundDataReader< DataType >::SharedPointer

A reference-counted smart pointer [SHPTR] for dynamically allocated CompoundDataReader instances.

◆ ReaderType

template<typename DataType >
typedef Base::DataReader<DataType> CDPL::Util::CompoundDataReader< DataType >::ReaderType

Type of the underlying Base::DataReader specialization.

◆ ReaderPointer

Shared-pointer type for the underlying readers.

Constructor & Destructor Documentation

◆ CompoundDataReader() [1/2]

Constructs an empty CompoundDataReader instance.

◆ ~CompoundDataReader()

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType >::~CompoundDataReader

Destructor.

◆ CompoundDataReader() [2/2]

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType >::CompoundDataReader ( const CompoundDataReader< DataType > &  )
delete

Member Function Documentation

◆ operator=()

template<typename DataType >
CompoundDataReader& CDPL::Util::CompoundDataReader< DataType >::operator= ( const CompoundDataReader< DataType > &  )
delete

◆ addReader()

template<typename DataType >
void CDPL::Util::CompoundDataReader< DataType >::addReader ( const ReaderPointer reader)

Appends reader to the list of underlying readers.

Parameters
readerThe reader to add.

◆ removeReader()

template<typename DataType >
void CDPL::Util::CompoundDataReader< DataType >::removeReader ( std::size_t  idx)

Removes the reader at index idx from the list of underlying readers.

Parameters
idxThe zero-based reader index.
Exceptions
Base::IndexErrorif the number of readers is zero or idx is not in the range [0, getNumReaders() - 1].

◆ getNumReaders()

template<typename DataType >
std::size_t CDPL::Util::CompoundDataReader< DataType >::getNumReaders

Returns the number of underlying readers.

Returns
The reader count.

◆ clear()

template<typename DataType >
void CDPL::Util::CompoundDataReader< DataType >::clear

Removes all underlying readers.

◆ getReaderIDForRecordIndex()

template<typename DataType >
std::size_t CDPL::Util::CompoundDataReader< DataType >::getReaderIDForRecordIndex ( std::size_t  idx) const

Returns the index of the underlying reader that owns the global record index idx.

Parameters
idxThe zero-based global record index.
Returns
The zero-based reader index.

◆ getReader()

template<typename DataType >
const CDPL::Util::CompoundDataReader< DataType >::ReaderPointer & CDPL::Util::CompoundDataReader< DataType >::getReader ( std::size_t  idx) const

Returns the underlying reader at index idx.

Parameters
idxThe zero-based reader index.
Returns
A const reference to the reader shared pointer.
Exceptions
Base::IndexErrorif the number of readers is zero or idx is not in the range [0, getNumReaders() - 1].

◆ read() [1/2]

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType > & CDPL::Util::CompoundDataReader< DataType >::read ( DataType obj,
bool  overwrite = true 
)
virtual

Reads the next record into obj.

Parameters
objThe output object.
overwriteIf true, the output object is cleared before the record is copied into it.
Returns
A reference to itself.

Implements CDPL::Base::DataReader< DataType >.

◆ read() [2/2]

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType > & CDPL::Util::CompoundDataReader< DataType >::read ( std::size_t  idx,
DataType obj,
bool  overwrite = true 
)
virtual

Reads the record at the global index idx into obj.

Parameters
idxThe zero-based global record index.
objThe output object.
overwriteIf true, the output object is cleared before the record is copied into it.
Returns
A reference to itself.
Exceptions
Base::IndexErrorif the number of records is zero or idx is not in the range [0, getNumRecords() - 1].

Implements CDPL::Base::DataReader< DataType >.

◆ skip()

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType > & CDPL::Util::CompoundDataReader< DataType >::skip
virtual

Skips the next record.

Returns
A reference to itself.

Implements CDPL::Base::DataReader< DataType >.

◆ hasMoreData()

template<typename DataType >
bool CDPL::Util::CompoundDataReader< DataType >::hasMoreData
virtual

Tells whether more records are available.

Returns
true if at least one more record is available, and false otherwise.

Implements CDPL::Base::DataReader< DataType >.

◆ getRecordIndex()

template<typename DataType >
std::size_t CDPL::Util::CompoundDataReader< DataType >::getRecordIndex
virtual

Returns the current global record index.

Returns
The zero-based global record index of the next record to read.

Implements CDPL::Base::DataReader< DataType >.

◆ setRecordIndex()

template<typename DataType >
void CDPL::Util::CompoundDataReader< DataType >::setRecordIndex ( std::size_t  idx)
virtual

Sets the current global record index.

Parameters
idxThe new zero-based global record index (may equal getNumRecords() to position past the last record).
Exceptions
Base::IndexErrorif idx is strictly greater than getNumRecords().

Implements CDPL::Base::DataReader< DataType >.

◆ getNumRecords()

template<typename DataType >
std::size_t CDPL::Util::CompoundDataReader< DataType >::getNumRecords
virtual

Returns the total number of records across all underlying readers.

Returns
The combined record count.

Implements CDPL::Base::DataReader< DataType >.

◆ operator const void *()

template<typename DataType >
CDPL::Util::CompoundDataReader< DataType >::operator const void *
virtual

Tells whether the reader is in a good (readable) state.

Returns
A non-nullptr pointer if the reader is in a good state, and nullptr otherwise.

Implements CDPL::Base::DataReader< DataType >.

◆ operator!()

template<typename DataType >
bool CDPL::Util::CompoundDataReader< DataType >::operator!
virtual

Tells whether the reader is in a bad (non-readable) state.

Returns
true if the reader is in a bad state, and false otherwise.

Implements CDPL::Base::DataReader< DataType >.


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