DebugDrawerHelperComponentPlugin.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package RobotAPI::ArmarXObjects::RobotAPIComponentPlugins
17  * @author Raphael Grimm ( raphael dot grimm at kit dot edu )
18  * @date 2019
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
24 
27 
28 namespace armarx::plugins
29 {
31  std::string pre) :
32  ComponentPlugin(parent, pre), _pre{pre}
33  {
35  addPlugin(_robotStateComponentPlugin, pre);
36  addPluginDependency(_robotStateComponentPlugin);
37  }
38 
39  const DebugDrawerHelper&
41  {
43  ARMARX_CHECK_NOT_NULL(_debugDrawerHelper);
44  return *_debugDrawerHelper;
45  }
46 
49  {
51  ARMARX_CHECK_NOT_NULL(_debugDrawerHelper);
52  return *_debugDrawerHelper;
53  }
54 
57  {
60  }
61 
62  std::unique_lock<std::recursive_mutex>
64  {
66  return std::unique_lock{_debugDrawerHelperMutex};
67  }
68 
69  std::string
71  {
73  if (_pre.empty())
74  {
75  return parent().getName();
76  }
77  return _pre + "_" + parent().getName();
78  }
79 
80  void
82  {
84  if (!_debugDrawerTopic)
85  {
86  parent<Component>().offeringTopicFromProperty(_propertyName);
87  }
88  }
89 
90  void
92  {
94  if (!_debugDrawerTopic)
95  {
96  parent<Component>().getTopicFromProperty(_debugDrawerTopic, _propertyName);
97  }
98  if (!_debugDrawerHelper)
99  {
100  const auto robotID = _pre + "_DebugDrawerHelperComponentPlugin_" + parent().getName();
101  if (!_robotStateComponentPlugin->hasRobot(robotID))
102  {
103  _robotStateComponentPlugin->addRobot(robotID, VirtualRobot::RobotIO::eStructure);
104  }
105 
106  const auto robot = _robotStateComponentPlugin->getRobot(robotID);
107  ARMARX_CHECK_NOT_NULL(_debugDrawerTopic);
108  ARMARX_CHECK_NOT_NULL(robot);
109  _debugDrawerHelper = std::make_unique<DebugDrawerHelper>(
110  _debugDrawerTopic, getDebugDrawerLayerName(), robot);
111  }
112  }
113 
114  void
116  {
117  ARMARX_TRACE;
118  if (!_doNotClearLayersOnDisconnect)
119  {
120  try
121  {
122  _debugDrawerHelper->cyclicCleanup();
123  _debugDrawerHelper->cyclicCleanup();
124  _debugDrawerHelper->clearLayer();
125  }
126  catch (...)
127  {
128  }
129  }
130  _debugDrawerTopic = nullptr;
131  }
132 
133  void
135  PropertyDefinitionsPtr& properties)
136  {
137  ARMARX_TRACE;
138  if (!properties->hasDefinition(_propertyName))
139  {
140  properties->defineOptionalProperty<std::string>(
141  _propertyName, "DebugDrawerUpdates", "Name of the debug drawer topic");
142  }
143  }
144 
147  {
148  ARMARX_TRACE;
149  return _debugDrawerHelper->getRobot();
150  }
151 
152  bool
154  {
155  ARMARX_TRACE;
156  const auto g = getDebugDrawerHelperLock();
158  return _robotStateComponentPlugin->synchronizeLocalClone(getDebugDrawerHelperRobot());
159  }
160 
161  bool
163  {
164  ARMARX_TRACE;
165  const auto g = getDebugDrawerHelperLock();
167  return _robotStateComponentPlugin->synchronizeLocalClone(getDebugDrawerHelperRobot(),
168  timestamp);
169  }
170 
171  bool
173  const RobotStateConfig& state) const
174  {
175  ARMARX_TRACE;
176  const auto g = getDebugDrawerHelperLock();
178  return _robotStateComponentPlugin->synchronizeLocalClone(getDebugDrawerHelperRobot(),
179  state);
180  }
181 
182  void
184  {
185  ARMARX_TRACE;
186  _doNotClearLayersOnDisconnect = !b;
187  }
188 } // namespace armarx::plugins
189 
190 namespace armarx
191 {
193  {
194  ARMARX_TRACE;
195  addPlugin(_debugDrawerHelperComponentPlugin);
196  }
197 
200  {
201  ARMARX_TRACE;
202  return *_debugDrawerHelperComponentPlugin;
203  }
204 
207  {
208  ARMARX_TRACE;
209  return *_debugDrawerHelperComponentPlugin;
210  }
211 
212  const DebugDrawerHelper&
214  {
215  ARMARX_TRACE;
217  }
218 
221  {
222  ARMARX_TRACE;
224  }
225 
228  {
229  ARMARX_TRACE;
231  }
232 
233  std::unique_lock<std::recursive_mutex>
235  {
236  ARMARX_TRACE;
238  }
239 
240  std::string
242  {
243  ARMARX_TRACE;
245  }
246 
249  {
250  ARMARX_TRACE;
252  }
253 
254  bool
256  {
257  ARMARX_TRACE;
259  }
260 
261  bool
263  Ice::Long timestamp) const
264  {
265  ARMARX_TRACE;
267  }
268 
269  bool
271  const RobotStateConfig& state) const
272  {
273  ARMARX_TRACE;
275  }
276 } // namespace armarx
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerHelperLock
std::unique_lock< std::recursive_mutex > getDebugDrawerHelperLock() const
Definition: DebugDrawerHelperComponentPlugin.cpp:234
armarx::plugins::DebugDrawerHelperComponentPlugin::getDebugDrawerLayerName
std::string getDebugDrawerLayerName() const
Definition: DebugDrawerHelperComponentPlugin.cpp:70
armarx::plugins::DebugDrawerHelperComponentPlugin::getDebugDrawerTopic
const DebugDrawerInterfacePrx & getDebugDrawerTopic() const
Definition: DebugDrawerHelperComponentPlugin.cpp:56
armarx::plugins::DebugDrawerHelperComponentPlugin::setClearLayersOnDisconnect
void setClearLayersOnDisconnect(bool b)
Definition: DebugDrawerHelperComponentPlugin.cpp:183
armarx::plugins::DebugDrawerHelperComponentPlugin::DebugDrawerHelperComponentPlugin
DebugDrawerHelperComponentPlugin(ManagedIceObject &parent, std::string pre)
Definition: DebugDrawerHelperComponentPlugin.cpp:30
armarx::ManagedIceObjectPlugin::parent
ManagedIceObject & parent()
Definition: ManagedIceObjectPlugin.cpp:72
armarx::plugins::DebugDrawerHelperComponentPlugin::preOnInitComponent
void preOnInitComponent() override
Definition: DebugDrawerHelperComponentPlugin.cpp:81
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerLayerName
std::string getDebugDrawerLayerName() const
Definition: DebugDrawerHelperComponentPlugin.cpp:241
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
trace.h
armarx::plugins::DebugDrawerHelperComponentPlugin::preOnConnectComponent
void preOnConnectComponent() override
Definition: DebugDrawerHelperComponentPlugin.cpp:91
armarx::ManagedIceObject::addPlugin
PluginT * addPlugin(const std::string prefix="", ParamsT &&... params)
Definition: ManagedIceObject.h:186
armarx::DebugDrawerHelperComponentPluginUser::synchronizeDebugDrawerHelperRobot
bool synchronizeDebugDrawerHelperRobot() const
Definition: DebugDrawerHelperComponentPlugin.cpp:255
DebugDrawerHelperComponentPlugin.h
armarx::DebugDrawerHelperComponentPluginUser::DebugDrawerHelperComponentPluginUser
DebugDrawerHelperComponentPluginUser()
Definition: DebugDrawerHelperComponentPlugin.cpp:192
armarx::plugins::RobotStateComponentPlugin::hasRobot
bool hasRobot(const std::string &id) const
Definition: RobotStateComponentPlugin.cpp:52
armarx::plugins::RobotStateComponentPlugin::synchronizeLocalClone
bool synchronizeLocalClone(const VirtualRobot::RobotPtr &robot) const
Definition: RobotStateComponentPlugin.cpp:191
ARMARX_TRACE
#define ARMARX_TRACE
Definition: trace.h:77
armarx::plugins::DebugDrawerHelperComponentPlugin::getDebugDrawerHelperRobot
VirtualRobot::RobotPtr getDebugDrawerHelperRobot() const
Definition: DebugDrawerHelperComponentPlugin.cpp:146
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerHelper
const DebugDrawerHelper & getDebugDrawerHelper() const
Definition: DebugDrawerHelperComponentPlugin.cpp:213
armarx::plugins::RobotStateComponentPlugin::getRobot
VirtualRobot::RobotPtr getRobot(const std::string &id) const
Definition: RobotStateComponentPlugin.cpp:142
armarx::plugins
This file is part of ArmarX.
Definition: DebugObserverComponentPlugin.cpp:27
armarx::ComponentPlugin
Definition: ComponentPlugin.h:37
armarx::plugins::DebugDrawerHelperComponentPlugin::synchronizeDebugDrawerHelperRobot
bool synchronizeDebugDrawerHelperRobot() const
Definition: DebugDrawerHelperComponentPlugin.cpp:153
armarx::plugins::DebugDrawerHelperComponentPlugin::postOnDisconnectComponent
void postOnDisconnectComponent() override
Definition: DebugDrawerHelperComponentPlugin.cpp:115
armarx::VariantType::Long
const VariantTypeId Long
Definition: Variant.h:918
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerHelperPlugin
const DebugDrawerHelperComponentPlugin & getDebugDrawerHelperPlugin() const
Definition: DebugDrawerHelperComponentPlugin.cpp:199
armarx::DebugDrawerHelper
The DebugDrawerHelper class provides draw functions in a given frame (static matrix or robot node) an...
Definition: DebugDrawerHelper.h:180
armarx::plugins::RobotStateComponentPlugin::addRobot
VirtualRobot::RobotPtr addRobot(const std::string &id, const VirtualRobot::RobotPtr &robot, const VirtualRobot::RobotNodeSetPtr &rns={}, const VirtualRobot::RobotNodePtr &node={})
Definition: RobotStateComponentPlugin.cpp:59
armarx::plugins::DebugDrawerHelperComponentPlugin::getDebugDrawerHelper
const DebugDrawerHelper & getDebugDrawerHelper() const
Definition: DebugDrawerHelperComponentPlugin.cpp:40
Component.h
armarx::DebugDrawerHelper::getDebugDrawer
const DebugDrawerInterfacePrx & getDebugDrawer() const
Definition: DebugDrawerHelper.cpp:473
armarx::ManagedIceObject
The ManagedIceObject is the base class for all ArmarX objects.
Definition: ManagedIceObject.h:162
armarx::plugins::DebugDrawerHelperComponentPlugin
Brief description of class RobotAPIComponentPlugins.
Definition: DebugDrawerHelperComponentPlugin.h:40
IceUtil::Handle< class PropertyDefinitionContainer >
IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface >
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerTopic
const DebugDrawerInterfacePrx & getDebugDrawerTopic() const
Definition: DebugDrawerHelperComponentPlugin.cpp:227
armarx::ManagedIceObject::getName
std::string getName() const
Retrieve name of object.
Definition: ManagedIceObject.cpp:108
armarx::plugins::DebugDrawerHelperComponentPlugin::getDebugDrawerHelperLock
std::unique_lock< std::recursive_mutex > getDebugDrawerHelperLock() const
Definition: DebugDrawerHelperComponentPlugin.cpp:63
armarx::DebugDrawerInterfacePrx
::IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface > DebugDrawerInterfacePrx
Definition: JointController.h:40
armarx::plugins::DebugDrawerHelperComponentPlugin::postCreatePropertyDefinitions
void postCreatePropertyDefinitions(PropertyDefinitionsPtr &properties) override
Definition: DebugDrawerHelperComponentPlugin.cpp:134
armarx::DebugDrawerHelperComponentPluginUser::getDebugDrawerHelperRobot
VirtualRobot::RobotPtr getDebugDrawerHelperRobot() const
Definition: DebugDrawerHelperComponentPlugin.cpp:248
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19