OpenRTM-aist 2.0.2
Loading...
Searching...
No Matches
RTC::InPortPushConnector Class Reference

InPortPushConnector class. More...

#include <InPortPushConnector.h>

Inheritance diagram for RTC::InPortPushConnector:
Collaboration diagram for RTC::InPortPushConnector:

Public Member Functions

 InPortPushConnector (ConnectorInfo info, InPortProvider *provider, ConnectorListenersBase *listeners, CdrBufferBase *buffer=nullptr)
 
 ~InPortPushConnector () override
 Destructor.
 
DataPortStatus read (ByteDataStreamBase *data) override
 Reading data.
 
DataPortStatus disconnect () override
 disconnect
 
void activate () override
 Connector activation.
 
void deactivate () override
 Connector deactivation.
 
- Public Member Functions inherited from RTC::InPortConnector
 InPortConnector (ConnectorInfo &info, ConnectorListenersBase *listeners, CdrBufferBase *buffer)
 Constructor.
 
 ~InPortConnector () override
 Destructor .
 
const ConnectorInfoprofile () override
 Getting ConnectorInfo.
 
const char * id () override
 Getting Connector ID.
 
const char * name () override
 Getting Connector name.
 
CdrBufferBasegetBuffer () override
 Getting Buffer.
 
template<class DataType >
DataPortStatus read (DataType &data)
 
virtual void setEndian (bool endian_type)
 Setting an endian type.
 
virtual bool isLittleEndian ()
 Whether this connector's endian is little.
 
bool setOutPort (OutPortBase *directOutPort)
 
template<typename DataType >
bool getDirectData (DataType &data)
 
virtual void unsubscribeInterface (const coil::Properties &prop)
 
- Public Member Functions inherited from RTC::ConnectorBase
virtual ~ConnectorBase ()=default
 Destructor .
 

Protected Member Functions

virtual CdrBufferBasecreateBuffer (ConnectorInfo &info)
 create buffer
 
BufferStatus write (ByteData &cdr) override
 
void onConnect ()
 Invoke callback when connection is established .
 
void onDisconnect ()
 Invoke callback when connection is destroied .
 
void onBufferRead (ByteData &data)
 
void onBufferEmpty (ByteData &)
 
void onBufferReadTimeout (ByteData &)
 

Additional Inherited Members

- Protected Attributes inherited from RTC::InPortConnector
Logger rtclog
 Logger stream .
 
ConnectorInfo m_profile
 ConnectorInfo .
 
ConnectorListenersBasem_listeners
 A reference to a ConnectorListener .
 
CdrBufferBasem_buffer
 Connector's buffer .
 
bool m_littleEndian
 Connected Endian .
 
ConnectorListenersBasem_outPortListeners
 A pointer to a OutPort's ConnectorListener .
 
PortBasem_directOutPort
 OutProt pointer to the peer in the same process .
 
std::string m_marshaling_type
 
ByteDataStreamBasem_cdr
 

Detailed Description

InPortPushConnector class.

Connector class of InPort for push type dataflow. When "push" is specified as dataflow_type at the time of establishing connection, this object is generated and owned by the InPort. This connector and OutPortPushConnector make a pair and realize push type dataflow of data ports. One connector corresponds to one connection which provides a data stream. Connector is distinguished by ID of the UUID that is generated at establishing connection.

InPortPushConnector owns and manages the following objects.

Data written into the OutPort are passed to the InPortProvider::put() by OutPortConnector. The data is written into the buffer in the connector.

Since
1.0.0

Constructor & Destructor Documentation

◆ InPortPushConnector()

RTC::InPortPushConnector::InPortPushConnector ( ConnectorInfo info,
InPortProvider * provider,
ConnectorListenersBase * listeners,
CdrBufferBase * buffer = nullptr )

◆ ~InPortPushConnector()

RTC::InPortPushConnector::~InPortPushConnector ( )
override

Destructor.

This operation calls disconnect(), which destructs and deletes the consumer, the publisher and the buffer.

Member Function Documentation

◆ activate()

void RTC::InPortPushConnector::activate ( )
inlineoverridevirtual

Connector activation.

This operation activates this connector

Implements RTC::ConnectorBase.

◆ createBuffer()

virtual CdrBufferBase * RTC::InPortPushConnector::createBuffer ( ConnectorInfo & info)
protectedvirtual

create buffer

This function creates a buffer based on given information.

Parameters
infoConnector information
Returns
The poitner to the buffer

◆ deactivate()

void RTC::InPortPushConnector::deactivate ( )
inlineoverridevirtual

Connector deactivation.

This operation deactivates this connector

Implements RTC::ConnectorBase.

◆ disconnect()

DataPortStatus RTC::InPortPushConnector::disconnect ( )
overridevirtual

disconnect

This operation destruct and delete the consumer, the publisher and the buffer.

Returns
PORT_OK

Implements RTC::InPortConnector.

◆ onBufferEmpty()

void RTC::InPortPushConnector::onBufferEmpty ( ByteData & )
inlineprotected

◆ onBufferRead()

void RTC::InPortPushConnector::onBufferRead ( ByteData & data)
inlineprotected

◆ onBufferReadTimeout()

void RTC::InPortPushConnector::onBufferReadTimeout ( ByteData & )
inlineprotected

◆ onConnect()

void RTC::InPortPushConnector::onConnect ( )
protected

Invoke callback when connection is established .

◆ onDisconnect()

void RTC::InPortPushConnector::onDisconnect ( )
protected

Invoke callback when connection is destroied .

◆ read()

DataPortStatus RTC::InPortPushConnector::read ( ByteDataStreamBase * data)
overridevirtual

Reading data.

This function reads data from the buffer. If data is read properly, this function will return PORT_OK return code. Except normal return, BUFFER_EMPTY, TIMEOUT, PRECONDITION_NOT_MET and PORT_ERROR will be returned as error codes.

Returns
PORT_OK Normal return BUFFER_EMPTY Buffer empty TIMEOUT Timeout PRECONDITION_NOT_MET Preconditin not met PORT_ERROR Other error

Implements RTC::InPortConnector.

◆ write()

BufferStatus RTC::InPortPushConnector::write ( ByteData & cdr)
overrideprotectedvirtual

Reimplemented from RTC::InPortConnector.


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