TAMSVIZ
Visualization and annotation tool for ROS
workspace.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "document.h"
7 #include "history.h"
8 #include "snapshot.h"
9 
10 #include <mutex>
11 #include <unordered_set>
12 
13 class BagPlayer;
14 class AnnotationTrack;
15 
16 struct Selection {
17  std::vector<uint64_t> _objects;
18  void operator=(const std::shared_ptr<Object> &o);
19  bool contains(const std::shared_ptr<Object> &o) const;
20  std::vector<std::shared_ptr<Object>>
21  resolve(const std::shared_ptr<Object> &root) const;
22  void clear();
23  void add(const std::shared_ptr<Object> &object);
24  void toggle(const std::shared_ptr<Object> &object);
25  void erase(const std::shared_ptr<Object> &object);
26  bool empty() const;
27  size_t size() const;
28 };
29 bool operator==(const Selection &a, const Selection &b);
30 bool operator!=(const Selection &a, const Selection &b);
31 STRUCT_BEGIN(Selection);
32 STRUCT_FIELD(_objects);
33 STRUCT_END();
34 
35 struct Workspace : Object {
36 private:
37  std::unordered_set<std::shared_ptr<Object>> object_ptr_test;
38 
39 public:
40  std::shared_ptr<BagPlayer> player;
41  std::shared_ptr<History<std::shared_ptr<Workspace>>> history;
42  Event<void()> modified{"modified"};
43  PROPERTY(std::shared_ptr<Document>, document, std::make_shared<Document>());
44  std::shared_ptr<const Snapshot<std::shared_ptr<Document>>> saved_document;
45  PROPERTY(Selection, selection);
46  PROPERTY(Handle<AnnotationTrack>, currentAnnotationTrack);
47  Workspace();
48  ~Workspace();
49  std::vector<std::string> listTopics(const std::string &type_name);
50  std::vector<std::string>
51  listTopics(const std::initializer_list<std::string> &type_names);
52 };
53 DECLARE_TYPE(Workspace, Object);
54 
55 struct GlobalEvents {
56  static std::shared_ptr<GlobalEvents> instance();
57  Event<void()> redraw{"redraw"};
58 };
59 
60 class ObjectScope {
61 public:
62  ObjectScope();
63  ~ObjectScope();
64  ObjectScope(const ObjectScope &) = delete;
65  ObjectScope &operator=(const ObjectScope &) = delete;
66 };
67 
68 class LockScope : public ObjectScope {
69  static std::shared_ptr<Workspace> &workspace_instance();
70  static std::recursive_mutex &mutex_instance();
71  std::lock_guard<std::recursive_mutex> lock{mutex_instance()};
72 
73 public:
74  LockScope();
75  ~LockScope();
76  LockScope(const LockScope &) = delete;
77  LockScope &operator=(const LockScope &) = delete;
78  inline std::shared_ptr<Workspace> &ws() { return workspace_instance(); }
79  inline const std::shared_ptr<Workspace> &ws() const {
80  return workspace_instance();
81  }
82  inline std::shared_ptr<Workspace> &operator()() {
83  return workspace_instance();
84  }
85  inline const std::shared_ptr<Workspace> &operator()() const {
86  return workspace_instance();
87  }
88  inline Workspace &operator*() { return *ws(); }
89  inline const Workspace &operator*() const { return *ws(); }
90  inline Workspace *operator->() { return ws().get(); }
91  inline const Workspace *operator->() const { return ws().get(); }
92 };
93 
94 class ActionScope : public LockScope {
95  std::string label;
96  std::shared_ptr<const Object> object;
97  bool aggregate = false;
98 
99 public:
100  ActionScope(const std::string &label,
101  const std::shared_ptr<const Object> &object = nullptr,
102  bool aggregate = false);
103  ~ActionScope();
104 };
Definition: object.h:8
Definition: type.h:117