ArgumentsParser.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 #ifndef ARGUMENTSPARSER_HPP
00039 #define ARGUMENTSPARSER_HPP
00040
00041 #include "parser-types.hpp"
00042
00043 #include "../PropertyBag.hpp"
00044 #include "CommonParser.hpp"
00045 #include "../TaskContext.hpp"
00046
00047 #ifdef ORO_PRAGMA_INTERFACE
00048 #pragma interface
00049 #endif
00050
00051 namespace RTT { namespace detail
00052 {
00053
00054
00055
00066 class ArgumentsParser
00067 {
00068
00069 std::vector<DataSourceBase::shared_ptr> margs;
00070 bool mparsed;
00071
00072 rule_t arguments, argument;
00073
00074 ExpressionParser& expressionparser;
00075
00076 void seen_arg();
00077 void seenarguments();
00078
00079 std::string mobject;
00080 std::string mmethod;
00081 TaskContext* _peer;
00082 OperationInterface* mtobject;
00083 public:
00089 ArgumentsParser( ExpressionParser& p, TaskContext* peer, OperationInterface* tobject,
00090 const std::string& object, const std::string& method );
00091
00092 ~ArgumentsParser();
00093
00094 TaskContext* peer()
00095 {
00096 return _peer;
00097 }
00098
00099 OperationInterface* object()
00100 {
00101 return mtobject;
00102 }
00103
00104 rule_t& parser()
00105 {
00106 return arguments;
00107 }
00108
00112 std::vector<DataSourceBase::shared_ptr> result()
00113 {
00114 return margs;
00115 }
00121 bool parsed() const
00122 {
00123 return mparsed;
00124 }
00125
00126 std::string objectname()
00127 {
00128 return mobject;
00129 }
00130 std::string methodname()
00131 {
00132 return mmethod;
00133 }
00134 };
00135 }}
00136
00137 #endif