Orocos Real-Time Toolkit  2.5.0
Public Types | Public Member Functions | Protected Member Functions
RTT::OperationCaller< SignatureT > Class Template Reference

A OperationCaller serves as a placeholder (aka 'proxy') for a remote Operation. More...

#include <rtt/OperationCaller.hpp>

Inheritance diagram for RTT::OperationCaller< SignatureT >:
RTT::base::OperationCallerBaseInvoker

List of all members.

Public Types

typedef SignatureT Signature
typedef
internal::InvokerSignature
< boost::function_traits
< Signature >::arity,
Signature, boost::shared_ptr
< base::OperationCallerBase
< Signature > > > 
Base
typedef boost::function_traits
< Signature >::result_type 
result_type
typedef boost::function_traits
< Signature > 
traits
typedef boost::shared_ptr
< base::OperationCallerBase
< Signature > > 
OperationCallerBasePtr

Public Member Functions

 OperationCaller ()
 Create an empty OperationCaller object.
 OperationCaller (std::string name, ExecutionEngine *caller=0)
 Create an empty OperationCaller object.
 OperationCaller (const OperationCaller &m)
 OperationCaller objects may be copied.
OperationCalleroperator= (const OperationCaller &m)
 OperationCaller objects may be assigned.
 OperationCaller (boost::shared_ptr< base::DisposableInterface > implementation, ExecutionEngine *caller=0)
 Initialise a nameless OperationCaller object from a local Operation.
 OperationCaller (OperationInterfacePart *part, ExecutionEngine *caller=0)
 Initialise a nameless OperationCaller object from an operation factory.
 OperationCaller (const std::string &name, ServicePtr service, ExecutionEngine *caller=0)
 Initialise a named OperationCaller object from a Service.
OperationCalleroperator= (boost::shared_ptr< base::DisposableInterface > implementation)
 OperationCaller objects may be assigned to an implementation.
OperationCalleroperator= (OperationInterfacePart *part)
 OperationCaller objects may be assigned to a part responsible for production of an implementation.
OperationCalleroperator= (ServicePtr service)
 Named OperationCaller objects may be looked up in a Service.
 ~OperationCaller ()
 Clean up the OperationCaller object.
bool ready () const
 Check if this OperationCaller is ready for execution.
std::string const & getName () const
 Get the name of this method.
bool setImplementation (boost::shared_ptr< base::DisposableInterface > implementation, ExecutionEngine *caller=0)
 Sets a new implementation for this method.
bool setImplementationPart (OperationInterfacePart *orp, ExecutionEngine *caller=0)
 Sets a new implementation for this method by using a service part.
const OperationCallerBasePtr getOperationCallerImpl () const
 Returns the internal implementation of the OperationCaller object.
void setOperationCallerImpl (OperationCallerBasePtr new_impl) const
 Sets the internal implementation of the OperationCaller object.
void setCaller (ExecutionEngine *caller)
 Sets the caller of this method after the implementation was set.
void disconnect ()
 Disconnects this caller from the operation it was connected to.

Protected Member Functions

void setupOperationCaller (OperationInterfacePart *part)
 If no local implementation of an operation could be found, this method tries it using the operationrepository factories.

Detailed Description

template<class SignatureT>
class RTT::OperationCaller< SignatureT >

A OperationCaller serves as a placeholder (aka 'proxy') for a remote Operation.

If you want to call an operation, you need a method to do it.

The OperationCaller has the exact same signature template argument as the operation it wishes to call.

Asynchronous methods need a caller's ExecutionEngine to be able to process the completion message. In case the caller has no ExecutionEngine, the GlobalExecutionEngine is used instead.

Definition at line 82 of file OperationCaller.hpp.


Constructor & Destructor Documentation

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( ) [inline]

Create an empty OperationCaller object.

Use assignment to initialise it.

Definition at line 103 of file OperationCaller.hpp.

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( std::string  name,
ExecutionEngine caller = 0 
) [inline]

Create an empty OperationCaller object.

Use assignment to initialise it.

Definition at line 111 of file OperationCaller.hpp.

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( const OperationCaller< SignatureT > &  m) [inline]

OperationCaller objects may be copied.

A deep copy is made of the implementation object such that using this object does not interfere when using the original, m.

Parameters:
mthe original

Definition at line 122 of file OperationCaller.hpp.

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( boost::shared_ptr< base::DisposableInterface implementation,
ExecutionEngine caller = 0 
) [inline]

Initialise a nameless OperationCaller object from a local Operation.

Parameters:
implementationThe implementation of the operation which is to be used by the OperationCaller object. This object will be cloned such that the method uses its own implementation.
callerThe ExecutionEngine which will be used to call us back in case of asynchronous communication. If zero, the global Engine is used.

