Orocos Real-Time Toolkit  2.9.0
PropertyBagIntrospector.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  tag: Peter Soetens Thu Jul 15 11:21:04 CEST 2004 PropertyBagIntrospector.cxx
3 
4  PropertyBagIntrospector.cxx - description
5  -------------------
6  begin : Thu July 15 2004
7  copyright : (C) 2004 Peter Soetens
8  email : peter.soetens at mech.kuleuven.ac.be
9 
10  ***************************************************************************
11  * This library is free software; you can redistribute it and/or *
12  * modify it under the terms of the GNU General Public *
13  * License as published by the Free Software Foundation; *
14  * version 2 of the License. *
15  * *
16  * As a special exception, you may use this file as part of a free *
17  * software library without restriction. Specifically, if other files *
18  * instantiate templates or use macros or inline functions from this *
19  * file, or you compile this file and link it with other files to *
20  * produce an executable, this file does not by itself cause the *
21  * resulting executable to be covered by the GNU General Public *
22  * License. This exception does not however invalidate any other *
23  * reasons why the executable file might be covered by the GNU General *
24  * Public License. *
25  * *
26  * This library is distributed in the hope that it will be useful, *
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
29  * Lesser General Public License for more details. *
30  * *
31  * You should have received a copy of the GNU General Public *
32  * License along with this library; if not, write to the Free Software *
33  * Foundation, Inc., 59 Temple Place, *
34  * Suite 330, Boston, MA 02111-1307 USA *
35  * *
36  ***************************************************************************/
37 
39 #include "../types/Types.hpp"
40 
41 using namespace RTT;
42 using namespace RTT::detail;
43 
45 {
46  mystack.push( &bag );
47 }
48 
50 {
51  mystack.pop();
52 }
53 
59 {
60  mystack.pop();
61  mystack.push( &new_bag );
62 }
63 
64 
70 {
71  v.identify(this);
72 }
73 
75 {
76  if ( this->introspectAndDecompose(v) )
77  return; // nothing to do.
78 
79  // unknown, so add it to the stack:
80  mystack.top()->add( v->clone() );
81 }
82 
84 {
85  PropertyBag* cur_bag = mystack.top();
86  Property<PropertyBag>* bag_cl
87  = new Property<PropertyBag>( v.getName(),
88  v.getDescription(),
89  PropertyBag( v.get().getType() ) );
90  cur_bag->add( bag_cl );
91 
92  mystack.push( &bag_cl->value() );
93 
94  v.value().identify(this);
95 
96  mystack.pop();
97 }
DataSourceType get() const
Get a copy of the value of the property.
Definition: Property.hpp:246
void add(base::PropertyBase *p)
Add a valid property to the container.
Definition: PropertyBag.cpp:73
Base class for all properties.
A container for holding references to properties.
Definition: PropertyBag.hpp:96
reference_t value()
Access to the value of the Property.
Definition: Property.hpp:277
void introspect(const PropertyBag &v)
Use this entry function to inspect a bag.
Convenient short notation for every sub-namespace of RTT.
A property represents a named value of any type with a description.
Definition: Property.hpp:76
const std::string & getDescription() const
Get a description of the property.
void identify(base::PropertyIntrospection *pi) const
Identify the contents of this bag through introspection.
const std::string & getName() const
Get the name of the property.
Contains TaskContext, Activity, OperationCaller, Operation, Property, InputPort, OutputPort, Attribute.
Definition: Activity.cpp:52
bool introspectAndDecompose(PropertyBase *t)
The default handler to execute when an unknown type is being decomposed.
void reset(PropertyBag &new_bag)
Reset to do a new introspection.
PropertyBagIntrospector(PropertyBag &bag)
Create a new Introspector, saving the results in a bag.
virtual PropertyBase * clone() const =0
Deliver an identical clone of this PropertyBase.