Orocos Real-Time Toolkit  2.8.3
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
RTT::internal::AssignableDataSource< T > Class Template Referenceabstract

A DataSource which has set() methods. More...

#include <rtt/internal/DataSource.hpp>

Inheritance diagram for RTT::internal::AssignableDataSource< T >:
RTT::internal::DataSource< T > RTT::base::DataSourceBase RTT::corba::ValueDataSourceProxy< T > RTT::internal::ActionAliasAssignableDataSource< T > RTT::internal::ArrayDataSource< T > RTT::internal::ArrayPartDataSource< T > RTT::internal::InputPortSource< T > RTT::internal::LateReferenceDataSource< T > RTT::internal::PartDataSource< T > RTT::internal::ReferenceDataSource< T > RTT::internal::ValueDataSource< T > RTT::internal::ValueDataSource< ProgramInterfacePtr > RTT::internal::ValueDataSource< StateMachinePtr >

Public Types

typedef DataSource< T >::value_t value_t
 
typedef DataSource< T >::const_reference_t const_reference_t
 
typedef boost::call_traits< value_t >::param_type param_t
 
typedef boost::call_traits< value_t >::reference reference_t
 
typedef boost::intrusive_ptr< AssignableDataSource< T > > shared_ptr
 Use this type to store a pointer to an AssignableDataSource. More...
 
typedef boost::intrusive_ptr< const AssignableDataSource< T > > const_ptr
 
typedef T result_t
 

Public Member Functions

virtual void set (param_t t)=0
 Set this DataSource with a value. More...
 
virtual reference_t set ()=0
 Get a reference to the value of this DataSource. More...
 
void * getRawPointer ()
 Generic implementation of getRawPointer() based on set() More...
 
virtual bool isAssignable () const
 Returns true if this object can be cast to an AssignableDataSource. More...
 
virtual bool update (base::DataSourceBase *other)
 Update the value of this internal::DataSource with the value of an other DataSource. More...
 
virtual base::ActionInterfaceupdateAction (base::DataSourceBase *other)
 Generate a ActionInterface object which will update this internal::DataSource with the value of another internal::DataSource when execute()'ed. More...
 
virtual AssignableDataSource< T > * clone () const =0
 Return a shallow clone of this DataSource. More...
 
virtual AssignableDataSource< T > * copy (std::map< const base::DataSourceBase *, base::DataSourceBase * > &alreadyCloned) const =0
 Create a deep copy of this internal::DataSource, unless it is already cloned. More...
 
 BOOST_STATIC_ASSERT (!details::HasConst< T >::value)
 If you get a compile error here, it means T has const or reference qualifiers, which is not allowed for DataSource<T> More...
 
virtual result_t get () const =0
 Return the data as type T. More...
 
virtual result_t value () const =0
 Return the result of the last evaluate() function. More...
 
virtual const_reference_t rvalue () const =0
 Get a const reference to the value of this DataSource. More...
 
void const * getRawConstPointer ()
 Generic implementation of getRawConstPointer() based on rvalue() More...
 
template<>
void const * getRawConstPointer ()
 Returns a const pointer to the sample contained in this data source, if there is any. More...
 
virtual bool evaluate () const
 Force an evaluation of the DataSourceBase. More...
 
virtual std::string getType () const
 Return useful type info in a human readable format. More...
 
virtual const types::TypeInfogetTypeInfo () const
 Return the Orocos type info object. More...
 
virtual std::string getTypeName () const
 Return the Orocos type name, without const, pointer or reference qualifiers. More...
 
void ref () const
 Increase the reference count by one. More...
 
void deref () const
 Decrease the reference count by one and delete this on zero. More...
 
virtual void reset ()
 Reset the data to initial values. More...
 
virtual void updated ()
 In case the internal::DataSource returns a 'reference' type, call this method to notify it that the data was updated in the course of an invocation of get(). More...
 
virtual shared_ptr getMember (const std::string &member_name)
 Get a (const) reference data source to a member of the structure of this data source. More...
 
virtual shared_ptr getMember (DataSourceBase::shared_ptr member_id, DataSourceBase::shared_ptr offset)
 Same as above, but with run-time lookup of the member to use. More...
 
virtual std::vector< std::string > getMemberNames () const
 Returns the names of all members of the structure contained in this data source, or an empty list if none. More...
 
