nidas  v1.2-1520
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
nidas::dynld::SampleOutputStream Class Reference

A class for serializing Samples on an OutputStream. More...

#include <SampleOutputStream.h>

Inheritance diagram for nidas::dynld::SampleOutputStream:
Inheritance graph
[legend]

Public Member Functions

 SampleOutputStream ()
 
 SampleOutputStream (IOChannel *iochan, SampleConnectionRequester *rqstr=0)
 Create a SampleOutputStream with a connected IOChannel. More...
 
virtual ~SampleOutputStream ()
 
SampleOutputconnected (IOChannel *ochan) throw ()
 Implementation of IOChannelRequester::connected(). More...
 
IOStreamgetIOStream ()
 Get the IOStream of this SampleOutputStream. More...
 
void close () throw (nidas::util::IOException)
 
bool receive (const Sample *s) throw ()
 Method called to pass a sample to this client. More...
 
void flush () throw ()
 Ask that this SampleClient send out any buffered Samples that it may be holding. More...
 
size_t write (const void *buf, size_t len, bool streamFlush) throw (nidas::util::IOException)
 
void setLatency (float val) throw (nidas::util::InvalidParameterException)
 Outgoing data is buffered in an IOStream. More...
 
virtual void setIOChannel (IOChannel *val)
 Set the IOChannel for this SampleOutput. More...
 
SampleOutputgetOriginal () const
 Get pointer to SampleOutput that was cloned. More...
 
void setName (const std::string &val)
 
const std::string & getName () const
 
bool isRaw () const
 
void addRequestedSampleTag (SampleTag *tag) throw (nidas::util::InvalidParameterException)
 Some SampleOutputs don't send out all the Samples that they receive. More...
 
std::list< const SampleTag * > getRequestedSampleTags () const
 
void addSourceSampleTag (const SampleTag *tag) throw (nidas::util::InvalidParameterException)
 Some SampleOutputs like to be informed of what SampleTags they will be receiving from their SampleSources before they make a connection. More...
 
void addSourceSampleTags (const std::list< const SampleTag * > &tags) throw (nidas::util::InvalidParameterException)
 
std::list< const SampleTag * > getSourceSampleTags () const
 
void requestConnection (SampleConnectionRequester *) throw (nidas::util::IOException)
 Request a connection, but don't wait for it. More...
 
int getReconnectDelaySecs () const
 Base class implementation. More...
 
void setReconnectDelaySecs (int val)
 
int getFd () const
 
dsm_time_t getNextFileTime () const
 
void createNextFile (dsm_time_t) throw (nidas::util::IOException)
 
size_t write (const void *buf, size_t len) override throw (nidas::util::IOException)
 Raw write method, typically used to write the initial header. More...
 
void fromDOMElement (const xercesc::DOMElement *node) throw (nidas::util::InvalidParameterException)
 Initialize myself from a xercesc::DOMElement. More...
 
IOChannelgetIOChannel () const
 
void setHeaderSource (HeaderSource *val)
 
void setDSMConfig (const DSMConfig *val)
 
const DSMConfiggetDSMConfig () const
 
size_t getNumDiscardedSamples () const
 
void addParameter (Parameter *val)
 Add a parameter to this DSMSensor. More...
 
const std::list< const
Parameter * > & 
getParameters () const
 Get list of parameters. More...
 
const ParametergetParameter (const std::string &name) const
 Fetch a parameter by name. More...
 
float getLatency () const
 
virtual xercesc::DOMElement * toDOMParent (xercesc::DOMElement *parent, bool complete) const throw (xercesc::DOMException)
 Create a DOMElement and append it to the parent. More...
 
virtual xercesc::DOMElement * toDOMElement (xercesc::DOMElement *node, bool complete) const throw (xercesc::DOMException)
 Add my content into a DOMElement. More...
 

Static Public Member Functions

static const XMLCh * getNamespaceURI ()
 

Protected Member Functions

