Go to the documentation of this file.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
00040 #include "PropertyParser.hpp"
00041 #include "parser-debug.hpp"
00042 #include "parse_exception.hpp"
00043 #include "../TaskContext.hpp"
00044 #include "parser-types.hpp"
00045
00046 #include <Property.hpp>
00047 #include <PropertyBag.hpp>
00048 #include <boost/bind.hpp>
00049
00050 namespace RTT
00051 {
00052 using boost::bind;
00053 using namespace detail;
00054 using namespace boost;
00055
00056
00057 error_status<> PropertyParser::handle_no_property(scanner_t const& scan, parser_error<PropertyErrors, iter_t>&e )
00058 {
00059
00060
00061 return error_status<>( error_status<>::accept, advance_on_error );
00062 }
00063
00064 PropertyParser::PropertyParser(CommonParser& cp)
00065 : commonparser(cp), _bag(0), _property(0)
00066 {
00067 BOOST_SPIRIT_DEBUG_RULE( propertylocator );
00068
00069
00070 propertylocator =
00071 !my_guard
00072 ( +(commonparser.notassertingidentifier >> ".")[boost::bind( &PropertyParser::locateproperty, this, _1, _2 ) ])
00073 [ boost::bind(&PropertyParser::handle_no_property, this, _1, _2) ];
00074 }
00075
00076 void PropertyParser::setPropertyBag( PropertyBag* bg )
00077 {
00078 _bag = bg;
00079 _property = 0;
00080 advance_on_error = 0;
00081 }
00082
00083 void PropertyParser::reset()
00084 {
00085 _property = 0;
00086 _bag = 0;
00087 advance_on_error = 0;
00088 }
00089
00090 void PropertyParser::locateproperty( iter_t begin, iter_t end )
00091 {
00092 std::string name( begin, end );
00093 name.erase( name.length() -1 );
00094
00095
00096 if ( _bag && _bag->find(name) ) {
00097
00098
00099 PropertyBase* propbase = _bag->find( name );
00100 Property<PropertyBag>* propbag = dynamic_cast<Property<PropertyBag> *>( propbase );
00101 if ( propbag ) {
00102
00103
00104 advance_on_error += end.base() - begin.base();
00105 _bag = &(propbag->set());
00106 _property = propbase;
00107 }
00108 else {
00109
00110 throw_(begin, bag_not_found );
00111
00112
00113 }
00114
00115
00116 }
00117 else {
00118
00119
00120 throw_(begin, bag_not_found );
00121 }
00122 }
00123
00124 rule_t& PropertyParser::locator()
00125 {
00126 return propertylocator;
00127 }
00128 }
00129