TAMSVIZ
Visualization and annotation tool for ROS
tracks.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "document.h"
7 #include "mquery.h"
8 
9 class Workspace;
10 
12  PROPERTY(std::string, label, "");
13  PROPERTY(double, start, 0.0);
14  PROPERTY(double, duration, 1.0);
15  PROPERTY(std::vector<std::shared_ptr<AnnotationBase>>, annotations, {});
16 };
17 DECLARE_TYPE(AnnotationSpan, Object);
18 
20  PROPERTY(std::string, name);
21  PROPERTY(std::vector<std::shared_ptr<AnnotationSpan>>, spans, {},
22  hidden = true);
23 };
24 DECLARE_TYPE(AnnotationBranch, Object);
25 
27  PROPERTY(std::vector<std::shared_ptr<AnnotationBranch>>, branches, {},
28  hidden = true);
29  std::shared_ptr<AnnotationBranch> branch(const std::shared_ptr<Workspace> &ws,
30  bool create = false);
31 };
32 DECLARE_TYPE(AnnotationTrack, TrackBase);
33 
34 class GraphTrack : public TrackBase {
35  struct Data {
36  std::mutex mutex;
37  std::shared_ptr<const Message> message;
38  };
39  std::shared_ptr<Data> _data = std::make_shared<Data>();
40 
41 public:
42  PROPERTY(TopicProperty<Message>, topic);
43  PROPERTY(MessageQueryProperty, query/*, [this]() {
44  LOG_DEBUG(topic().subscriber()->message());
45  return topic().subscriber()->message();
46 }*/);
47  GraphTrack() {
48  auto data = _data;
49  topic().connect(data,
50  [data](const std::shared_ptr<const Message> &message) {
51  std::lock_guard<std::mutex> lock(data->mutex);
52  data->message = message;
53  });
54  query().message([data]() {
55  std::lock_guard<std::mutex> lock(data->mutex);
56  return data->message;
57  });
58  }
59 };
60 DECLARE_TYPE(GraphTrack, TrackBase);
Definition: object.h:8