SampleOutputStreamclone (IOChannel *iochannel)
 
 SampleOutputStream (SampleOutputStream &, IOChannel *)
 Copy constructor, with a new IOChannel. More...
 
size_t write (const Sample *samp, bool streamFlush) throw (nidas::util::IOException)
 
size_t incrementDiscardedSamples ()
 
SampleConnectionRequestergetSampleConnectionRequester ()
 
void disconnect () throw (nidas::util::IOException)
 Close the IOChannel and notify whoever did the requestConnection that it is time to disconnect, perhaps because of an IOException. More...
 

Protected Attributes

IOStream_iostream
 
std::string _name
 

Private Member Functions

 SampleOutputStream (const SampleOutputStream &)
 No copy. More...
 
SampleOutputStreamoperator= (const SampleOutputStream &)
 No assignment. More...
 

Private Attributes

int _maxUsecs
 Maximum number of microseconds between physical writes. More...
 
dsm_time_t _lastFlushTT
 Timetag of last flush of IOStream. More...
 

Detailed Description

A class for serializing Samples on an OutputStream.

Constructor & Destructor Documentation

SampleOutputStream::SampleOutputStream ( )

References USECS_PER_SEC.

Referenced by clone().

SampleOutputStream::SampleOutputStream ( IOChannel iochan,
SampleConnectionRequester rqstr = 0 
)
SampleOutputStream::~SampleOutputStream ( )
virtual

References _iostream, and VLOG.

SampleOutputStream::SampleOutputStream ( SampleOutputStream x,
IOChannel ioc 
)
protected
nidas::dynld::SampleOutputStream::SampleOutputStream ( const SampleOutputStream )
private

No copy.

Member Function Documentation

void SampleOutputBase::addParameter ( Parameter val)
inherited

Add a parameter to this DSMSensor.

DSMSensor will then own the pointer and will delete it in its destructor. If a Parameter exists with the same name, it will be replaced with the new Parameter.

References nidas::core::SampleOutputBase::_constParameters, nidas::core::SampleOutputBase::_parameters, and nidas::core::Parameter::getName().

void SampleOutputBase::addRequestedSampleTag ( SampleTag tag)
throw (nidas::util::InvalidParameterException
)
virtualinherited

Some SampleOutputs don't send out all the Samples that they receive.

At configuration time, one can use this method to request the SampleTags that should be output from a SampleOutput. SampleOutput will own the pointer.

Implements nidas::core::SampleOutput.

Reimplemented in nidas::dynld::isff::GOESOutput, and nidas::dynld::raf::CVIOutput.

Referenced by nidas::dynld::raf::CVIOutput::addRequestedSampleTag(), nidas::dynld::isff::GOESOutput::addRequestedSampleTag(), and nidas::core::SampleOutputBase::SampleOutputBase().

void SampleOutputBase::addSourceSampleTag ( const SampleTag tag)
throw (nidas::util::InvalidParameterException
)
virtualinherited

Some SampleOutputs like to be informed of what SampleTags they will be receiving from their SampleSources before they make a connection.

Users of SampleOutputs should call this method before calling requestConnection().

Implements nidas::core::SampleOutput.

Reimplemented in nidas::dynld::isff::GOESOutput.

Referenced by nidas::dynld::isff::GOESOutput::addSourceSampleTag(), and nidas::core::SampleOutputBase::SampleOutputBase().

void SampleOutputBase::addSourceSampleTags ( const std::list< const SampleTag * > &  tags)
throw (nidas::util::InvalidParameterException
)
virtualinherited
SampleOutputStream * SampleOutputStream::clone ( IOChannel iochannel)
protectedvirtual
void SampleOutputStream::close ( )
throw (nidas::util::IOException
)
virtual
SampleOutput * SampleOutputStream::connected ( IOChannel ochan)
throw (
)
virtual

Implementation of IOChannelRequester::connected().

How an IOChannel indicates that it has received a connection.

