Parser.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 EXECUTION_PARSER_HPP
00039 #define EXECUTION_PARSER_HPP
00040
00041 #include <iosfwd>
00042 #include <utility>
00043 #include <map>
00044 #include <string>
00045 #include <istream>
00046 #include <vector>
00047 #include "parse_exception.hpp"
00048 #include "../DataSource.hpp"
00049 #include "../ProgramInterface.hpp"
00050 #include "ParsedStateMachine.hpp"
00051 #include "../rtt-config.h"
00052
00053 namespace RTT
00054 {
00055 class PropertyBase;
00056 class ConditionInterface;
00057 }
00058
00059 namespace RTT
00060 {
00061 class ProgramInterface;
00062 class ProgramTask;
00063 class StateMachineTask;
00064
00065
00066
00067
00076 class RTT_API Parser
00077 {
00078 public:
00082 typedef std::vector< ProgramInterfacePtr > ParsedFunctions;
00083
00089 ParsedFunctions parseFunction( const std::string& s, TaskContext*, const std::string& filename = "stream" );
00090
00094 typedef std::vector< ProgramInterfacePtr > ParsedPrograms;
00095
00101 ParsedPrograms parseProgram( const std::string& s, TaskContext*, const std::string& filename = "stream" );
00102
00106 typedef std::vector< ParsedStateMachinePtr > ParsedStateMachines;
00107
00113 ParsedStateMachines parseStateMachine(const std::string& s, TaskContext*, const std::string& filename = "stream" );
00114
00121 ConditionInterface* parseCondition(const std::string& s, TaskContext* );
00122
00127 std::pair<CommandInterface*,ConditionInterface*>
00128 parseCommand( const std::string&s, TaskContext* t, bool dispatch );
00129
00135 DataSourceBase::shared_ptr
00136 parseExpression( const std::string&s, TaskContext* );
00137
00143 DataSourceBase::shared_ptr
00144 parseValueChange( const std::string&s, TaskContext* );
00145 };
00146 };
00147 #endif