29 #include <IceUtil/Handle.h>
33 #include <ArmarXCore/interface/observers/VariantContainers.h>
49 virtual public StringValueMapBase
57 VariantContainerBasePtr
58 cloneContainer(
const Ice::Current&
c = Ice::emptyCurrent)
const override;
63 void addElement(
const std::string& key,
64 const VariantContainerBasePtr& variantContainer,
65 const Ice::Current&
c = Ice::emptyCurrent)
override;
66 void addVariant(
const std::string& key,
const Variant& variant);
67 void setElement(
const std::string& key,
68 const VariantContainerBasePtr& variantContainer,
69 const Ice::Current&
c = Ice::emptyCurrent)
override;
81 template <
typename ValueType>
82 void setElements(
const std::map<std::string, ValueType>& map);
87 template <
typename ValueType>
88 void setElements(
const std::vector<std::string>& keyVec,
89 const std::vector<ValueType>&
values);
94 void clear(
const Ice::Current&
c = Ice::emptyCurrent)
override;
97 Ice::Int getType(
const Ice::Current&
c = Ice::emptyCurrent)
const override;
99 static VariantTypeId getStaticType(
const Ice::Current&
c = Ice::emptyCurrent);
101 int getSize(
const Ice::Current&
c = Ice::emptyCurrent)
const override;
102 bool validateElements(
const Ice::Current&
c = Ice::emptyCurrent)
override;
117 VariantContainerBasePtr
118 getElementBase(
const std::string& key,
119 const Ice::Current&
c = Ice::emptyCurrent)
const override;
130 template <
typename ContainerType>
139 throw InvalidTypeException();
150 VariantPtr getVariant(
const std::string& key)
const;
156 template <
class ValueType>
157 std::map<std::string, ValueType>
160 std::map<std::string, ValueType> map;
161 StringVariantContainerBaseMap::const_iterator it = elements.begin();
163 for (; it != elements.end(); it++)
165 const std::string& key = it->first;
166 map[key] = getVariant(key)->get<ValueType>();
175 template <
typename Type>
176 std::map<std::string, Type>
179 std::map<std::string, Type> map;
180 StringVariantContainerBaseMap::const_iterator it = elements.begin();
182 for (; it != elements.end(); it++)
184 const std::string& key = it->first;
185 map[key] = getElement<typename Type::element_type>(key);
201 template <
typename Type>
207 for (
typename std::map<std::string, Type>::const_iterator it = map.begin();
211 result->addVariant(it->first, it->second);
227 template <
typename Type>
233 for (
typename std::map<std::string, Type>::const_iterator it = map.begin();
237 result->addElement(it->first, it->second);
243 static std::string getTypePrefix();
246 void serialize(
const ObjectSerializerBasePtr& serializer,
247 const ::Ice::Current& = Ice::emptyCurrent)
const override;
248 void deserialize(
const ObjectSerializerBasePtr& serializer,
249 const ::Ice::Current& = Ice::emptyCurrent)
override;
253 std::string
toString(
const Ice::Current& = Ice::emptyCurrent)
const override;
256 bool forceSingleTypeMap =
true;
275 template <
typename ValueType>
279 typename std::map<std::string, ValueType>::const_iterator it = map.begin();
281 for (; it != map.end(); it++)
287 template <
typename ValueType>
290 const std::vector<ValueType>&
values)
295 if (keyVec.size() !=
values.size())
297 ARMARX_WARNING_S <<
"Size of keys vector does not match values vector size:"
298 << keyVec.size() <<
" vs. " <<
values.size();
301 for (
int i = 0; i < size; i++)