Orocos Real-Time Toolkit  2.6.0
Public Types | Public Member Functions | Static Public Member Functions | Protected Attributes
RTT::internal::PartDataSource< types::carray< T > > Class Template Reference

Partial specialisation of PartDataSource for carray<T> types. More...

#include <rtt/internal/PartDataSource.hpp>

Inheritance diagram for RTT::internal::PartDataSource< types::carray< T > >:
RTT::internal::AssignableDataSource< types::carray< T > > RTT::internal::DataSource< types::carray< T > > RTT::base::DataSourceBase

List of all members.

Public Types

typedef boost::intrusive_ptr
< PartDataSource< T > > 
shared_ptr
 Use this type to store a pointer to an AssignableDataSource.
typedef DataSource
< types::carray< T >
>::value_t 
value_t
 The bare type of T is extracted into value_t.
typedef DataSource
< types::carray< 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
< const AssignableDataSource
< types::carray< T > > > 
const_ptr
 Use this type to store a const pointer to a DataSourceBase.
typedef types::carray< T > result_t

Public Member Functions

 PartDataSource (types::carray< T > ref, base::DataSourceBase::shared_ptr parent)
 The part is constructed from a reference to a member variable of an existing struct.
types::carray< T > get () const
 Return the data as type T.
types::carray< T > value () const
 Return the result of the last evaluate() function.
void set (typename AssignableDataSource< types::carray< T > >::param_t t)
types::carray< T > & set ()
 Get a reference to the value of this DataSource.
types::carray< T > const & rvalue () const
 Get a const reference to the value of this DataSource.
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().
virtual PartDataSourceclone () const
 Return a shallow clone of this DataSource.
virtual PartDataSourcecopy (std::map< const base::DataSourceBase *, base::DataSourceBase * > &replace) const
 Create a deep copy of this internal::DataSource, unless it is already cloned.
virtual void set (param_t t)=0
 Set this DataSource with a value.
void * getRawPointer ()
 Generic implementation of getRawPointer() based on set()
virtual bool isAssignable () const
 Returns true if this object can be cast to an AssignableDataSource.
virtual bool update (base::DataSourceBase *other)
 Update the value of this internal::DataSource with the value of an other DataSource.
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.
 BOOST_STATIC_ASSERT (!details::HasConst< types::carray< T > >::value)
 If you get a compile error here, it means T has const or reference qualifiers, which is not allowed for DataSource<T>
void const * getRawConstPointer ()
 Generic implementation of getRawConstPointer() based on rvalue()
virtual bool evaluate () const
 Force an evaluation of the DataSourceBase.
virtual std::string getType () const
 Return useful type info in a human readable format.
virtual const types::TypeInfogetTypeInfo () const
 Return the Orocos type info object.
virtual std::string getTypeName () const
 Return the Orocos type name, without const, pointer or reference qualifiers.
void ref () const
 Increase the reference count by one.
void deref () const
 Decrease the reference count by one and delete this on zero.
virtual void reset ()
 Reset the data to initial values.
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.
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.
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.
virtual shared_ptr getParent ()
 Returns the top level data source that contains the full data structure this data source refers to.
std::ostream & write (std::ostream &os)
 Stream the contents of this object.
std::string toString ()
 Get the contents of this object as a string.

Static Public Member Functions

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

Protected Attributes

os::AtomicInt refcount
 We keep the refcount ourselves.

Detailed Description

template<typename T>
class RTT::internal::PartDataSource< types::carray< T > >

Partial specialisation of PartDataSource for carray<T> types.

Definition at line 142 of file PartDataSource.hpp.


Constructor & Destructor Documentation

template<typename T >
RTT::internal::PartDataSource< types::carray< T > >::PartDataSource ( types::carray< T >  ref,
base::DataSourceBase::shared_ptr  parent 
) [inline]

The part is constructed from a reference to a member variable of an existing struct.

Parameters:
refReference to the struct's variable.
parentA data source holding the struct.

Definition at line 160 of file PartDataSource.hpp.


Member Function Documentation

template<typename T >
virtual PartDataSource* RTT::internal::PartDataSource< types::carray< T > >::clone ( ) const [inline, virtual]

Return a shallow clone of this DataSource.

This method returns a duplicate of this instance which re-uses the DataSources this internal::DataSource holds reference to. The clone() function is thus a non-deep copy.

Implements RTT::internal::AssignableDataSource< types::carray< T > >.

Definition at line 196 of file PartDataSource.hpp.

References RTT::internal::PartDataSource< T >::PartDataSource().

template<typename T >
virtual PartDataSource* RTT::internal::PartDataSource< types::carray< T > >::copy ( std::map< const base::DataSourceBase *, base::DataSourceBase * > &  alreadyCloned) const [inline, virtual]

Create a deep copy of this internal::DataSource, unless it is already cloned.

Places the association (parent, clone) in alreadyCloned. If the internal::DataSource is non-copyable (for example it represents the Property of a Task ), this may be returned.

Implements RTT::internal::AssignableDataSource< types::carray< T > >.

Definition at line 200 of file PartDataSource.hpp.

References RTT::types::carray< T >::init(), and RTT::internal::PartDataSource< T >::PartDataSource().

virtual bool RTT::internal::DataSource< types::carray< T > >::evaluate ( ) const [virtual, inherited]

Force an evaluation of the DataSourceBase.

Returns:
true on successful evaluation.

Implements RTT::base::DataSourceBase.

DataSourceBase::shared_ptr RTT::DataSourceBase::getMember ( const std::string &  member_name) [virtual, inherited]

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().

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 [virtual, inherited]

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().

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.

virtual bool RTT::internal::AssignableDataSource< types::carray< T > >::isAssignable ( ) const [inline, virtual, inherited]

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<typename T >
types::carray<T> const& RTT::internal::PartDataSource< types::carray< T > >::rvalue ( ) const [inline, virtual]

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.

Implements RTT::internal::DataSource< types::carray< T > >.

Definition at line 187 of file PartDataSource.hpp.

template<typename T >
types::carray<T>& RTT::internal::PartDataSource< types::carray< T > >::set ( ) [inline, virtual]

Get a reference to the value of this DataSource.

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

Implements RTT::internal::AssignableDataSource< types::carray< T > >.

Definition at line 182 of file PartDataSource.hpp.

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().

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.

virtual bool RTT::internal::AssignableDataSource< types::carray< T > >::update ( base::DataSourceBase other) [virtual, inherited]

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.

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.

template<typename T >
types::carray<T> RTT::internal::PartDataSource< types::carray< T > >::value ( ) const [inline, virtual]

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.

Implements RTT::internal::DataSource< types::carray< T > >.

Definition at line 171 of file PartDataSource.hpp.

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 [mutable, protected, inherited]

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 file: