OpenRTM-aist-Python 2.0.0
Public Member Functions | List of all members
OpenRTM_aist.InPortPullConnector.InPortPullConnector Class Reference

More...

Inheritance diagram for OpenRTM_aist.InPortPullConnector.InPortPullConnector:
OpenRTM_aist.InPortConnector.InPortConnector OpenRTM_aist.ConnectorBase.ConnectorBase OpenRTM_aist.DataPortStatus.DataPortStatus

Public Member Functions

def __init__ (self, info, consumer, listeners, buffer=None)
 
def __del__ (self)
 
def read (self, data=None)
 
def disconnect (self)
 
def activate (self)
 
def deactivate (self)
 
def createBuffer (self, profile)
 
def onConnect (self)
 
def onDisconnect (self)
 
def setOutPort (self, directOutPort)
 
def unsubscribeInterface (self, prop)
 
- Public Member Functions inherited from OpenRTM_aist.InPortConnector.InPortConnector
def __init__ (self, info, buffer)
 
def __del__ (self)
 
def profile (self)
 
def id (self)
 
def name (self)
 
def disconnect (self)
 
def getBuffer (self)
 
def read (self, data=None)
 
def setConsumer (self, consumer)
 
def unsubscribeInterface (self, prop)
 
def __del__ (self)
 
def profile (self)
 
def id (self)
 
def name (self)
 
def disconnect (self)
 
def getBuffer (self)
 
def activate (self)
 
def deactivate (self)
 
- Public Member Functions inherited from OpenRTM_aist.DataPortStatus.DataPortStatus
def toString (status)
 

Additional Inherited Members

- Static Public Attributes inherited from OpenRTM_aist.DataPortStatus.DataPortStatus
int PORT_OK = 0
 

Detailed Description

InPortPullConnector class

Connector class of InPort for pull type dataflow. When "pull" is specified as dataflow_type at the time of establishing connection, this object is generated and owned by the InPort. This connector and InPortPullConnector make a pair and realize pull 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.

InPortPullConnector owns and manages the following objects.

Data written into the OutPort is passed to the OutPortPullConnector::write(), and is written into the buffer. Consequently, InPort::read() and InPortPullConnector::read() call OutPortConsumer::get(), and it reads data from the buffer of OutPortPullConnector. Finally data would be written into the InPortPullConnector's buffer.

Since
1.0.0

Constructor & Destructor Documentation

◆ __init__()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.__init__ (   self,
  info,
  consumer,
  listeners,
  buffer = None 
)

Constructor

InPortPullConnector's constructor is given the following arguments. According to ConnectorInfo which includes connection information, a buffer is created. It is also given a pointer to the consumer object for the OutPort interface. The owner-ship of the pointer is owned by this OutPortPullConnector, it has responsibility to destruct the OutPortConsumer. OutPortPullConnector 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.

Parameters
infoConnectorInfo
consumerOutPortConsumer
listenersConnectorListeners type lsitener object list
bufferCdrBufferBase type buffer

InPortPullConnector(ConnectorInfo info, OutPortConsumer* consumer, ConnectorListeners& listeners, CdrBufferBase* buffer = 0);

Reimplemented from OpenRTM_aist.InPortConnector.InPortConnector.

◆ __del__()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.__del__ (   self)

Destructor

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

Reimplemented from OpenRTM_aist.InPortConnector.InPortConnector.

Member Function Documentation

◆ activate()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.activate (   self)

Connector activation

This operation activates this connector

virtual void activate(){}; // do nothing

Reimplemented from OpenRTM_aist.ConnectorBase.ConnectorBase.

◆ createBuffer()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.createBuffer (   self,
  profile 
)

create buffer

This function creates a buffer based on given information.

Parameters
infoConnector information
Returns
The poitner to the buffer

CdrBufferBase* createBuffer(Profile& profile);

◆ deactivate()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.deactivate (   self)

Connector deactivation

This operation deactivates this connector

virtual void deactivate(){}; // do nothing

Reimplemented from OpenRTM_aist.ConnectorBase.ConnectorBase.

◆ disconnect()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.disconnect (   self)

Disconnect connection

This operation disconnect this connection

virtual ReturnCode disconnect();

Reimplemented from OpenRTM_aist.InPortConnector.InPortConnector.

◆ onConnect()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.onConnect (   self)

Invoke callback when connection is established void onConnect()

◆ onDisconnect()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.onDisconnect (   self)

Invoke callback when connection is destroied void onDisconnect()

◆ read()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.read (   self,
  data = None 
)

Destructor

This function get data from OutPortConsumer. If data is read properly, this function will return PORT_OK return code. Except normal return, BUFFER_EMPTY, TIMEOUT, PRECONDITION_NOT_MET, UNKNOWN_ERROR 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 UNKNOWN_ERROR Unknown errot PORT_ERROR Other error

virtual ReturnCode read(cdrMemoryStream& data);

Reimplemented from OpenRTM_aist.InPortConnector.InPortConnector.

◆ setOutPort()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.setOutPort (   self,
  directOutPort 
)

Parameters
self
directOutPort
Returns

bool setOutPort(setOutPort* directOutPort);

◆ unsubscribeInterface()

def OpenRTM_aist.InPortPullConnector.InPortPullConnector.unsubscribeInterface (   self,
  prop 
)

Parameters
prop

Reimplemented from OpenRTM_aist.InPortConnector.InPortConnector.


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