virtual shared_ptr getParent ()
 Returns the top level data source that contains the full data structure this data source refers to. More...
 
std::ostream & write (std::ostream &os)
 Stream the contents of this object. More...
 
std::string toString ()
 Get the contents of this object as a string. More...
 

Static Public Member Functions

static AssignableDataSource< T > * narrow (base::DataSourceBase *db)
 This method narrows a base::DataSourceBase to a typeded AssignableDataSource, possibly returning a new object. More...
 
static std::string GetType ()
 Return usefull type info in a human readable format. More...
 
static const types::TypeInfoGetTypeInfo ()
 Return the Orocos type info. More...
 
static std::string GetTypeName ()
 Return the Orocos type name, without const, pointer or reference qualifiers. More...
 
static shared_ptr stack_shared_ptr (DataSourceBase *dsb)
 Returns a shared ptr to a DataSourceBase living on the stack. More...
 
static const_ptr stack_const_ptr (const DataSourceBase *dsb)
 Returns a const shared_ptr to a DataSourceBase living on the stack. More...
 

Protected Member Functions

 ~AssignableDataSource ()
 

Protected Attributes

os::AtomicInt refcount
 We keep the refcount ourselves. More...
 

Detailed Description

template<typename T>
class RTT::internal::AssignableDataSource< T >

A DataSource which has set() methods.

Parameters
TSee DataSource for the semantics of T.

Definition at line 184 of file DataSource.hpp.

Member Typedef Documentation

template<typename T>
typedef boost::intrusive_ptr<const AssignableDataSource<T> > RTT::internal::AssignableDataSource< T >::const_ptr

Definition at line 199 of file DataSource.hpp.

Definition at line 191 of file DataSource.hpp.

template<typename T>
typedef boost::call_traits<value_t>::param_type RTT::internal::AssignableDataSource< T >::param_t

Definition at line 192 of file DataSource.hpp.

template<typename T>
typedef boost::call_traits<value_t>::reference RTT::internal::AssignableDataSource< T >::reference_t

Definition at line 193 of file DataSource.hpp.

template<typename T>
typedef T RTT::internal::DataSource< T >::result_t
inherited

Definition at line 106 of file DataSource.hpp.

template<typename T>
typedef boost::intrusive_ptr<AssignableDataSource<T> > RTT::internal::AssignableDataSource< T >::shared_ptr

Use this type to store a pointer to an AssignableDataSource.

Definition at line 198 of file DataSource.hpp.

template<typename T>
typedef DataSource<T>::value_t RTT::internal::AssignableDataSource< T >::value_t

Definition at line 190 of file DataSource.hpp.

Constructor & Destructor Documentation

template<typename T >
RTT::internal::AssignableDataSource< T >::~AssignableDataSource ( )
protected

Definition at line 62 of file DataSource.inl.

Member Function Documentation

template<typename T>
RTT::internal::DataSource< T >::BOOST_STATIC_ASSERT ( !details::HasConst< T >::value  )
inherited

If you get a compile error here, it means T has const or reference qualifiers, which is not allowed for DataSource<T>

template<typename T>
virtual AssignableDataSource<T>* RTT::internal::AssignableDataSource< T >::clone ( ) const
pure virtual
template<typename T>
virtual AssignableDataSource<T>* RTT::internal::AssignableDataSource< T >::copy ( std::map< const base::DataSourceBase *, base::DataSourceBase * > &  alreadyCloned) const
pure virtual
void RTT::DataSourceBase::deref ( ) const
inherited

Decrease the reference count by one and delete this on zero.

Definition at line 81 of file DataSource.cpp.

References RTT::os::AtomicInt::dec_and_test(), and RTT::base::DataSourceBase::refcount.

Referenced by RTT::base::intrusive_ptr_release().

template<typename T >
bool RTT::internal::DataSource< T >::evaluate ( ) const
virtualinherited
template<typename T>
virtual result_t RTT::internal::DataSource< T >::get ( ) const
pure virtualinherited

Return the data as type T.

Implemented in RTT::internal::NArityDataSource< function >, RTT::internal::UnaryDataSource< function >, RTT::internal::BinaryDataSource< function >, RTT::internal::ActionAliasAssignableDataSource< T >, RTT::internal::ActionAliasDataSource< T >, RTT::internal::LateConstReferenceDataSource< T >, RTT::internal::LateConstReferenceDataSource< A >, RTT::internal::FusedMCollectDataSource< Signature >, RTT::internal::LateReferenceDataSource< T >, RTT::internal::LateReferenceDataSource< ds_type >, RTT::internal::FusedMSendDataSource< Signature >, RTT::internal::ArrayDataSource< T >, CorbaOperationCallerCollect, RTT::internal::FusedMCallDataSource< Signature >, RTT::internal::AliasDataSource< T >, RTT::internal::ReferenceDataSource< T >, RTT::internal::ReferenceDataSource< ds_type >, RTT::internal::FusedFunctorDataSource< Signature, typename boost::enable_if< is_pure_reference< typename boost::function_traits< Signature >::result_type > >::type >, RTT::corba::ValueDataSourceProxy< T >, RTT::internal::ConstReferenceDataSource< T >, RTT::internal::PartDataSource< types::carray< T > >, RTT::internal::ConstantDataSource< T >, RTT::internal::FusedFunctorDataSource< Signature, Enable >, RTT::corba::DataSourceProxy< T >, RTT::internal::InputPortSource< T >, RTT::internal::ArrayPartDataSource< T >, RTT::internal::PartDataSource< T >, RTT::corba::AnyDataSource, RTT::internal::ValueDataSource< T >, RTT::internal::ValueDataSource< ProgramInterfacePtr >, RTT::internal::ValueDataSource< ds_type >, RTT::internal::ValueDataSource< StateMachinePtr >, RTT::internal::DataSourceCommand, RTT::scripting::DataSourceCondition, RTT::scripting::DataSourceTime, and RTT::internal::DataObjectDataSource< T >.

Referenced by RTT::types::TemplateValueFactory< bool >::buildActionAlias(), RTT::types::TemplateValueFactory< bool >::buildConstant(), RTT::scripting::ConditionCompare< T, compare_op >::clone(), RTT::scripting::ConditionBoolDataSource::clone(), RTT::scripting::CallFunction::clone(), RTT::Attribute< T >::clone(), RTT::internal::AliasDataSource< T >::clone(), RTT::Constant< T >::clone(), RTT::internal::ActionAliasDataSource< T >::clone(), RTT::internal::ActionAliasAssignableDataSource< T >::clone(), RTT::internal::BinaryDataSource< function >::clone(), RTT::internal::UnaryDataSource< function >::clone(), RTT::types::EnumTypeInfo< T >::composeType(), RTT::Attribute< T >::copy(), RTT::Constant< T >::copy(), RTT::types::EnumTypeInfo< T >::decomposeType(), RTT::scripting::StatementProcessor::D::doPrint(), RTT::scripting::ConditionBoolDataSource::evaluate(), RTT::scripting::ConditionDSDuration::evaluate(), RTT::scripting::ConditionCompare< T, compare_op >::evaluate(), RTT::scripting::TryCommandResult::evaluate(), RTT::scripting::EvalCommandResult::evaluate(), RTT::scripting::TryCommand::execute(), RTT::internal::ArrayPartDataSource< T >::get(), RTT::Property< bool >::get(), RTT::internal::AliasDataSource< T >::get(), RTT::Constant< T >::get(), RTT::internal::FusedMCollectDataSource< Signature >::get(), RTT::internal::ActionAliasDataSource< T >::get(), RTT::internal::ActionAliasAssignableDataSource< T >::get(), RTT::internal::BinaryDataSource< function >::get(), RTT::internal::UnaryDataSource< function >::get(), RTT::types::StructTypeInfo< T, has_ostream >::getMember(), RTT::types::BoostArrayTypeInfo< T, has_ostream >::getMember(), RTT::types::CArrayTypeInfo< T, has_ostream >::getMember(), RTT::types::SequenceTypeInfoBase< std::vector< double > >::getMember(), RTT::scripting::ConditionParser::getParseResult(), RTT::mqueue::MQSerializationProtocol< T >::getSampleSize(), RTT::Property< bool >::operator value_t(), RTT::internal::ArrayPartDataSource< T >::rvalue(), RTT::internal::ArrayPartDataSource< T >::set(), RTT::types::typeDecomposition(), RTT::scripting::TryCommand::valid(), RTT::internal::ArrayPartDataSource< T >::value(), and RTT::OutputPort< T >::write().

DataSourceBase::shared_ptr RTT::DataSourceBase::getMember ( const std::string &  member_name)
virtualinherited

Get a (const) reference data source to a member of the structure of this data source.

You must call getMember() in turn on the returned member to access sub-members.

Parameters
member_nameThe name of the member to get access to.
Returns
null if the member does not exist, this if member_name.empty(), and a reference data source to the member otherwise.

Definition at line 124 of file DataSource.cpp.

References RTT::types::TypeInfo::getMember(), and RTT::base::DataSourceBase::getTypeInfo().

DataSourceBase::shared_ptr RTT::DataSourceBase::getMember ( DataSourceBase::shared_ptr  member_id,
DataSourceBase::shared_ptr  offset 
)
virtualinherited

Same as above, but with run-time lookup of the member to use.

Also takes an optional offset argument which can be used to offset the member in memory. This is necessary when using sequences of sequences. DataSources which are a sequence/offset member themselves must override this function to let the returned member take the offset into account.

Definition at line 130 of file DataSource.cpp.

References RTT::types::TypeInfo::getMember(), and RTT::base::DataSourceBase::getTypeInfo().

vector< string > RTT::DataSourceBase::getMemberNames ( ) const
virtualinherited

Returns the names of all members of the structure contained in this data source, or an empty list if none.

If this data source is a sequence, it will not return the allowed index numbers.

Definition at line 134 of file DataSource.cpp.

References RTT::types::TypeInfo::getMemberNames(), and RTT::base::DataSourceBase::getTypeInfo().

DataSourceBase::shared_ptr RTT::DataSourceBase::getParent ( )
virtualinherited

Returns the top level data source that contains the full data structure this data source refers to.

Defaults to returning this.

Definition at line 138 of file DataSource.cpp.

template<>
void const * RTT::internal::DataSource< void >::getRawConstPointer ( )
inlinevirtualinherited

Returns a const pointer to the sample contained in this data source, if there is any.

Returns 0 otherwise

Reimplemented from RTT::base::DataSourceBase.

Definition at line 59 of file DataSource.inl.

template<typename T>
void const* RTT::internal::DataSource< T >::getRawConstPointer ( )
inlinevirtualinherited

Generic implementation of getRawConstPointer() based on rvalue()

Reimplemented from RTT::base::DataSourceBase.

Definition at line 141 of file DataSource.hpp.

template<typename T>
void* RTT::internal::AssignableDataSource< T >::getRawPointer ( )
inlinevirtual

Generic implementation of getRawPointer() based on set()

Reimplemented from RTT::base::DataSourceBase.

Definition at line 214 of file DataSource.hpp.

template<typename T >
std::string RTT::internal::DataSource< T >::getType ( ) const
virtualinherited

Return useful type info in a human readable format.

Implements RTT::base::DataSourceBase.

Reimplemented in RTT::corba::DataSourceProxy< T >.

Definition at line 20 of file DataSource.inl.

References RTT::internal::DataSource< T >::GetType().

template<typename T >
std::string RTT::internal::DataSource< T >::GetType ( )
staticinherited
template<typename T >
const types::TypeInfo * RTT::internal::DataSource< T >::getTypeInfo ( ) const
virtualinherited

Return the Orocos type info object.

Implements RTT::base::DataSourceBase.

Definition at line 46 of file DataSource.inl.

template<typename T >
const types::TypeInfo * RTT::internal::DataSource< T >::GetTypeInfo ( )
staticinherited
template<typename T >
std::string RTT::internal::DataSource< T >::GetTypeName ( )
staticinherited

Return the Orocos type name, without const, pointer or reference qualifiers.

Definition at line 39 of file DataSource.inl.

References RTT::internal::DataSourceTypeInfo< T >::getTypeName().

Referenced by RTT::internal::DataSource< T >::getTypeName().

template<typename T >
std::string RTT::internal::DataSource< T >::getTypeName ( ) const
virtualinherited

Return the Orocos type name, without const, pointer or reference qualifiers.

Implements RTT::base::DataSourceBase.

Definition at line 26 of file DataSource.inl.

References RTT::internal::DataSource< T >::GetTypeName().

Referenced by RTT::types::SequenceTypeInfoBase< std::vector< double > >::getMember(), and RTT::corba::RemoteChannelElement< T >::read().

template<typename T>
virtual bool RTT::internal::AssignableDataSource< T >::isAssignable ( ) const
inlinevirtual

