AttributeRepository.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef ATTRIBUTEREPOSITORY_HPP
00040 #define ATTRIBUTEREPOSITORY_HPP
00041
00042 #include <memory>
00043 #include <map>
00044 #include "Attribute.hpp"
00045 #include "DataSources.hpp"
00046 #include "DataObjectInterfaces.hpp"
00047 #include "Property.hpp"
00048 #include "PropertyBag.hpp"
00049
00050 namespace RTT
00051 {
00058 class RTT_API AttributeRepository
00059 {
00060 typedef std::vector<AttributeBase*> map_t;
00061 map_t values;
00065 mutable PropertyBag* bag;
00066
00067 public:
00068
00072 AttributeRepository();
00073 ~AttributeRepository();
00074
00079 typedef std::vector<std::string> AttributeNames;
00080
00085 typedef std::vector<AttributeBase*> AttributeObjects;
00086
00090 void clear();
00091
00095 bool hasAttribute( const std::string& name ) const;
00096
00103 bool addAttribute( AttributeBase* a )
00104 {
00105 return a->getDataSource() && setValue( a->clone() );
00106 }
00107
00118 template<class T>
00119 Attribute<T>* getAttribute( const std::string& name ) const
00120 {
00121 return dynamic_cast<Attribute<T>*>( this->getValue( name ) );
00122 }
00123
00127 void removeAttribute( const std::string& name );
00128
00133 bool addConstant( AttributeBase* c)
00134 {
00135 return c->getDataSource() && setValue( c->clone() );
00136 }
00137
00146 template<class T>
00147 Constant<T>* getConstant( const std::string& name ) const
00148 {
00149 return dynamic_cast<Constant<T>*>( this->getValue( name ) );
00150 }
00151
00155 bool hasProperty( const std::string& name ) const;
00156
00162 bool addProperty( PropertyBase* pb );
00163
00168 bool removeProperty( PropertyBase* p );
00169
00175 bool setValue( AttributeBase* ab );
00176
00186 AttributeBase* getValue( const std::string& name ) const;
00187
00191 bool removeValue(const std::string& name );
00192
00200 template<class T>
00201 bool addDataObject( DataObjectInterface<T>* doi) {
00202 return this->setValue( new Alias<T>(doi, doi->getName() ));
00203 }
00204
00212 AttributeRepository* copy( std::map<const DataSourceBase*, DataSourceBase*>& repl, bool instantiate ) const;
00213
00218 AttributeNames names() const;
00219
00223 AttributeNames getAttributes() const;
00224
00231 PropertyBag* properties() const;
00232
00233 };
00234 }
00235
00236 #endif