Reimplemented from nidas::core::SampleOutputBase.

References nidas::core::SampleOutputBase::connected().

Referenced by nidas::dynld::psql::PSQLSampleOutput::connected().

void SampleOutputBase::createNextFile ( dsm_time_t  tt)
throw (nidas::util::IOException
)
inherited
void SampleOutputBase::disconnect ( )
throw (nidas::util::IOException
)
protectedinherited

Close the IOChannel and notify whoever did the requestConnection that it is time to disconnect, perhaps because of an IOException.

This is typically called in the receive() method of a SampleOutput if it gets an IOException when writing data. A common implementation of a connection requester is to delete this SampleOutput after the removing it from the sample stream. So the caller method should immediately return after calling disconnect().

References nidas::core::SampleOutputBase::_connectionRequester, nidas::core::SampleOutputBase::close(), nidas::core::SampleConnectionRequester::disconnect(), nidas::core::SampleOutputBase::getName(), and ILOG.

void SampleOutputStream::flush ( )
throw (
)
virtual
void SampleOutputBase::fromDOMElement ( const xercesc::DOMElement *  )
throw (nidas::util::InvalidParameterException
)
virtualinherited
const DSMConfig* nidas::core::SampleOutputBase::getDSMConfig ( ) const
inlinevirtualinherited
int SampleOutputBase::getFd ( ) const
virtualinherited
IOChannel* nidas::core::SampleOutputBase::getIOChannel ( ) const
inlinevirtualinherited
IOStream* nidas::dynld::SampleOutputStream::getIOStream ( )
inline

Get the IOStream of this SampleOutputStream.

SampleOutputStream owns the pointer and will delete the IOStream in its destructor. The IOStream is available after a SammpleOutputStream is constructed with an connected IOChannel, or after the connected() method has been called and before close().

float nidas::core::SampleOutputBase::getLatency ( ) const
inlinevirtualinherited

Implements nidas::core::SampleOutput.

Referenced by SampleOutputStream().

const std::string& nidas::core::SampleOutputBase::getName ( ) const
inlinevirtualinherited
static const XMLCh* nidas::core::DOMable::getNamespaceURI ( )
inlinestaticinherited
dsm_time_t nidas::core::SampleOutputBase::getNextFileTime ( ) const
inlineinherited
size_t nidas::core::SampleOutputBase::getNumDiscardedSamples ( ) const
inlineinherited
SampleOutput* nidas::core::SampleOutputBase::getOriginal ( ) const
inlinevirtualinherited

Get pointer to SampleOutput that was cloned.

Will be NULL if this SampleOutput is an un-cloned original.

Implements nidas::core::SampleOutput.

const Parameter * SampleOutputBase::getParameter ( const std::string &  name) const
inherited

Fetch a parameter by name.

Returns a NULL pointer if no such parameter exists.

References nidas::core::SampleOutputBase::_parameters.

const std::list<const Parameter*>& nidas::core::SampleOutputBase::getParameters ( ) const
inlineinherited

Get list of parameters.

int SampleOutputBase::getReconnectDelaySecs ( ) const
virtualinherited

Base class implementation.

If setReconnectDelaySecs() has been called on this SampleOutput, then that value will be returned. Otherwise this will return the value of the IOChannel.

Implements nidas::core::SampleOutput.

References nidas::core::SampleOutputBase::_iochan, nidas::core::SampleOutputBase::_reconnectDelaySecs, and nidas::core::IOChannel::getReconnectDelaySecs().

std::list< const SampleTag * > SampleOutputBase::getRequestedSampleTags ( ) const
virtualinherited
SampleConnectionRequester* nidas::core::SampleOutputBase::getSampleConnectionRequester ( )
inlineprotectedinherited
list< const SampleTag * > SampleOutputBase::getSourceSampleTags ( ) const
virtualinherited
size_t nidas::core::SampleOutputBase::incrementDiscardedSamples ( )
inlineprotectedinherited
bool nidas::core::SampleOutputBase::isRaw ( ) const
inlinevirtualinherited
SampleOutputStream& nidas::dynld::SampleOutputStream::operator= ( const SampleOutputStream )
private