Returns true if this object can be cast to an AssignableDataSource.

When this method returns true, all update functions below will return as well when valid input is given.

Reimplemented from RTT::base::DataSourceBase.

Definition at line 216 of file DataSource.hpp.

template<class T >
AssignableDataSource< T > * RTT::internal::AssignableDataSource< T >::narrow ( base::DataSourceBase db)
static
void RTT::DataSourceBase::ref ( ) const
inherited
void RTT::DataSourceBase::reset ( )
virtualinherited
template<typename T>
virtual const_reference_t RTT::internal::DataSource< T >::rvalue ( ) const
pure virtualinherited

Get a const reference to the value of this DataSource.

You must call evaluate() prior to calling this function in order to get the most recent value of this attribute.

Note
Getting a reference to an internal data structure is not thread-safe.

Implemented in RTT::internal::NArityDataSource< function >, RTT::internal::UnaryDataSource< function >, RTT::internal::BinaryDataSource< function >, RTT::internal::ActionAliasAssignableDataSource< T >, RTT::internal::ActionAliasDataSource< T >, RTT::internal::LateConstReferenceDataSource< T >, RTT::internal::LateConstReferenceDataSource< A >, RTT::internal::FusedMCollectDataSource< Signature >, RTT::internal::LateReferenceDataSource< T >, RTT::internal::LateReferenceDataSource< ds_type >, RTT::internal::FusedMSendDataSource< Signature >, RTT::internal::ArrayDataSource< T >, CorbaOperationCallerCollect, RTT::internal::AliasDataSource< T >, RTT::internal::FusedMCallDataSource< Signature >, RTT::internal::ReferenceDataSource< T >, RTT::internal::ReferenceDataSource< ds_type >, RTT::internal::PartDataSource< types::carray< T > >, RTT::internal::FusedFunctorDataSource< Signature, typename boost::enable_if< is_pure_reference< typename boost::function_traits< Signature >::result_type > >::type >, RTT::internal::ConstReferenceDataSource< T >, RTT::corba::ValueDataSourceProxy< T >, RTT::internal::ConstantDataSource< T >, RTT::internal::ArrayPartDataSource< T >, RTT::internal::FusedFunctorDataSource< Signature, Enable >, RTT::internal::PartDataSource< T >, RTT::corba::DataSourceProxy< T >, RTT::internal::ValueDataSource< T >, RTT::internal::ValueDataSource< ProgramInterfacePtr >, RTT::internal::ValueDataSource< ds_type >, RTT::internal::ValueDataSource< StateMachinePtr >, RTT::internal::InputPortSource< T >, RTT::corba::AnyDataSource, RTT::scripting::DataSourceTime, RTT::internal::DataSourceCommand, RTT::scripting::DataSourceCondition, and RTT::internal::DataObjectDataSource< T >.

Referenced by RTT::types::TemplateValueFactory< bool >::buildConstant(), RTT::types::TemplateCompositionFactory< bool >::composeType(), RTT::types::StdVectorTypeInfo::composeType(), RTT::types::StdVectorTemplateTypeInfo< T, has_ostream >::composeType(), RTT::types::BoostArrayTypeInfo< T, has_ostream >::composeType(), RTT::types::SequenceTypeInfoBase< std::vector< double > >::composeType(), RTT::types::CArrayTypeInfo< T, has_ostream >::composeType(), RTT::corba::CorbaTemplateProtocol< T >::createAny(), RTT::types::decomposePropertyBag(), RTT::types::TemplateCompositionFactory< bool >::decomposeType(), RTT::mqueue::MQSerializationProtocol< T >::fillBlob(), RTT::corba::ValueDataSourceProxy< T >::get(), RTT::Attribute< T >::get(), RTT::types::CArrayTypeInfo< T, has_ostream >::getMember(), RTT::corba::ValueDataSourceProxy< T >::rvalue(), RTT::Property< bool >::rvalue(), RTT::internal::AliasDataSource< T >::rvalue(), RTT::internal::ActionAliasDataSource< T >::rvalue(), RTT::internal::ActionAliasAssignableDataSource< T >::rvalue(), RTT::types::typeDecomposition(), RTT::corba::CorbaTemplateProtocol< T >::updateAny(), RTT::corba::ValueDataSourceProxy< T >::value(), RTT::types::PrimitiveTypeInfo< std::vector< T >, use_ostream >::write(), and RTT::OutputPort< T >::write().

