TAMSVIZ
Visualization and annotation tool for ROS
object.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "property.h"
7 
8 class Object : public std::enable_shared_from_this<Object> {
9  std::vector<Property> _properties, _object_properties;
10  uint64_t _id = 0;
11 
12 public:
13  Object();
14  virtual ~Object();
15  Object(const Object &) = delete;
16  Object &operator=(const Object &) = delete;
17  std::shared_ptr<const Type> type() const;
18  PropertyList<const Property> properties() const;
19  PropertyList<const Property> objectProperties() const;
20  PropertyList<Property> properties();
21  PropertyList<Property> objectProperties();
22  void addProperty(Property property);
23  uint64_t id() const { return _id; }
24  void assignNewId();
25  void setId(uint64_t id);
26  template <class F>
27  auto recurse(const F &f)
28  -> decltype(f(std::shared_ptr<Object>(), std::shared_ptr<Object>())) {
29  forEachObject((void *)&f,
30  [](void *context, const Object *parent, const Object *child) {
31  auto *f = (F *)context;
32  auto p = parent ? ((Object *)parent)->shared_from_this()
33  : nullptr;
34  if (auto c = (child ? ((Object *)child)->shared_from_this()
35  : nullptr)) {
36  (*f)(p, c);
37  }
38  },
39  nullptr, this);
40  }
41  template <class F>
42  auto recurse(const F &f) -> decltype(f(std::shared_ptr<Object>())) {
43  forEachObject((void *)&f,
44  [](void *context, const Object *parent, const Object *child) {
45  auto *f = (F *)context;
46  if (auto c = (child ? ((Object *)child)->shared_from_this()
47  : nullptr)) {
48  (*f)(c);
49  }
50  },
51  nullptr, this);
52  }
53 };
54 DECLARE_TYPE(Object);
Definition: object.h:8