Public Member Functions | Private Attributes | List of all members
OpenRTM_aist.InPortPushConnector.InPortPushConnector Class Reference

InPortPushConnector class. More...

Inheritance diagram for OpenRTM_aist.InPortPushConnector.InPortPushConnector:
Inheritance graph
[legend]

Public Member Functions

def __del__ (self)
 Destructor. More...
 
def __init__ (self, info, provider, listeners, buffer=0)
 InPortPushConnector(ConnectorInfo info, InPortProvider* provider, ConnectorListeners listeners, CdrBufferBase* buffer = 0);. More...
 
def activate (self)
 Connector activation. More...
 
def createBuffer (self, profile)
 create buffer More...
 
def deactivate (self)
 Connector deactivation. More...
 
def disconnect (self)
 disconnect More...
 
def onConnect (self)
 Invoke callback when connection is established void onConnect() More...
 
def onDisconnect (self)
 Invoke callback when connection is destroied void onDisconnect() More...
 
def read (self, data)
 Reading data. More...
 
def write (self, data)
 Reading data. More...
 
- Public Member Functions inherited from OpenRTM_aist.InPortConnector.InPortConnector
def __del__ (self)
 Destructor. More...
 
def __init__ (self, info, buffer)
 ConstructorInPortConnector(ConnectorInfo& info, CdrBufferBase* buffer);. More...
 
def disconnect (self)
 Disconnect connection. More...
 
def getBuffer (self)
 Getting Buffer. More...
 
def id (self)
 Getting Connector ID. More...
 
def name (self)
 Getting Connector name. More...
 
def profile (self)
 Getting ConnectorInfo. More...
 
def read (self, data)
 Destructor. More...
 
def setConnectorInfo (self, profile)
 
def setDataType (self, data)
 
- Public Member Functions inherited from OpenRTM_aist.ConnectorBase.ConnectorBase
def __del__ (self)
 Destructor. More...
 
def activate (self)
 Connector activation. More...
 
def deactivate (self)
 Connector deactivation. More...
 
def disconnect (self)
 Disconnect connection. More...
 
def getBuffer (self)
 Getting Buffer. More...
 
def id (self)
 Getting Connector ID. More...
 
def name (self)
 Getting Connector name. More...
 
def profile (self)
 Getting Profile. More...
 
- Public Member Functions inherited from OpenRTM_aist.DataPortStatus.DataPortStatus
def __init__ (self)
 
def toString (status)
 Convert DataPortStatus into the string. More...
 

Private Attributes

 _buffer
 
 _deleteBuffer
 
 _listeners
 
 _provider
 

Additional Inherited Members

- Static Public Attributes inherited from OpenRTM_aist.DataPortStatus.DataPortStatus
int BUFFER_EMPTY = 4
 
int BUFFER_ERROR = 2
 
int BUFFER_FULL = 3
 
int BUFFER_TIMEOUT = 5
 
int CONNECTION_LOST = 12
 
int INVALID_ARGS = 10
 
int PORT_ERROR = 1
 
int PORT_OK = 0
 DataPortStatus return codes. More...
 
int PRECONDITION_NOT_MET = 11
 
int RECV_EMPTY = 8
 
int RECV_TIMEOUT = 9
 
int SEND_FULL = 6
 
int SEND_TIMEOUT = 7
 
 toString = staticmethod(toString)
 
int UNKNOWN_ERROR = 13
 

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

Definition at line 76 of file InPortPushConnector.py.

Constructor & Destructor Documentation

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.__init__ (   self,
  info,
  provider,
  listeners,
  buffer = 0 
)

InPortPushConnector(ConnectorInfo info, InPortProvider* provider, ConnectorListeners listeners, CdrBufferBase* buffer = 0);.

Definition at line 122 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.__del__ (   self)

Destructor.

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

Definition at line 162 of file InPortPushConnector.py.

Member Function Documentation

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.activate (   self)

Connector activation.

This operation activates this connector

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

Definition at line 288 of file InPortPushConnector.py.

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

create buffer

This function creates a buffer based on given information.

Parameters
infoConnector information
Returns
The poitner to the buffer

virtual CdrBufferBase* createBuffer(Profile& profile);

Definition at line 330 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.deactivate (   self)

Connector deactivation.

This operation deactivates this connector

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

Definition at line 306 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.disconnect (   self)

disconnect

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

Returns
PORT_OK

virtual ReturnCode disconnect();

Definition at line 254 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.onConnect (   self)

Invoke callback when connection is established void onConnect()

Definition at line 390 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.onDisconnect (   self)

Invoke callback when connection is destroied void onDisconnect()

Definition at line 402 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.read (   self,
  data 
)

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

virtual ReturnCode read(cdrMemoryStream& data); buffer returns BUFFER_OK BUFFER_EMPTY TIMEOUT PRECONDITION_NOT_MET

Definition at line 199 of file InPortPushConnector.py.

def OpenRTM_aist.InPortPushConnector.InPortPushConnector.write (   self,
  data 
)

Reading data.

This function write data to the buffer. If data is write properly, this function will return BUFFER_OK return code. Except normal return, BUFFER_FULL, TIMEOUT, PRECONDITION_NOT_MET and BUFFER_ERROR will be returned as error codes.

Returns
BUFFER_OK Normal return BUFFER_FULL Buffer full TIMEOUT Timeout PRECONDITION_NOT_MET Preconditin not met BUFFER_ERROR Other error

ReturnCode write(const OpenRTM::CdrData& data);

Definition at line 367 of file InPortPushConnector.py.

Member Data Documentation

OpenRTM_aist.InPortPushConnector.InPortPushConnector._buffer
private

Definition at line 132 of file InPortPushConnector.py.

OpenRTM_aist.InPortPushConnector.InPortPushConnector._deleteBuffer
private

Definition at line 128 of file InPortPushConnector.py.

OpenRTM_aist.InPortPushConnector.InPortPushConnector._listeners
private

Definition at line 125 of file InPortPushConnector.py.

OpenRTM_aist.InPortPushConnector.InPortPushConnector._provider
private

Definition at line 124 of file InPortPushConnector.py.


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


openrtm_aist_python
Author(s): Shinji Kurihara
autogenerated on Thu Jun 6 2019 19:11:37