template<typename T>
virtual void RTT::internal::AssignableDataSource< T >::set ( param_t  t)
pure virtual

Set this DataSource with a value.

Referenced by RTT::internal::SendHandleC::collect(), RTT::internal::SendHandleC::collectIfDone(), RTT::types::TemplateCompositionFactory< bool >::composeType(), RTT::types::StdVectorTypeInfo::composeType(), RTT::types::StdVectorTemplateTypeInfo< T, has_ostream >::composeType(), RTT::types::EnumTypeInfo< T >::composeType(), RTT::types::BoostArrayTypeInfo< T, has_ostream >::composeType(), RTT::types::SequenceTypeInfoBase< std::vector< double > >::composeType(), RTT::types::CArrayTypeInfo< T, has_ostream >::composeType(), RTT::Property< bool >::copy(), RTT::scripting::ConditionCache::evaluate(), RTT::scripting::TryCommand::execute(), RTT::scripting::EvalCommand::execute(), CorbaOperationCallerCall::execute(), RTT::corba::ValueDataSourceProxy< T >::get(), RTT::types::BoostArrayTypeInfo< T, has_ostream >::getMember(), RTT::types::StructTypeInfo< T, has_ostream >::getMember(), RTT::types::CArrayTypeInfo< T, has_ostream >::getMember(), RTT::Property< bool >::operator=(), RTT::types::BoolTypeInfo::read(), RTT::types::PrimitiveTypeInfo< std::vector< T >, use_ostream >::read(), RTT::InputPort< T >::read(), RTT::scripting::TryCommand::readArguments(), RTT::InputPort< T >::readNewest(), RTT::Property< bool >::refresh(), RTT::scripting::ConditionCache::reset(), RTT::scripting::TryCommand::reset(), RTT::scripting::EvalCommand::reset(), RTT::types::SequenceTypeInfoBase< std::vector< double > >::resize(), RTT::corba::ValueDataSourceProxy< T >::set(), RTT::Attribute< T >::set(), RTT::Property< bool >::set(), RTT::internal::ActionAliasAssignableDataSource< T >::set(), RTT::internal::ReferenceDataSource< ds_type >::setReference(), RTT::Property< bool >::update(), RTT::corba::CorbaTemplateProtocol< T >::updateFromAny(), RTT::mqueue::MQTemplateProtocol< T >::updateFromBlob(), RTT::mqueue::MQSerializationProtocol< T >::updateFromBlob(), and RTT::internal::SendHandleC::E::OperationKeeper::~OperationKeeper().

template<typename T>
virtual reference_t RTT::internal::AssignableDataSource< T >::set ( )
pure virtual
DataSourceBase::const_ptr RTT::DataSourceBase::stack_const_ptr ( const DataSourceBase dsb)
staticinherited

Returns a const shared_ptr to a DataSourceBase living on the stack.

Make sure that the const_ptr does not outlive the stacked element.

Definition at line 74 of file DataSource.cpp.

References RTT::base::DataSourceBase::ref().

DataSourceBase::shared_ptr RTT::DataSourceBase::stack_shared_ptr ( DataSourceBase dsb)
staticinherited

Returns a shared ptr to a DataSourceBase living on the stack.

Make sure that the shared_ptr does not outlive the stacked element.

Definition at line 69 of file DataSource.cpp.

References RTT::base::DataSourceBase::ref().

std::string RTT::DataSourceBase::toString ( )
inherited

Get the contents of this object as a string.

See also
types::TypeInfo

Definition at line 98 of file DataSource.cpp.

template<class T >
bool RTT::internal::AssignableDataSource< T >::update ( base::DataSourceBase other)
virtual

Update the value of this internal::DataSource with the value of an other DataSource.

Update does a full update of the value, adding extra information if necessary.

Precondition
this->isAssignable() == true
Returns
false if the DataSources are of different type OR if the contents of this internal::DataSource can not be updated.

Reimplemented from RTT::base::DataSourceBase.

Definition at line 78 of file DataSource.inl.

References RTT::types::TypeInfo::convert(), RTT::internal::DataSource< T >::evaluate(), RTT::internal::DataSourceTypeInfo< T >::getTypeInfo(), and RTT::internal::DataSource< T >::value().

