29 #include <Ice/Handle.h>
59 class ComponentPlugin;
114 template <
class T,
class TPtr = IceInternal::Handle<T>>
117 const std::string& configName =
"",
118 const std::string& configDomain =
"ArmarX")
122 <<
", configDomain = " << configDomain <<
" of type "
123 << GetTypeString<T>();
125 ptr->createdByComponentCreate =
true;
130 if (configName ==
"")
132 ptr->initializeProperties(compPtr->getDefaultName(), properties, configDomain);
136 ptr->initializeProperties(configName, properties, configDomain);
139 compPtr->icePropertiesInitialized();
151 virtual void componentPropertiesUpdated(
const std::set<std::string>& changedProperties);
153 virtual void preOnInitComponent()
override;
154 virtual void preOnConnectComponent()
override;
164 void initializeProperties(
const std::string& configName,
166 const std::string& configDomain);
175 void forceComponentCreatedByComponentCreateFunc();
178 std::vector<PropertyUserPtr> getAdditionalPropertyUsers()
const;
189 void offeringTopicFromProperty(
const std::string& propertyName);
198 void usingTopicFromProperty(
const std::string& propertyName,
199 bool orderedPublishing =
false);
209 bool usingProxyFromProperty(
const std::string& propertyName,
210 const std::string& endpoints =
"");
219 template <
class TopicProxyType>
223 return getTopic<TopicProxyType>(getProperty<std::string>(propertyName));
226 template <
class TopicProxyType>
230 top = getTopic<TopicProxyType>(getProperty<std::string>(propertyName));
240 template <
class ProxyType>
243 bool addToDependencies =
false,
244 const std::string& endpoints =
"",
245 bool throwOnProxyError =
true)
247 return getProxy<ProxyType>(getProperty<std::string>(propertyName),
253 template <
class ProxyType>
256 const std::string& propertyName,
257 bool addToDependencies =
false,
258 const std::string& endpoints =
"",
259 bool throwOnProxyError =
true)
261 proxy = getProxy<ProxyType>(getProperty<std::string>(propertyName),
283 std::string getConfigDomain();
292 std::string getConfigName();
305 std::string getConfigIdentifier();
328 void icePropertiesUpdated(
const std::set<std::string>& changedProperties)
override final;
332 std::string configDomain;
333 std::string configName;
335 std::vector<PropertyUserPtr> additionalPropertyUsers;
342 bool createdByComponentCreate;