Orocos Real-Time Toolkit
2.6.0
|
Implements the CRemoteChannelElement of the CORBA IDL interface. More...
#include <rtt/transports/corba/RemoteChannelElement.hpp>
Public Types | |
typedef T | value_t |
typedef boost::intrusive_ptr < ChannelElement< T > > | shared_ptr |
typedef boost::call_traits< T > ::param_type | param_t |
typedef boost::call_traits< T > ::reference | reference_t |
Public Member Functions | |
RemoteChannelElement (CorbaTypeTransporter const &transport, DataFlowInterface *sender, PortableServer::POA_ptr poa, bool is_pull) | |
Create a channel element for remote data exchange. | |
void | _add_ref () |
Increase the reference count, called from the CORBA side. | |
void | _remove_ref () |
Decrease the reference count, called from the CORBA side. | |
CORBA::Boolean | remoteSignal () ACE_THROW_SPEC((CORBA |
CORBA IDL function. | |
bool | signal () |
Signals that there is new data available on this channel By default, the channel element forwards the call to its output. | |
virtual void | transferSamples () |
void | disconnect () ACE_THROW_SPEC((CORBA |
CORBA IDL function. | |
void | remoteDisconnect (bool writer_to_reader) ACE_THROW_SPEC((CORBA |
void | disconnect (bool writer_to_reader) ACE_THROW_SPEC((CORBA |
CORBA IDL function. | |
FlowStatus | read (typename base::ChannelElement< T >::reference_t sample, bool copy_old_data) |
CFlowStatus | read (::CORBA::Any_out sample, bool copy_old_data) ACE_THROW_SPEC((CORBA |
CORBA IDL function. | |
bool | write (typename base::ChannelElement< T >::param_t sample) |
bool | write (const ::CORBA::Any &sample) ACE_THROW_SPEC((CORBA |
CORBA IDL function. | |
virtual bool | data_sample (typename base::ChannelElement< T >::param_t sample) |
virtual bool | inputReady () |
CORBA IDL function. | |
virtual RTT::corba::CRemoteChannelElement_ptr | activate_this () |
void | setCDataFlowInterface (CDataFlowInterface_i *dataflow) |
PortableServer::POA_ptr | _default_POA () |
shared_ptr | getOutput () |
Returns the next channel element in the channel's propagation direction. | |
shared_ptr | getInput () |
Returns the current input channel element. | |
virtual bool | data_sample (param_t sample) |
Provides a data sample to initialize this connection. | |
virtual value_t | data_sample () |
virtual bool | write (param_t sample) |
Writes a new sample on this connection. | |
virtual FlowStatus | read (reference_t sample, bool copy_old_data) |
Reads a sample from the connection. | |
void | removeInput () |
Removes the input channel (if any). | |
ChannelElementBase::shared_ptr | getInputEndPoint () |
Returns the first input channel element of this connection. | |
ChannelElementBase::shared_ptr | getOutputEndPoint () |
Returns the last output channel element of this connection. | |
void | setOutput (shared_ptr output) |
Sets the output of this channel element to output and sets the input of output to this. | |
virtual void | clear () |
Clears any data stored by the channel. | |
virtual PortInterface * | getPort () const |
Gets the port this channel element is connected to. | |
Protected Member Functions | |
void | ref () |
Increases the reference count. | |
void | deref () |
Decreases the reference count, and deletes the object if it is zero. | |
Protected Attributes | |
CRemoteChannelElement_var | remote_side |
RTT::corba::CorbaTypeTransporter const & | transport |
PortableServer::POA_var | mpoa |
CDataFlowInterface_i * | mdataflow |
Implements the CRemoteChannelElement of the CORBA IDL interface.
It converts the C++ calls into CORBA calls and vice versa. A read will cause a call to the remote channel (which is of the same type of this RemoteChannelElement) which returns an Any with the data. A similar mechanism is in place for a write.
Definition at line 58 of file RemoteChannelElement.hpp.
RTT::corba::RemoteChannelElement< T >::RemoteChannelElement | ( | CorbaTypeTransporter const & | transport, |
DataFlowInterface * | sender, | ||
PortableServer::POA_ptr | poa, | ||
bool | is_pull | ||
) | [inline] |
Create a channel element for remote data exchange.
transport | The type specific object that will be used to marshal the data. |
poa | The POA that manages the underlying CRemoteChannelElement_i. |
Definition at line 93 of file RemoteChannelElement.hpp.
References RTT::corba::CorbaDispatcher::Instance(), and RTT::base::ChannelElementBase::ref().
void ChannelElementBase::clear | ( | ) | [virtual, inherited] |
Clears any data stored by the channel.
It means that ChannelElement::read() will return false afterwards (provided that no new data has been written on the meantime of course)
By default, the channel element forwards the calls to its input
Reimplemented in RTT::internal::ChannelBufferElement< T >, and RTT::internal::ChannelDataElement< T >.
Definition at line 116 of file ChannelInterface.cpp.
References RTT::base::ChannelElementBase::getInput().
virtual bool RTT::base::ChannelElement< T >::data_sample | ( | param_t | sample | ) | [inline, virtual, inherited] |
Provides a data sample to initialize this connection.
This is used before the first write() in order to inform this connection of the size of the data. As such enough storage space can be allocated before the actual writing begins.
Reimplemented in RTT::internal::ChannelBufferElement< T >, and RTT::internal::ChannelDataElement< T >.
Definition at line 82 of file ChannelElement.hpp.
References RTT::base::ChannelElement< T >::data_sample(), and RTT::base::ChannelElement< T >::getOutput().
Referenced by RTT::base::ChannelElement< T >::data_sample(), RTT::InputPort< T >::getDataSample(), and RTT::mqueue::MQChannelElement< T >::inputReady().
shared_ptr RTT::base::ChannelElement< T >::getInput | ( | ) | [inline, inherited] |
Returns the current input channel element.
This will only return a valid channel element if another element has received this object as an argument to setOutput().
Reimplemented from RTT::base::ChannelElementBase.
Definition at line 68 of file ChannelElement.hpp.
Referenced by RTT::corba::RemoteChannelElement< T >::inputReady(), RTT::base::ChannelElement< T >::read(), and RTT::mqueue::MQChannelElement< T >::signal().
ChannelElementBase::shared_ptr ChannelElementBase::getInputEndPoint | ( | ) | [inherited] |
Returns the first input channel element of this connection.
Will return the channel element the furthest away from the input port, or this if none.
Definition at line 96 of file ChannelInterface.cpp.
References RTT::base::ChannelElementBase::getInput().
ChannelElementBase::shared_ptr ChannelElementBase::getOutputEndPoint | ( | ) | [inherited] |
Returns the last output channel element of this connection.
Will return the channel element the furthest away from the output port, or this if none.
Definition at line 101 of file ChannelInterface.cpp.
References RTT::base::ChannelElementBase::getOutput().
PortInterface * ChannelElementBase::getPort | ( | ) | const [virtual, inherited] |
Gets the port this channel element is connected to.
Reimplemented in RTT::internal::ConnOutputEndpoint< T >, and RTT::internal::ConnInputEndpoint< T >.
Definition at line 131 of file ChannelInterface.cpp.
virtual FlowStatus RTT::base::ChannelElement< T >::read | ( | reference_t | sample, |
bool | copy_old_data | ||
) | [inline, virtual, inherited] |
Reads a sample from the connection.
sample is a reference which will get updated if a sample is available. The method returns true if a sample was available, and false otherwise. If false is returned, then sample is not modified by the method
Reimplemented in RTT::internal::ChannelBufferElement< T >, and RTT::internal::ChannelDataElement< T >.
Definition at line 116 of file ChannelElement.hpp.
References RTT::base::ChannelElement< T >::getInput(), and RTT::base::ChannelElement< T >::read().
Referenced by RTT::base::ChannelElement< T >::read(), and RTT::mqueue::MQChannelElement< T >::signal().
void RTT::base::ChannelElementBase::removeInput | ( | ) | [inherited] |
Removes the input channel (if any).
This call may delete channels from memory.
void ChannelElementBase::setOutput | ( | shared_ptr | output | ) | [inherited] |
Sets the output of this channel element to output and sets the input of output to this.
This implies that this channel element becomes the input of output. There is no setInput function since this function does both setting input and output of this and output.
output | the next element in chain. |
Definition at line 68 of file ChannelInterface.cpp.
Referenced by RTT::internal::ConnFactory::buildBufferedChannelInput(), RTT::internal::ConnFactory::buildBufferedChannelOutput(), and RTT::internal::ConnFactory::buildChannelInput().
bool RTT::corba::RemoteChannelElement< T >::signal | ( | ) | [inline, virtual] |
Signals that there is new data available on this channel By default, the channel element forwards the call to its output.
Reimplemented from RTT::base::ChannelElementBase.
Definition at line 134 of file RemoteChannelElement.hpp.
References RTT::corba::CorbaDispatcher::Instance().
Referenced by RTT::corba::RemoteChannelElement< T >::remoteSignal().
virtual bool RTT::base::ChannelElement< T >::write | ( | param_t | sample | ) | [inline, virtual, inherited] |
Writes a new sample on this connection.
sample is the sample to write.
Reimplemented in RTT::internal::ChannelBufferElement< T >, and RTT::internal::ChannelDataElement< T >.
Definition at line 103 of file ChannelElement.hpp.
References RTT::base::ChannelElement< T >::getOutput(), and RTT::base::ChannelElement< T >::write().
Referenced by RTT::mqueue::MQChannelElement< T >::signal(), and RTT::base::ChannelElement< T >::write().