template<class T >
base::ActionInterface * RTT::internal::AssignableDataSource< T >::updateAction ( base::DataSourceBase other)
virtual

Generate a ActionInterface object which will update this internal::DataSource with the value of another internal::DataSource when execute()'ed.

Precondition
this->isAssignable() == true
Returns
zero if the internal::DataSource types do not match OR if the contents of this internal::DataSource can not be updated.

Reimplemented from RTT::base::DataSourceBase.

Definition at line 94 of file DataSource.inl.

References RTT::types::TypeInfo::convert(), and RTT::internal::DataSourceTypeInfo< T >::getTypeInfo().

void RTT::DataSourceBase::updated ( )
virtualinherited
template<typename T>
virtual result_t RTT::internal::DataSource< T >::value ( ) const
pure virtualinherited

Return the result of the last evaluate() function.

You must call evaluate() prior to calling this function in order to get the most recent value of this attribute.

Implemented in RTT::internal::NArityDataSource< function >, RTT::internal::UnaryDataSource< function >, RTT::internal::BinaryDataSource< function >, RTT::internal::ActionAliasAssignableDataSource< T >, RTT::internal::ActionAliasDataSource< T >, RTT::internal::LateConstReferenceDataSource< T >, RTT::internal::LateConstReferenceDataSource< A >, RTT::internal::FusedMCollectDataSource< Signature >, RTT::internal::LateReferenceDataSource< T >, RTT::internal::LateReferenceDataSource< ds_type >, RTT::internal::FusedMSendDataSource< Signature >, RTT::internal::ArrayDataSource< T >, CorbaOperationCallerCollect, RTT::internal::AliasDataSource< T >, RTT::internal::FusedMCallDataSource< Signature >, RTT::internal::ReferenceDataSource< T >, RTT::internal::ReferenceDataSource< ds_type >, RTT::internal::FusedFunctorDataSource< Signature, typename boost::enable_if< is_pure_reference< typename boost::function_traits< Signature >::result_type > >::type >, RTT::internal::ConstReferenceDataSource< T >, RTT::internal::PartDataSource< types::carray< T > >, RTT::corba::ValueDataSourceProxy< T >, RTT::internal::ConstantDataSource< T >, RTT::internal::FusedFunctorDataSource< Signature, Enable >, RTT::corba::DataSourceProxy< T >, RTT::internal::ArrayPartDataSource< T >, RTT::internal::PartDataSource< T >, RTT::internal::InputPortSource< T >, RTT::internal::ValueDataSource< T >, RTT::corba::AnyDataSource, RTT::internal::ValueDataSource< ProgramInterfacePtr >, RTT::internal::ValueDataSource< ds_type >, RTT::internal::ValueDataSource< StateMachinePtr >, RTT::internal::DataSourceCommand, RTT::scripting::DataSourceCondition, RTT::scripting::DataSourceTime, and RTT::internal::DataObjectDataSource< T >.

Referenced by RTT::internal::NArityDataSource< function >::add(), RTT::internal::SendHandleC::collect(), RTT::internal::SendHandleC::collectIfDone(), RTT::scripting::ConditionCache::evaluate(), RTT::scripting::CommandDataSourceBool::execute(), RTT::scripting::EvalCommand::execute(), RTT::internal::AssignableDataSource< T >::update(), RTT::corba::ValueDataSourceProxy< T >::updated(), RTT::internal::AliasDataSource< T >::value(), RTT::internal::ActionAliasDataSource< T >::value(), RTT::internal::ActionAliasAssignableDataSource< T >::value(), and RTT::types::BoolTypeInfo::write().

std::ostream & RTT::DataSourceBase::write ( std::ostream &  os)
inherited

Stream the contents of this object.

See also
types::TypeInfo

Definition at line 91 of file DataSource.cpp.

Member Data Documentation

os::AtomicInt RTT::base::DataSourceBase::refcount
mutableprotectedinherited

We keep the refcount ourselves.

We aren't using boost::shared_ptr, because boost::intrusive_ptr is better, exactly because it can be used with refcounts that are stored in the class itself. Advantages are that the shared_ptr's for derived classes use the same refcount, which is of course very much desired, and that refcounting happens in an efficient way, which is also nice :)

Definition at line 88 of file DataSourceBase.hpp.

Referenced by RTT::base::DataSourceBase::deref(), and RTT::base::DataSourceBase::ref().


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