Definition at line 158 of file OperationCaller.hpp.

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( OperationInterfacePart part,
ExecutionEngine caller = 0 
) [inline]

Initialise a nameless OperationCaller object from an operation factory.

Parameters:
partThe OperationInterfacePart which is used by the OperationCaller object to get the implementation.
callerThe ExecutionEngine which will be used to call us back in case of asynchronous communication. If zero, the global Engine is used.

Definition at line 179 of file OperationCaller.hpp.

template<class SignatureT>
RTT::OperationCaller< SignatureT >::OperationCaller ( const std::string &  name,
ServicePtr  service,
ExecutionEngine caller = 0 
) [inline]

Initialise a named OperationCaller object from a Service.

Parameters:
nameThe name of the operation to look for.
serviceThe Service where the operation will be looked up.
callerThe ExecutionEngine which will be used to call us back in case of asynchronous communication. If zero, the global Engine is used.

Definition at line 198 of file OperationCaller.hpp.


Member Function Documentation

template<class SignatureT>
void RTT::OperationCaller< SignatureT >::disconnect ( ) [inline, virtual]

Disconnects this caller from the operation it was connected to.

If this OperationCaller had a name, the name is still kept.

Postcondition:
this->ready() == false

Implements RTT::base::OperationCallerBaseInvoker.

Definition at line 371 of file OperationCaller.hpp.

template<class SignatureT>
OperationCaller& RTT::OperationCaller< SignatureT >::operator= ( const OperationCaller< SignatureT > &  m) [inline]

OperationCaller objects may be assigned.

A deep copy is made of the implementation object such that using this object does not interfere when using the original, m.

Parameters:
mthe original
Returns:
*this

Definition at line 136 of file OperationCaller.hpp.

template<class SignatureT>
OperationCaller& RTT::OperationCaller< SignatureT >::operator= ( boost::shared_ptr< base::DisposableInterface implementation) [inline]

OperationCaller objects may be assigned to an implementation.

This variant is used when a local implementation is available.

Parameters:
implementationthe implementation.
Returns:
*this

Definition at line 217 of file OperationCaller.hpp.

template<class SignatureT>
OperationCaller& RTT::OperationCaller< SignatureT >::operator= ( OperationInterfacePart part) [inline]

OperationCaller objects may be assigned to a part responsible for production of an implementation.

This variant is used when a only a remote implementation is available.

Parameters:
partThe part used by the OperationCaller to produce an implementation.
Returns:
*this

Definition at line 235 of file OperationCaller.hpp.

template<class SignatureT>
OperationCaller& RTT::OperationCaller< SignatureT >::operator= ( ServicePtr  service) [inline]

Named OperationCaller objects may be looked up in a Service.

Parameters:
serviceThe Service where the operation will be looked up.
Returns:
*this

Definition at line 255 of file OperationCaller.hpp.

template<class SignatureT>
bool RTT::OperationCaller< SignatureT >::ready ( ) const [inline, virtual]
template<class SignatureT>
void RTT::OperationCaller< SignatureT >::setCaller ( ExecutionEngine caller) [inline, virtual]

Sets the caller of this method after the implementation was set.

Parameters:
caller

Implements RTT::base::OperationCallerBaseInvoker.

Definition at line 365 of file OperationCaller.hpp.

template<class SignatureT>
bool RTT::OperationCaller< SignatureT >::setImplementation ( boost::shared_ptr< base::DisposableInterface impl,
ExecutionEngine caller = 0 
) [inline, virtual]

Sets a new implementation for this method.

Parameters:
implAn implementation object that can be upcast to the OperationCallerBase class type of this method.
callerThe engine of the calling TaskContext.
Returns:
true if the impl could be upcast to a matching OperationCallerBase type, false otherwise.

Implements RTT::base::OperationCallerBaseInvoker.

Definition at line 333 of file OperationCaller.hpp.

template<class SignatureT>
bool RTT::OperationCaller< SignatureT >::setImplementationPart ( OperationInterfacePart orp,
ExecutionEngine caller = 0 
) [inline, virtual]

Sets a new implementation for this method by using a service part.

Parameters:
orpA part obtained from a service's OperationInterface.
callerThe engine of the calling TaskContext.
Returns:
true if the part could produce the correct OperationCallerBase type, false otherwise.

Implements RTT::base::OperationCallerBaseInvoker.

Definition at line 342 of file OperationCaller.hpp.

template<class SignatureT>
void RTT::OperationCaller< SignatureT >::setupOperationCaller ( OperationInterfacePart part) [inline, protected]

If no local implementation of an operation could be found, this method tries it using the operationrepository factories.

Parameters:
part

Definition at line 381 of file OperationCaller.hpp.

Referenced by RTT::OperationCaller< int(const std::string &)>::OperationCaller().


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