9 void getObjectProperties(
const std::shared_ptr<Object> &v,
10 std::vector<Property> &props) {
13 for (
auto &prop : v->properties()) {
14 props.push_back(prop);
19 void forEachObject(
void *context,
25 f(context, parent, child);
26 for (
auto &property : child->objectProperties()) {
27 property.forEachObject(context, f, child);
33 uint64_t _counter = 1;
41 std::lock_guard<std::mutex> lock(_mutex);
44 void update(uint64_t min) {
45 std::lock_guard<std::mutex> lock(_mutex);
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");
58 void Property::unlockScope(
int i) { g_properties_unlocked_counter += i; }
61 if (g_properties_unlocked_counter <= 0) {
62 throw std::runtime_error(
"Use LockScope to safely construct Objects");
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");
76 void Object::setId(uint64_t
id) {
78 ObjectIDFactory::instance()->update(
id);
81 void removeObject(
const std::shared_ptr<Object> &parent,
void *
object) {
83 for (
auto &property : parent->properties()) {
84 property.remove(
object);
89 std::shared_ptr<const Type> Object::type()
const {
90 return Type::find(
typeid(*
this));
95 _properties.data() + _properties.size());
100 _object_properties.data() +
101 _object_properties.size());
106 _properties.data() + _properties.size());
111 _object_properties.data() +
112 _object_properties.size());
115 void Object::addProperty(
Property property) {
116 _properties.push_back(property);
117 if (property.canContainObjects()) {
118 _object_properties.push_back(property);