TAMSVIZ
Visualization and annotation tool for ROS
mquery.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "mparser.h"
7 
8 #include "message.h"
9 #include "object.h"
10 #include "topic.h"
11 
12 #include <functional>
13 
14 class MessageQuery {
15 
16  enum class TokenType {
17  None,
18  Space,
19  Symbol,
20  Dot,
21  String,
22  Integer,
23  Double,
24  IndexBegin,
25  IndexEnd,
26  Equality,
27  Inequality,
28  GreaterThan,
29  LessThan,
30  GreaterEqual,
31  LessEqual,
32  };
33 
34  struct TokenInfo {
35  TokenType type = TokenType::None;
36  std::string str;
37  double number = 0.0;
38  size_t integer = 0;
39  size_t begin = 0;
40  size_t end = 0;
41  };
42 
43  std::string _query;
44  std::vector<TokenInfo> _tokens;
45  bool _tok_ok = false;
46 
47  typedef std::vector<TokenInfo>::const_iterator TokenIterator;
48 
49  void tokenize();
50  bool filter(const MessageParser &parser, const TokenInfo &op,
51  const TokenInfo &val) const;
52  bool filter(const MessageParser &parser, TokenIterator &current_token,
53  const std::function<void(const TokenIterator &,
54  const std::string &)> &complete) const;
56  query(MessageParser parser, TokenIterator &current_token,
57  const std::function<void(const TokenIterator &, const std::string &)>
58  &complete = nullptr) const;
59 
60 public:
61  MessageQuery();
62  MessageQuery(const std::string &query);
63  void assign(const std::string &query);
64  MessageParser operator()(const MessageParser &parser) const;
65  const std::string &str() const { return _query; }
66  void complete(const MessageParser &parser, AutoCompletion &completion) const;
67 };
68 
70  mutable std::mutex _subscriber_mutex;
71  std::shared_ptr<Subscriber<Message>> _subscriber;
72  std::function<std::shared_ptr<const Message>()> _message_func;
73  std::string _query;
74 
75 public:
77  // MessageQueryProperty(
78  // const std::function<std::shared_ptr<const Message>()> &message_func)
79  // : _message_func(message_func) {}
80  MessageQueryProperty(const std::string &query) : _query(query) {}
82  _query = other._query;
83  }
84  MessageQueryProperty &operator=(const MessageQueryProperty &other) {
85  _query = other._query;
86  return *this;
87  }
88  MessageQuery query() const { return MessageQuery(_query); };
89  const std::string &str() const { return _query; }
90  void assign(const std::string &query) { _query = query; }
91  void subscriber(const std::shared_ptr<Subscriber<Message>> &subscriber) {
92  std::unique_lock<std::mutex> lock(_subscriber_mutex);
93  _subscriber = subscriber;
94  }
95  std::shared_ptr<const Message> message() const {
96  std::unique_lock<std::mutex> lock(_subscriber_mutex);
97  if (_subscriber) {
98  return _subscriber->message();
99  }
100  if (_message_func) {
101  return _message_func();
102  }
103  return nullptr;
104  }
105  void
106  message(const std::function<std::shared_ptr<const Message>()> &message_func) {
107  std::unique_lock<std::mutex> lock(_subscriber_mutex);
108  _message_func = message_func;
109  }
110  bool empty() const { return _query.empty(); }
111 };
112 static void toString(const MessageQueryProperty &x, std::string &str) {
113  str = x.str();
114 }
115 static void fromString(MessageQueryProperty &x, const std::string &str) {
116  x.assign(str);
117 }
118 static bool operator==(const MessageQueryProperty &a,
119  const MessageQueryProperty &b) {
120  return a.str() == b.str();
121 }
122 static bool operator!=(const MessageQueryProperty &a,
123  const MessageQueryProperty &b) {
124  return a.str() != b.str();
125 }
127  static void initialize(PropertyAttributes *attributes) {
128  attributes->complete = [](const Property &property, const std::string &text,
129  AutoCompletion &completion) {
130  LOG_DEBUG("complete " << text);
131  if (auto msg = property.get<MessageQueryProperty>().message()) {
132  LOG_DEBUG("message found");
133  MessageQuery(text).complete(MessageParser(msg), completion);
134  }
135  LOG_DEBUG("no message received yet");
136  return std::vector<std::string>();
137  };
138  }
139 };