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
00023 #ifndef VARIANT_TOPIC_TOOLS_MESSAGE_DEFINITION_PARSER_H
00024 #define VARIANT_TOPIC_TOOLS_MESSAGE_DEFINITION_PARSER_H
00025
00026 #include <vector>
00027
00028 #include <boost/regex.hpp>
00029
00030 #include <ros/ros.h>
00031
00032 #include <variant_topic_tools/MessageType.h>
00033
00034 namespace variant_topic_tools {
00037 class MessageDefinitionParser {
00038 public:
00041 static size_t parse(const std::string& messageDataType, const std::string&
00042 messageDefinition, std::vector<MessageType>& messageTypes);
00043
00046 static bool matchType(const std::string& expression);
00047
00050 static bool matchArrayType(const std::string& expression, std::string&
00051 memberType, size_t& size);
00052
00055 static bool match(const std::string& expression, std::string& name,
00056 std::string& type);
00057
00060 static bool matchConstant(const std::string& expression, std::string&
00061 name, std::string& type, std::string& value);
00062
00065 static bool matchVariable(const std::string& expression, std::string&
00066 name, std::string& type);
00067
00070 static bool matchArray(const std::string& expression, std::string& name,
00071 std::string& memberType, size_t& size);
00072
00075 static bool matchSeparator(const std::string& expression);
00076
00077 private:
00080 static const boost::regex commentExpression;
00081
00084 static const boost::regex separatorExpression;
00085
00088 static const boost::regex messageTypeExpression;
00089
00092 static const boost::regex memberNameExpression;
00093
00096 static const boost::regex memberTypeExpression;
00097
00100 static const boost::regex memberArrayTypeExpression;
00101
00104 static const boost::regex memberValueExpression;
00105
00108 static const boost::regex memberExpression;
00109
00112 static const boost::regex constantMemberExpression;
00113
00117 static const boost::regex constantStringMemberExpression;
00118
00121 static const boost::regex variableMemberExpression;
00122
00125 static const boost::regex arrayMemberExpression;
00126
00129 MessageDefinitionParser();
00130
00133 ~MessageDefinitionParser();
00134 };
00135 };
00136
00137 #endif