TAMSVIZ
Visualization and annotation tool for ROS
transformer.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "property.h"
7 
8 #include <map>
9 #include <memory>
10 #include <mutex>
11 
12 #include <Eigen/Dense>
13 
14 class Message;
15 template <class M> class Subscriber;
16 
17 template <class T> class Optional {
18  T _value;
19  bool _valid = false;
20  inline void check() const {
21  if (!_valid) {
22  throw std::runtime_error("invalid optional");
23  }
24  }
25 
26 public:
27  inline Optional() : _valid(false) {}
28  inline Optional(const T &value) : _value(value), _valid(true) {}
29  inline operator bool() const { return _valid; }
30  inline const T &value() const {
31  check();
32  return _value;
33  }
34  inline const T &operator*() const {
35  check();
36  return _value;
37  }
38  inline const T *operator->() const {
39  check();
40  return &_value;
41  }
42 };
43 
44 class Frame;
45 
46 class Transformer {
47  struct Data;
48  std::shared_ptr<Data> _data;
49  std::string _root_name;
50 
51 public:
52  Transformer(bool subscribe = true);
53  Transformer(const Transformer &) = delete;
54  Transformer &operator=(const Transformer &) = delete;
55  ~Transformer();
56  void update(const std::string &root);
57  void clear();
58  void push(const std::shared_ptr<const Message> &message);
59  const std::string &root() const { return _root_name; }
60  std::vector<std::string> list();
61  friend class Frame;
62 };
63 
64 class Frame {
65  bool _active = false;
66  std::string _name;
67 
68 public:
69  Frame();
70  explicit Frame(const std::string &name);
71  Frame(const Frame &other);
72  Frame &operator=(const Frame &other);
73  ~Frame();
75  pose(const std::shared_ptr<Transformer> &transformer);
76  const std::string &name() const { return _name; }
77  void name(const std::string &name);
78  bool empty() const { return _name.empty(); }
79 };
80 
81 inline void toString(const Frame &v, std::string &s) { s = v.name(); }
82 inline void fromString(Frame &v, const std::string &s) { v.name(s); }
83 inline bool operator==(const Frame &a, const Frame &b) {
84  return a.name() == b.name();
85 }
86 inline bool operator!=(const Frame &a, const Frame &b) {
87  return a.name() != b.name();
88 }
89 template <> struct DefaultPropertyAttributes<Frame> {
90  static void initialize(PropertyAttributes *attributes);
91 };