TAMSVIZ
Visualization and annotation tool for ROS
searchwidget.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "guicommon.h"
7 
8 #include "../core/tracks.h"
9 
10 #include <condition_variable>
11 #include <mutex>
12 #include <thread>
13 
14 class SearchWidget : public QDockWidget {
15 
16  struct SearchResultItem {
17  std::string span_label, track_label, branch_name;
18  std::shared_ptr<AnnotationSpan> span;
19  double start = 0;
20  double duration = 0;
21  };
22 
23  struct SearchResults {
24  bool query_empty = false;
25  std::vector<SearchResultItem> items;
26  };
27 
28  struct SearchSync {
29  std::mutex _search_mutex;
30  std::condition_variable _search_condition;
31  std::string _search_query;
32  volatile bool _sort_ascending = true;
33  volatile size_t _sort_index = 0;
34  volatile bool _search_exit = false;
35  volatile bool _search_request = false;
36  volatile bool _visible = false;
37  std::shared_ptr<SearchResults> _previous_search_results;
38  };
39  std::shared_ptr<SearchSync> _sync = std::make_shared<SearchSync>();
40 
41  std::thread _search_thread;
42 
43  template <class T> static inline int compareValues(const T &a, const T &b) {
44  if (a < b) {
45  return -1;
46  }
47  if (b < a) {
48  return +1;
49  }
50  return 0;
51  }
52 
53  static void updateSearch(const std::shared_ptr<SearchSync> &sync);
54 
55 public:
56  SearchWidget();
57  ~SearchWidget();
58  virtual void showEvent(QShowEvent *event) override {
59  QDockWidget::showEvent(event);
60  _sync->_visible = true;
61  updateSearch(_sync);
62  }
63  virtual void hideEvent(QHideEvent *event) override {
64  QDockWidget::hideEvent(event);
65  _sync->_visible = false;
66  }
67 };