62 for (AttributeMap::const_iterator iter =
source.attributes.begin();
63 iter !=
source.attributes.end();
66 EntityAttributeBasePtr attrBase = iter->second;
67 EntityAttributeBasePtr attr =
68 EntityAttributeBasePtr::dynamicCast(attrBase->ice_clone());
69 attributes[iter->first] = attr;
78 for (AbstractEntityWrapperBaseList::const_iterator iter =
source.wrappers.begin();
79 iter !=
source.wrappers.end();
85 EntityWrappers::AbstractEntityWrapperPtr::dynamicCast((*iter)->ice_clone());
89 wrapper->setEntity(
this);
105 int remainingRefs = __getRef() - 1;
106 if (remainingRefs <= wrapperCount && remainingRefs > 0 && wrapperCount > 0 &&
108 #
if ICE_INT_VERSION >= 30603
117 for (
const AbstractEntityWrapperBasePtr& wrapper :
wrappers)
120 EntityWrappers::AbstractEntityWrapperPtr::dynamicCast(wrapper);
123 if (p->getEntity().get() ==
this)
129 if (counter == remainingRefs)
136 for (
const AbstractEntityWrapperBasePtr& wrapper : tmpWrappers)
139 EntityWrappers::AbstractEntityWrapperPtr::dynamicCast(wrapper);
200 return attr->getValue()->getBool();
222 EntityRefBaseList result;
231 for (
int i = 0; i < attr->size(); i++)
234 armarx::VariantPtr::dynamicCast(attr->getValueAt(i))->get<EntityRefBase>());
243 EntityRefBaseList result;
244 EntityRefBaseList explored;
247 while (!unexplored.empty())
249 EntityRefBasePtr entityRef = unexplored.back();
250 EntityPtr next = EntityPtr::dynamicCast(entityRef->getEntity());
251 unexplored.pop_back();
253 bool isExplored = std::find_if(explored.cbegin(),
255 [&](
const EntityRefBasePtr& entityRef) {
256 return entityRef->entityId == next->getId();
257 }) != explored.cend();
264 EntityRefBaseList newParents = next->getDirectParentRefs();
265 explored.push_back(entityRef);
266 unexplored.insert(unexplored.end(), newParents.begin(), newParents.end());
268 if (next->isMetaEntity() && !includeMetaEntities)
273 result.push_back(entityRef);
279 std::vector<std::string>
282 Ice::StringSeq result;
286 std::back_inserter(result),
287 [](
const EntityRefBasePtr& e) { return e->entityName; });
302 for (
const auto& entity : entityRefs)
310 EntityAttributeBasePtr
314 AttributeMap::const_iterator it = attributes.find(attrName);
316 if (it != attributes.end())
322 return EntityAttributeBasePtr();
338 if (attr->size() != 1)
343 return armarx::VariantPtr::dynamicCast(attr->getValue());
350 attributes[attr->getName()] = attr;
357 attributes.erase(attrName);
365 return attributes.find(attrName) != attributes.end();
371 memoryx::NameList result;
374 for (AttributeMap::const_iterator it = attributes.begin(); it != attributes.end(); ++it)
376 result.push_back(it->first);
385 if (
getId() != otherEntity->getId())
395 if (
getName() != otherEntity->getName())
400 if (otherEntity->getAttributeNames().size() != attributeNames.size())
405 for (std::string& attributeName : attributeNames)
411 otherEntity->getAttribute(attributeName)->serialize(otherSerializer);
412 if (otherSerializer->toString() != thisSerializer->toString())
424 return this->
clone();
431 ret->deepCopy(*
this);
439 stream <<
"[" <<
id <<
"] " << name << std::endl;
440 stream <<
"Attributes: (" << attributes.size() <<
")" << std::endl;
442 for (AttributeMap::const_iterator it = attributes.begin(); it != attributes.end(); ++it)
444 stream << it->first <<
": " << EntityAttributePtr::dynamicCast(it->second) << std::endl;
471 const ::Ice::Current&
c)
const
474 armarx::AbstractObjectSerializerPtr::dynamicCast(serializer);
484 obj->setString(
"name", name);
491 for (AttributeMap::const_iterator it = attributes.begin(); it != attributes.end(); ++it)
494 it->second->serialize(attr,
c);
495 objAttrs->setElement(it->first, attr);
498 obj->setElement(
"attrs", objAttrs);
505 armarx::AbstractObjectSerializerPtr::dynamicCast(serializer);
509 if (!obj->getIdField().empty() && obj->hasElement(obj->getIdField()))
511 id = obj->getStringId();
514 name = obj->getString(
"name");
518 const std::vector<std::string> attrNames = objAttrs->getElementNames();
525 for (std::vector<std::string>::const_iterator it = attrNames.begin(); it != attrNames.end();
529 attr->deserialize(objAttrs->getElement(*it));