TAMSVIZ
Visualization and annotation tool for ROS
object.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "object.h"
5 
6 #include <mutex>
7 #include <vector>
8 
9 void getObjectProperties(const std::shared_ptr<Object> &v,
10  std::vector<Property> &props) {
11  props.clear();
12  if (v) {
13  for (auto &prop : v->properties()) {
14  props.push_back(prop);
15  }
16  }
17 }
18 
19 void forEachObject(void *context,
20  void (*f)(void *, const Object *, const Object *),
21  const Object *parent, const Object *child) {
22  if (!child) {
23  return;
24  }
25  f(context, parent, child);
26  for (auto &property : child->objectProperties()) {
27  property.forEachObject(context, f, child);
28  }
29 }
30 
32  std::mutex _mutex;
33  uint64_t _counter = 1;
34 
35 public:
36  static ObjectIDFactory *instance() {
37  static ObjectIDFactory instance;
38  return &instance;
39  }
40  uint64_t generate() {
41  std::lock_guard<std::mutex> lock(_mutex);
42  return ++_counter;
43  }
44  void update(uint64_t min) {
45  std::lock_guard<std::mutex> lock(_mutex);
46  if (_counter < min) {
47  _counter = min;
48  }
49  }
50 };
51 
52 thread_local int g_properties_unlocked_counter = 0;
53 void Property::checkUnlocked() {
54  if (g_properties_unlocked_counter <= 0) {
55  throw std::runtime_error("Use LockScope to safely access properties");
56  }
57 }
58 void Property::unlockScope(int i) { g_properties_unlocked_counter += i; }
59 
60 Object::Object() {
61  if (g_properties_unlocked_counter <= 0) {
62  throw std::runtime_error("Use LockScope to safely construct Objects");
63  }
64  assignNewId();
65 }
66 
67 void Object::assignNewId() {
68  _id = ObjectIDFactory::instance()->generate();
69  if (g_properties_unlocked_counter <= 0) {
70  throw std::runtime_error("Use LockScope to safely call assignNewId");
71  }
72 }
73 
74 Object::~Object() {}
75 
76 void Object::setId(uint64_t id) {
77  _id = id;
78  ObjectIDFactory::instance()->update(id);
79 }
80 
81 void removeObject(const std::shared_ptr<Object> &parent, void *object) {
82  if (parent) {
83  for (auto &property : parent->properties()) {
84  property.remove(object);
85  }
86  }
87 }
88 
89 std::shared_ptr<const Type> Object::type() const {
90  return Type::find(typeid(*this));
91 }
92 
93 PropertyList<const Property> Object::properties() const {
94  return PropertyList<const Property>(_properties.data(),
95  _properties.data() + _properties.size());
96 }
97 
98 PropertyList<const Property> Object::objectProperties() const {
99  return PropertyList<const Property>(_object_properties.data(),
100  _object_properties.data() +
101  _object_properties.size());
102 }
103 
104 PropertyList<Property> Object::properties() {
105  return PropertyList<Property>(_properties.data(),
106  _properties.data() + _properties.size());
107 }
108 
109 PropertyList<Property> Object::objectProperties() {
110  return PropertyList<Property>(_object_properties.data(),
111  _object_properties.data() +
112  _object_properties.size());
113 }
114 
115 void Object::addProperty(Property property) {
116  _properties.push_back(property);
117  if (property.canContainObjects()) {
118  _object_properties.push_back(property);
119  }
120 }
Definition: object.h:8