OutPortPushConnector class. More...
#include <OutPortPushConnector.h>
Public Member Functions | |
DATAPORTSTATUS_ENUM | OutPortPushConnector (ConnectorInfo info, InPortConsumer *consumer, ConnectorListeners &listeners, CdrBufferBase *buffer=0) |
Constructor. | |
virtual | ~OutPortPushConnector () |
Destructor. | |
virtual ReturnCode | write (const cdrMemoryStream &data) |
Writing data. | |
virtual ReturnCode | disconnect () |
disconnect | |
virtual void | activate () |
Connector activation. | |
virtual void | deactivate () |
Connector deactivation. | |
virtual CdrBufferBase * | getBuffer () |
Getting Buffer. | |
Protected Member Functions | |
virtual PublisherBase * | createPublisher (ConnectorInfo &info) |
create buffer | |
virtual CdrBufferBase * | createBuffer (ConnectorInfo &info) |
create buffer | |
void | onConnect () |
Invoke callback when connection is established. | |
void | onDisconnect () |
Invoke callback when connection is destroied. |
OutPortPushConnector class.
Connector class of OutPort 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 OutPort. This connector and InPortPushConnector 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.
OutPortPushConnector owns and manages the following objects.
Data written into the OutPort is passed to OutPortPushConnector::write(), and the connector writes into the publisher. The publisher gets data from the buffer based on the policy and it is transferred to InPort by pushing it into the InPortConsumer.
DATAPORTSTATUS_ENUM RTC::OutPortPushConnector::OutPortPushConnector | ( | ConnectorInfo | info, | |
InPortConsumer * | consumer, | |||
ConnectorListeners & | listeners, | |||
CdrBufferBase * | buffer = 0 | |||
) |
Constructor.
OutPortPushConnector's constructor is given the following arguments. According to ConnectorInfo which includes connection information, a publisher and a buffer are created. It is also given a pointer to the consumer object for the InPort interface. The owner-ship of the pointer is owned by this OutPortPushConnector, it has responsibility to destruct the InPortConsumer. OutPortPushConnector also has ConnectorListeners to provide event callback mechanisms, and they would be called at the proper timing. If data buffer is given by OutPortBase, the pointer to the buffer is also given as arguments.
info | ConnectorInfo | |
consumer | InPortConsumer | |
listeners | ConnectorListeners type lsitener object list | |
buffer | CdrBufferBase type buffer |
virtual RTC::OutPortPushConnector::~OutPortPushConnector | ( | ) | [virtual] |
Destructor.
This operation calls disconnect(), which destructs and deletes the consumer, the publisher and the buffer.
virtual void RTC::OutPortPushConnector::activate | ( | ) | [virtual] |
virtual CdrBufferBase* RTC::OutPortPushConnector::createBuffer | ( | ConnectorInfo & | info | ) | [protected, virtual] |
create buffer
This function creates a buffer based on given information.
info | Connector information |
virtual PublisherBase* RTC::OutPortPushConnector::createPublisher | ( | ConnectorInfo & | info | ) | [protected, virtual] |
create buffer
This function creates a publisher based on given information.
info | Connector information |
virtual void RTC::OutPortPushConnector::deactivate | ( | ) | [virtual] |
virtual ReturnCode RTC::OutPortPushConnector::disconnect | ( | ) | [virtual] |
disconnect
This operation destruct and delete the consumer, the publisher and the buffer.
Implements RTC::OutPortConnector.
virtual CdrBufferBase* RTC::OutPortPushConnector::getBuffer | ( | ) | [virtual] |
void RTC::OutPortPushConnector::onConnect | ( | ) | [protected] |
Invoke callback when connection is established.
void RTC::OutPortPushConnector::onDisconnect | ( | ) | [protected] |
Invoke callback when connection is destroied.
virtual ReturnCode RTC::OutPortPushConnector::write | ( | const cdrMemoryStream & | data | ) | [virtual] |
Writing data.
This operation writes data into publisher and then the data will be transferred to correspondent InPort. If data is written properly, this function will return PORT_OK return code. Except normal return, CONNECTION_LOST, BUFFER_FULL, BUFFER_ERROR, PORT_ERROR, BUFFER_TIMEOUT and PRECONDITION_NO_MET will be returned as error codes.
Implements RTC::OutPortConnector.