No assignment.

bool SampleOutputStream::receive ( const Sample s)
throw (
)
virtual

Method called to pass a sample to this client.

This method is typically called by a SampleSource for each of its SampleClients when it has a sample ready. Returns true: success false: sample rejected. This is meant to signal a warning-type situation - like a socket not being available temporarily. True errors will be thrown as an IOException.

Implements nidas::core::SampleClient.

References nidas::util::Exception::getErrno(), NLOG, VLOG, nidas::util::Exception::what(), and WLOG.

Referenced by NidsMerge::receiveAllowedDsm(), SensorExtract::run(), and ARLIngest::writeLine().

void SampleOutputBase::requestConnection ( SampleConnectionRequester requester)
throw (nidas::util::IOException
)
virtualinherited

Request a connection, but don't wait for it.

Requester will be notified via SampleConnectionRequester interface when the connection has been made. It is not necessary to call this method if a SampleOutput is constructed with a connected IOChannel.

Implements nidas::core::SampleOutput.

Reimplemented in nidas::dynld::psql::PSQLSampleOutput, nidas::dynld::raf::CVIOutput, and nidas::dynld::AsciiOutput.

Referenced by nidas::dynld::AsciiOutput::requestConnection(), and nidas::dynld::raf::CVIOutput::requestConnection().

void nidas::core::SampleOutputBase::setDSMConfig ( const DSMConfig val)
inlinevirtualinherited
void nidas::core::SampleOutputBase::setHeaderSource ( HeaderSource val)
inlinevirtualinherited
void SampleOutputBase::setIOChannel ( IOChannel val)
virtualinherited
void SampleOutputStream::setLatency ( float  val)
throw (nidas::util::InvalidParameterException
)
virtual

Outgoing data is buffered in an IOStream.

The stream will be flushed when the difference between successive time tags exceeds this value. This is a useful parameter for real-time applications.

Parameters
valNumber of seconds between physical writes. Default is set in SampleOutputBase.

Reimplemented from nidas::core::SampleOutputBase.

References nidas::core::SampleOutputBase::setLatency(), and USECS_PER_SEC.

void nidas::core::SampleOutputBase::setName ( const std::string &  val)
inlinevirtualinherited
void SampleOutputBase::setReconnectDelaySecs ( int  val)
virtualinherited
xercesc::DOMElement * DOMable::toDOMElement ( xercesc::DOMElement *  node,
bool  complete 
) const
throw (xercesc::DOMException
)
virtualinherited
xercesc::DOMElement * DOMable::toDOMParent ( xercesc::DOMElement *  parent,
bool  complete 
) const
throw (xercesc::DOMException
)
virtualinherited
size_t SampleOutputStream::write ( const void *  buf,
size_t  len,
bool  streamFlush 
)
throw (nidas::util::IOException
)

References len.

size_t SampleOutputStream::write ( const Sample samp,
bool  streamFlush 
)
throw (nidas::util::IOException
)
protected
size_t SampleOutputBase::write ( const void *  buf,
size_t  len 
)
throw (nidas::util::IOException
)
overridevirtualinherited

Raw write method, typically used to write the initial header.

Implements nidas::core::SampleOutput.

Reimplemented in nidas::dynld::isff::GOESOutput.

References len.

Member Data Documentation

IOStream* nidas::dynld::SampleOutputStream::_iostream
protected
dsm_time_t nidas::dynld::SampleOutputStream::_lastFlushTT
private

Timetag of last flush of IOStream.

int nidas::dynld::SampleOutputStream::_maxUsecs
private

Maximum number of microseconds between physical writes.

Referenced by SampleOutputStream().

std::string nidas::core::SampleOutputBase::_name
protectedinherited

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