aron_conversions.cpp
Go to the documentation of this file.
1 #include "aron_conversions.h"
2 
5 
7 #include <armarx/navigation/core/aron/Events.aron.generated.h>
8 #include <armarx/navigation/core/aron/PIDParams.aron.generated.h>
9 #include <armarx/navigation/core/aron/Trajectory.aron.generated.h>
10 #include <armarx/navigation/core/aron/Twist.aron.generated.h>
11 #include <armarx/navigation/core/aron/TwistLimits.aron.generated.h>
15 
16 #include <range/v3/range/conversion.hpp>
17 #include <range/v3/view/transform.hpp>
18 
20 {
21 
22 
23  void
24  toAron(arondto::GlobalTrajectoryPoint& dto, const GlobalTrajectoryPoint& bo)
25  {
26  dto.pose = bo.waypoint.pose.matrix();
27  dto.velocity = bo.velocity;
28  }
29 
30  void
31  fromAron(const arondto::GlobalTrajectoryPoint& dto, GlobalTrajectoryPoint& bo)
32  {
33  bo.waypoint.pose = core::Pose(dto.pose);
34  bo.velocity = dto.velocity;
35  }
36 
37  void
38  toAron(arondto::GlobalTrajectory& dto, const GlobalTrajectory& bo)
39  {
40  dto.points = bo.points() |
42  [](const GlobalTrajectoryPoint& boTp) -> arondto::GlobalTrajectoryPoint
43  {
44  arondto::GlobalTrajectoryPoint dtoTp;
45  toAron(dtoTp, boTp);
46  return dtoTp;
47  }) |
48  ranges::to_vector;
49  }
50 
51  void
52  fromAron(const arondto::GlobalTrajectory& dto, GlobalTrajectory& bo)
53  {
55  dto.points |
56  ranges::views::
57  transform( //static_cast<TrajectoryPoint (*)(const arondto::GlobalTrajectoryPoint&)>(&fromAron)
58  [](const arondto::GlobalTrajectoryPoint& dto) -> GlobalTrajectoryPoint
59  {
61  fromAron(dto, bo);
62  return bo;
63  }) |
64  ranges::to_vector);
65  }
66 
67  void
68  toAron(arondto::LocalTrajectoryPoint& dto, const LocalTrajectoryPoint& bo)
69  {
70  dto.pose = bo.pose.matrix();
71  dto.timestamp = bo.timestamp;
72  }
73 
74  void
75  fromAron(const arondto::LocalTrajectoryPoint& dto, LocalTrajectoryPoint& bo)
76  {
77  bo.pose = core::Pose(dto.pose);
78  bo.timestamp = dto.timestamp;
79  }
80 
81  void
82  toAron(arondto::LocalTrajectory& dto, const LocalTrajectory& bo)
83  {
84  dto.points = bo.points() |
86  [](const LocalTrajectoryPoint& boTp) -> arondto::LocalTrajectoryPoint
87  {
88  arondto::LocalTrajectoryPoint dtoTp;
89  toAron(dtoTp, boTp);
90  return dtoTp;
91  }) |
92  ranges::to_vector;
93  }
94 
95  void
96  fromAron(const arondto::LocalTrajectory& dto, LocalTrajectory& bo)
97  {
98  bo =
99  dto.points |
101  transform( //static_cast<TrajectoryPoint (*)(const arondto::GlobalTrajectoryPoint&)>(&fromAron)
102  [](const arondto::LocalTrajectoryPoint& dto) -> LocalTrajectoryPoint
103  {
105  fromAron(dto, bo);
106  return bo;
107  }) |
108  ranges::to_vector;
109  }
110 
111  void
112  toAron(arondto::Twist& dto, const Twist& bo)
113  {
114  dto.linear = bo.linear;
115  dto.angular = bo.angular;
116  }
117 
118  void
119  fromAron(const arondto::Twist& dto, Twist& bo)
120  {
121  bo.linear = dto.linear;
122  bo.angular = dto.angular;
123  }
124 
125  void
126  toAron(armarx::navigation::core::arondto::PIDParams& dto,
128  {
129  aron::toAron(dto.Kp, bo.Kp);
130  aron::toAron(dto.Ki, bo.Ki);
131  aron::toAron(dto.Kd, bo.Kd);
132  }
133 
134  void
135  fromAron(const armarx::navigation::core::arondto::PIDParams& dto,
137  {
138  aron::fromAron(dto.Kp, bo.Kp);
139  aron::fromAron(dto.Ki, bo.Ki);
140  aron::fromAron(dto.Kd, bo.Kd);
141  }
142 
143  void
144  toAron(armarx::navigation::core::arondto::TwistLimits& dto,
146  {
147  aron::toAron(dto.linear, bo.linear);
148  aron::toAron(dto.angular, bo.angular);
149  }
150 
151  void
152  fromAron(const armarx::navigation::core::arondto::TwistLimits& dto,
154  {
155  aron::fromAron(dto.linear, bo.linear);
156  aron::fromAron(dto.angular, bo.angular);
157  }
158 
159  void
160  toAron(armarx::navigation::core::arondto::GoalReachedEvent& dto,
162  {
163  aron::toAron(dto.pose, bo.pose);
164  }
165 
166  void
167  fromAron(const armarx::navigation::core::arondto::GoalReachedEvent& dto,
169  {
170  aron::fromAron(dto.pose, bo.pose.matrix());
171  }
172 
173  void
174  fromAron(const armarx::navigation::core::arondto::GlobalPlanningFailedEvent& dto,
176  {
177  aron::fromAron(dto.message, bo.message);
178  }
179 
180  void
181  toAron(armarx::navigation::core::arondto::GlobalPlanningFailedEvent& dto,
183  {
184  aron::toAron(dto.message, bo.message);
185  }
186 
187  void
188  toAron(armarx::navigation::core::arondto::MovementStartedEvent& dto,
190  {
191  aron::toAron(dto.startPose, bo.startPose.matrix());
192  }
193 
194  void
195  fromAron(const armarx::navigation::core::arondto::MovementStartedEvent& dto,
197  {
198  aron::fromAron(dto.startPose, bo.startPose.matrix());
199  }
200 
201  void
202  toAron(armarx::navigation::core::arondto::WaypointReachedEvent& dto,
204  {
205  aron::toAron(dto.pose, bo.pose);
206  aron::toAron(dto.waypointId, bo.waypointId);
207  }
208 
209  void
210  fromAron(const armarx::navigation::core::arondto::WaypointReachedEvent& dto,
212  {
213  aron::fromAron(dto.pose, bo.pose.matrix());
214  aron::fromAron(dto.waypointId, bo.waypointId);
215  }
216 
217  void
218  toAron(armarx::navigation::core::arondto::InternalErrorEvent& dto,
220  {
221  aron::toAron(dto.pose, bo.pose);
222  aron::toAron(dto.message, bo.message);
223  }
224 
225  void
226  fromAron(const armarx::navigation::core::arondto::InternalErrorEvent& dto,
228  {
229  aron::fromAron(dto.pose, bo.pose.matrix());
230  aron::fromAron(dto.message, bo.message);
231  }
232 
233  void
234  toAron(armarx::navigation::core::arondto::UserAbortTriggeredEvent& dto,
236  {
237  aron::toAron(dto.pose, bo.pose.matrix());
238  }
239 
240  void
241  fromAron(const armarx::navigation::core::arondto::UserAbortTriggeredEvent& dto,
243  {
244  aron::fromAron(dto.pose, bo.pose.matrix());
245  }
246 
247  void
248  toAron(armarx::navigation::core::arondto::SafetyThrottlingTriggeredEvent& dto,
250  {
251  aron::toAron(dto.pose, bo.pose.matrix());
252  aron::toAron(dto.throttlingFactor, bo.throttlingFactor);
253  }
254 
255  void
256  fromAron(const armarx::navigation::core::arondto::SafetyThrottlingTriggeredEvent& dto,
258  {
259  aron::fromAron(dto.pose, bo.pose.matrix());
260  aron::fromAron(dto.throttlingFactor, bo.throttlingFactor);
261  }
262 
263  void
264  toAron(armarx::navigation::core::arondto::SafetyStopTriggeredEvent& dto,
266  {
267  aron::toAron(dto.pose, bo.pose.matrix());
268  }
269 
270  void
271  fromAron(const armarx::navigation::core::arondto::SafetyStopTriggeredEvent& dto,
273  {
274  aron::fromAron(dto.pose, bo.pose.matrix());
275  }
276 
277  void
278  fromAron(const armarx::navigation::core::arondto::LocalPlanningFailedEvent& dto,
280  {
281  aron::fromAron(dto.message, bo.message);
282  }
283 
284  void
285  toAron(armarx::navigation::core::arondto::LocalPlanningFailedEvent& dto,
287  {
288  aron::toAron(dto.message, bo.message);
289  }
290 
291  void
292  toAron(armarx::navigation::core::arondto::GlobalTrajectoryUpdatedEvent& dto,
294  {
295  toAron(dto.trajectory, bo.trajectory);
296  }
297 
298  void
299  fromAron(const armarx::navigation::core::arondto::GlobalTrajectoryUpdatedEvent& dto,
301  {
302  fromAron(dto.trajectory, bo.trajectory);
303  }
304 
305  void
306  toAron(armarx::navigation::core::arondto::LocalTrajectoryUpdatedEvent& dto,
308  {
309  toAron(dto.trajectory, bo.trajectory);
310  }
311 
312  void
313  fromAron(const armarx::navigation::core::arondto::LocalTrajectoryUpdatedEvent& dto,
315  {
316  fromAron(dto.trajectory, bo.trajectory);
317  }
318 
319 } // namespace armarx::navigation::core
armarx::navigation::core::GlobalTrajectory
Definition: Trajectory.h:70
armarx::navigation::core::PIDParams
Definition: types.h:73
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
basic_types.h
armarx::navigation::core::fromAron
void fromAron(const arondto::GlobalTrajectoryPoint &dto, GlobalTrajectoryPoint &bo)
Definition: aron_conversions.cpp:31
armarx::navigation::core::InternalErrorEvent
Event describing the occurance of an internal unhandled error.
Definition: events.h:104
armarx::navigation::core::SafetyThrottlingTriggeredEvent
Event desciribing that a significant safety throttling factor was reached.
Definition: events.h:71
armarx::navigation::core
This file is part of ArmarX.
Definition: aron_conversions.cpp:19
armarx::navigation::core::toAron
void toAron(arondto::GlobalTrajectoryPoint &dto, const GlobalTrajectoryPoint &bo)
Definition: aron_conversions.cpp:24
aron_conversions.h
armarx::navigation::core::GlobalTrajectoryPoint
Definition: Trajectory.h:37
armarx::navigation::core::Twist
Definition: basic_types.h:53
events.h
armarx::navigation::core::LocalTrajectoryPoint
Definition: Trajectory.h:156
armarx::navigation::core::SafetyStopTriggeredEvent
Event describing that for security reasons, the robot was stopped completely.
Definition: events.h:87
armarx::navigation::core::UserAbortTriggeredEvent
Event describing that the user aborted the current execution.
Definition: events.h:96
armarx::navigation::core::TwistLimits
Definition: types.h:80
armarx::navigation::core::LocalTrajectory
Definition: Trajectory.h:170
armarx::navigation::core::LocalTrajectoryUpdatedEvent
Event describing that the local trajectory was updated.
Definition: events.h:121
armarx::navigation::core::GlobalPlanningFailedEvent
Definition: events.h:34
armarx::navigation::core::GoalReachedEvent
Event describing that the targeted goal was successfully reached.
Definition: events.h:52
armarx::transform
auto transform(const Container< InputT, Alloc > &in, OutputT(*func)(InputT const &)) -> Container< OutputT, typename std::allocator_traits< Alloc >::template rebind_alloc< OutputT >>
Convenience function (with less typing) to transform a container of type InputT into the same contain...
Definition: algorithm.h:351
armarx::aron::toAron
void toAron(T &dto, const T &bo)
Framework for converting ARON DTOs (Data Transfer Objects) to C++ BOs (Business Objects) and back.
Definition: aron_conversions.h:77
armarx::navigation::core::GlobalTrajectoryUpdatedEvent
Event describing that the global trajectory was updated.
Definition: events.h:113
eigen.h
armarx::navigation::core::WaypointReachedEvent
Event describing that a user-defined waypoint was successfully reached.
Definition: events.h:60
Trajectory.h
armarx::aron::fromAron
void fromAron(const T &dto, T &bo)
Definition: aron_conversions.h:84
types.h
armarx::navigation::core::LocalPlanningFailedEvent
Definition: events.h:39
armarx::aron::bo
const std::optional< BoT > & bo
Definition: aron_conversions.h:174
armarx::navigation::core::MovementStartedEvent
Definition: events.h:44