-
Notifications
You must be signed in to change notification settings - Fork 195
/
joint_trajectory_streamer.cpp
643 lines (542 loc) · 21.5 KB
/
joint_trajectory_streamer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2013, Southwest Research Institute
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Southwest Research Institute, nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "motoman_driver/joint_trajectory_streamer.h"
#include "motoman_driver/simple_message/messages/motoman_motion_reply_message.h"
#include "simple_message/messages/joint_traj_pt_full_message.h"
#include "motoman_driver/simple_message/messages/joint_traj_pt_full_ex_message.h"
#include "industrial_robot_client/utils.h"
#include "industrial_utils/param_utils.h"
#include <map>
#include <vector>
#include <string>
namespace CommTypes = industrial::simple_message::CommTypes;
namespace ReplyTypes = industrial::simple_message::ReplyTypes;
using industrial::joint_data::JointData;
using industrial::joint_traj_pt_full::JointTrajPtFull;
using industrial::joint_traj_pt_full_message::JointTrajPtFullMessage;
using industrial::joint_traj_pt_full_ex::JointTrajPtFullEx;
using industrial::joint_traj_pt_full_ex_message::JointTrajPtFullExMessage;
using industrial::shared_types::shared_int;
using motoman::simple_message::motion_reply_message::MotionReplyMessage;
namespace TransferStates = industrial_robot_client::joint_trajectory_streamer::TransferStates;
namespace MotionReplyResults = motoman::simple_message::motion_reply::MotionReplyResults;
namespace motoman
{
namespace joint_trajectory_streamer
{
namespace
{
const double pos_stale_time_ = 1.0; // max time since last "current position" update, for validation (sec)
const double start_pos_tol_ = 1e-4; // max difference btwn start & current position, for validation (rad)
}
#define ROS_ERROR_RETURN(rtn, ...) do {ROS_ERROR(__VA_ARGS__); return(rtn);} while (0) // NOLINT(whitespace/braces)
// override init() to read "robot_id" parameter and subscribe to joint_states
bool MotomanJointTrajectoryStreamer::init(SmplMsgConnection* connection, const std::map<int, RobotGroup> &robot_groups,
const std::map<std::string, double> &velocity_limits)
{
bool rtn = true;
ROS_INFO("MotomanJointTrajectoryStreamer: init");
this->robot_groups_ = robot_groups;
rtn &= JointTrajectoryStreamer::init(connection, robot_groups, velocity_limits);
motion_ctrl_.init(connection, 0);
for (size_t i = 0; i < robot_groups_.size(); i++)
{
MotomanMotionCtrl motion_ctrl;
int robot_id = robot_groups_[i].get_group_id();
rtn &= motion_ctrl.init(connection, robot_id);
motion_ctrl_map_[robot_id] = motion_ctrl;
}
disabler_ = node_.advertiseService("robot_disable", &MotomanJointTrajectoryStreamer::disableRobotCB, this);
enabler_ = node_.advertiseService("robot_enable", &MotomanJointTrajectoryStreamer::enableRobotCB, this);
srv_select_tool_ = node_.advertiseService("select_tool", &MotomanJointTrajectoryStreamer::selectToolCB, this);
return rtn;
}
// override init() to read "robot_id" parameter and subscribe to joint_states
bool MotomanJointTrajectoryStreamer::init(SmplMsgConnection* connection, const std::vector<std::string> &joint_names,
const std::map<std::string, double> &velocity_limits)
{
bool rtn = true;
ROS_INFO("MotomanJointTrajectoryStreamer: init");
rtn &= JointTrajectoryStreamer::init(connection, joint_names, velocity_limits);
// try to read robot_id parameter, if none specified
if ((robot_id_ < 0))
node_.param("robot_id", robot_id_, 0);
rtn &= motion_ctrl_.init(connection, robot_id_);
disabler_ = node_.advertiseService("robot_disable", &MotomanJointTrajectoryStreamer::disableRobotCB, this);
enabler_ = node_.advertiseService("robot_enable", &MotomanJointTrajectoryStreamer::enableRobotCB, this);
srv_select_tool_ = node_.advertiseService("select_tool", &MotomanJointTrajectoryStreamer::selectToolCB, this);
return rtn;
}
MotomanJointTrajectoryStreamer::~MotomanJointTrajectoryStreamer()
{
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
// TODO( ): Find better place to call StopTrajMode
motion_ctrl_.setTrajMode(false); // release TrajMode, so INFORM jobs can run
}
bool MotomanJointTrajectoryStreamer::disableRobotCB(std_srvs::Trigger::Request &req,
std_srvs::Trigger::Response &res)
{
trajectoryStop();
{
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
res.success = motion_ctrl_.setTrajMode(false);
}
if (!res.success)
{
res.message = "Motoman robot was NOT disabled. Please re-examine and retry.";
ROS_ERROR_STREAM(res.message);
}
else
{
res.message = "Motoman robot is now disabled and will NOT accept motion commands.";
ROS_WARN_STREAM(res.message);
}
return true;
}
bool MotomanJointTrajectoryStreamer::enableRobotCB(std_srvs::Trigger::Request& req, std_srvs::Trigger::Response& res)
{
{
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
res.success = motion_ctrl_.setTrajMode(true);
}
if (!res.success)
{
res.message = "Motoman robot was NOT enabled. Please re-examine and retry.";
ROS_ERROR_STREAM(res.message);
}
else
{
res.message = "Motoman robot is now enabled and will accept motion commands.";
ROS_WARN_STREAM(res.message);
}
return true;
}
bool MotomanJointTrajectoryStreamer::selectToolCB(motoman_msgs::SelectTool::Request &req,
motoman_msgs::SelectTool::Response &res)
{
std::string err_msg;
{
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
res.success = motion_ctrl_.selectToolFile(req.group_number, req.tool_number, err_msg);
}
if (!res.success)
{
// provide caller with failure indication
// TODO( ): should we also return the result code?
std::stringstream message;
message << "Tool file change failed (grp: " << req.group_number
<< ", tool: " << req.tool_number << "): " << err_msg;
res.message = message.str();
ROS_ERROR_STREAM(res.message);
}
else
{
ROS_DEBUG_STREAM("Tool file changed to: " << req.tool_number
<< ", for group: " << req.group_number);
}
// the ROS service was successfully invoked, so return true (even if the
// MotoROS service was not successfully invoked)
return true;
}
// override create_message to generate JointTrajPtFull message (instead of default JointTrajPt)
bool MotomanJointTrajectoryStreamer::create_message(int seq, const trajectory_msgs::JointTrajectoryPoint& pt,
SimpleMessage* msg)
{
JointTrajPtFull msg_data;
JointData values;
// copy position data
if (!pt.positions.empty())
{
if (VectorToJointData(pt.positions, values))
msg_data.setPositions(values);
else
ROS_ERROR_RETURN(false, "Failed to copy position data to JointTrajPtFullMessage");
}
else
msg_data.clearPositions();
// copy velocity data
if (!pt.velocities.empty())
{
if (VectorToJointData(pt.velocities, values))
msg_data.setVelocities(values);
else
ROS_ERROR_RETURN(false, "Failed to copy velocity data to JointTrajPtFullMessage");
}
else
msg_data.clearVelocities();
// copy acceleration data
if (!pt.accelerations.empty())
{
if (VectorToJointData(pt.accelerations, values))
msg_data.setAccelerations(values);
else
ROS_ERROR_RETURN(false, "Failed to copy acceleration data to JointTrajPtFullMessage");
}
else
msg_data.clearAccelerations();
// copy scalar data
msg_data.setRobotID(robot_id_);
msg_data.setSequence(seq);
msg_data.setTime(pt.time_from_start.toSec());
// convert to message
JointTrajPtFullMessage jtpf_msg;
jtpf_msg.init(msg_data);
return jtpf_msg.toRequest(*msg); // assume "request" COMM_TYPE for now
}
bool MotomanJointTrajectoryStreamer::create_message_ex(int seq, const motoman_msgs::DynamicJointPoint& point,
SimpleMessage* msg)
{
JointTrajPtFullEx msg_data_ex;
JointTrajPtFullExMessage jtpf_msg_ex;
std::vector<industrial::joint_traj_pt_full::JointTrajPtFull> msg_data_vector;
JointData values;
int num_groups = point.num_groups;
for (int i = 0; i < num_groups; i++)
{
JointTrajPtFull msg_data;
motoman_msgs::DynamicJointsGroup pt;
motoman_msgs::DynamicJointPoint dpoint;
pt = point.groups[i];
if (pt.positions.size() < 10)
{
int size_to_complete = 10 - pt.positions.size();
std::vector<double> positions(size_to_complete, 0.0);
std::vector<double> velocities(size_to_complete, 0.0);
std::vector<double> accelerations(size_to_complete, 0.0);
pt.positions.insert(pt.positions.end(), positions.begin(), positions.end());
pt.velocities.insert(pt.velocities.end(), velocities.begin(), velocities.end());
pt.accelerations.insert(pt.accelerations.end(), accelerations.begin(), accelerations.end());
}
// copy position data
if (!pt.positions.empty())
{
if (VectorToJointData(pt.positions, values))
msg_data.setPositions(values);
else
ROS_ERROR_RETURN(false, "Failed to copy position data to JointTrajPtFullMessage");
}
else
msg_data.clearPositions();
// copy velocity data
if (!pt.velocities.empty())
{
if (VectorToJointData(pt.velocities, values))
msg_data.setVelocities(values);
else
ROS_ERROR_RETURN(false, "Failed to copy velocity data to JointTrajPtFullMessage");
}
else
msg_data.clearVelocities();
// copy acceleration data
if (!pt.accelerations.empty())
{
if (VectorToJointData(pt.accelerations, values))
msg_data.setAccelerations(values);
else
ROS_ERROR_RETURN(false, "Failed to copy acceleration data to JointTrajPtFullMessage");
}
else
msg_data.clearAccelerations();
// copy scalar data
msg_data.setRobotID(pt.group_number);
msg_data.setSequence(seq);
msg_data.setTime(pt.time_from_start.toSec());
// convert to message
msg_data_vector.push_back(msg_data);
}
msg_data_ex.setMultiJointTrajPtData(msg_data_vector);
msg_data_ex.setNumGroups(num_groups);
msg_data_ex.setSequence(seq);
jtpf_msg_ex.init(msg_data_ex);
return jtpf_msg_ex.toRequest(*msg); // assume "request" COMM_TYPE for now
}
bool MotomanJointTrajectoryStreamer::create_message(int seq, const motoman_msgs::DynamicJointsGroup& pt,
SimpleMessage* msg)
{
JointTrajPtFull msg_data;
JointData values;
// copy position data
if (!pt.positions.empty())
{
if (VectorToJointData(pt.positions, values))
msg_data.setPositions(values);
else
ROS_ERROR_RETURN(false, "Failed to copy position data to JointTrajPtFullMessage");
}
else
msg_data.clearPositions();
// copy velocity data
if (!pt.velocities.empty())
{
if (VectorToJointData(pt.velocities, values))
msg_data.setVelocities(values);
else
ROS_ERROR_RETURN(false, "Failed to copy velocity data to JointTrajPtFullMessage");
}
else
msg_data.clearVelocities();
// copy acceleration data
if (!pt.accelerations.empty())
{
if (VectorToJointData(pt.accelerations, values))
msg_data.setAccelerations(values);
else
ROS_ERROR_RETURN(false, "Failed to copy acceleration data to JointTrajPtFullMessage");
}
else
msg_data.clearAccelerations();
// copy scalar data
msg_data.setRobotID(pt.group_number);
msg_data.setSequence(seq);
msg_data.setTime(pt.time_from_start.toSec());
// convert to message
JointTrajPtFullMessage jtpf_msg;
jtpf_msg.init(msg_data);
return jtpf_msg.toRequest(*msg); // assume "request" COMM_TYPE for now
}
bool MotomanJointTrajectoryStreamer::VectorToJointData(const std::vector<double> &vec,
JointData &joints)
{
if (static_cast<int>(vec.size()) > joints.getMaxNumJoints())
ROS_ERROR_RETURN(false, "Failed to copy to JointData. Len (%d) out of range (0 to %d)",
(int)vec.size(), joints.getMaxNumJoints());
joints.init();
for (size_t i = 0; i < vec.size(); ++i)
{
joints.setJoint(i, vec[i]);
}
return true;
}
// override send_to_robot to provide controllerReady() and setTrajMode() calls
bool MotomanJointTrajectoryStreamer::send_to_robot(const std::vector<SimpleMessage>& messages)
{
bool motion_ctrl_result = false;
{
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
motion_ctrl_result = motion_ctrl_.controllerReady();
}
if (!motion_ctrl_result)
ROS_ERROR_RETURN(false, "Failed to initialize MotoRos motion, trajectory execution ABORTED. If safe, call the "
"'robot_enable' service to (re-)enable Motoplus motion and retry.");
return JointTrajectoryStreamer::send_to_robot(messages);
}
// override streamingThread, to provide check/retry of MotionReply.result=BUSY
void MotomanJointTrajectoryStreamer::streamingThread()
{
int connectRetryCount = 1;
bool is_connected = false;
bool is_msg_sent = false;
ROS_INFO("Starting Motoman joint trajectory streamer thread");
while (ros::ok())
{
ros::Duration(0.005).sleep();
// automatically re-establish connection, if required
if (connectRetryCount-- > 0)
{
ROS_INFO("Connecting to robot motion server");
{
// SmplMsgConnection is not thread safe, so lock first
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
this->connection_->makeConnect();
}
ros::Duration(0.250).sleep(); // wait for connection
is_connected = false;
{
// SmplMsgConnection is not thread safe, so lock first
// TODO(gavanderhoorn): not sure this needs to be protected by a mutex
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
is_connected = this->connection_->isConnected();
}
if (is_connected)
{
connectRetryCount = 0;
}
else if (connectRetryCount <= 0)
{
ROS_ERROR("Timeout connecting to robot controller. Send new motion command to retry.");
this->state_ = TransferStates::IDLE;
}
continue;
}
// this does not lock smpl_msg_conx_mutex_, but the mutex from JointTrajectoryStreamer
this->mutex_.lock();
SimpleMessage msg, tmpMsg, reply;
switch (this->state_)
{
case TransferStates::IDLE:
ros::Duration(0.250).sleep(); // slower loop while waiting for new trajectory
break;
case TransferStates::STREAMING:
if (this->current_point_ >= static_cast<int>(this->current_traj_.size()))
{
ROS_INFO("Trajectory streaming complete, setting state to IDLE");
this->state_ = TransferStates::IDLE;
break;
}
is_connected = false;
{
// SmplMsgConnection is not thread safe, so lock first
// TODO(gavanderhoorn): not sure this needs to be protected by a mutex
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
is_connected = this->connection_->isConnected();
}
if (!is_connected)
{
ROS_DEBUG("Robot disconnected. Attempting reconnect...");
connectRetryCount = 5;
break;
}
tmpMsg = this->current_traj_[this->current_point_];
msg.init(tmpMsg.getMessageType(), CommTypes::SERVICE_REQUEST,
ReplyTypes::INVALID, tmpMsg.getData()); // set commType=REQUEST
is_msg_sent = false;
{
// SmplMsgConnection is not thread safe, so lock first
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
is_msg_sent = this->connection_->sendAndReceiveMsg(msg, reply, false);
}
if (!is_msg_sent)
{
ROS_WARN("Failed sent joint point, will try again");
}
else
{
MotionReplyMessage reply_status;
if (!reply_status.init(reply))
{
ROS_ERROR("Aborting trajectory: Unable to parse JointTrajectoryPoint reply");
this->state_ = TransferStates::IDLE;
break;
}
if (reply_status.reply_.getResult() == MotionReplyResults::SUCCESS)
{
ROS_DEBUG("Point[%d of %d] sent to controller",
this->current_point_, static_cast<int>(this->current_traj_.size()));
this->current_point_++;
}
else if (reply_status.reply_.getResult() == MotionReplyResults::BUSY)
break; // silently retry sending this point
else
{
ROS_ERROR_STREAM("Aborting Trajectory. Failed to send point"
<< " (#" << this->current_point_ << "): "
<< MotomanMotionCtrl::getErrorString(reply_status.reply_));
this->state_ = TransferStates::IDLE;
break;
}
}
break;
default:
ROS_ERROR("Joint trajectory streamer: unknown state");
this->state_ = TransferStates::IDLE;
break;
}
// this does not unlock smpl_msg_conx_mutex_, but the mutex from JointTrajectoryStreamer
this->mutex_.unlock();
}
ROS_WARN("Exiting trajectory streamer thread");
}
// override trajectoryStop to send MotionCtrl message
void MotomanJointTrajectoryStreamer::trajectoryStop()
{
this->state_ = TransferStates::IDLE; // stop sending trajectory points
// SmplMsgConnection is not thread safe, so lock first
// NOTE: motion_ctrl_ uses the SmplMsgConnection here
const std::lock_guard<std::mutex> lock{smpl_msg_conx_mutex_};
motion_ctrl_.stopTrajectory();
}
// override is_valid to include FS100-specific checks
bool MotomanJointTrajectoryStreamer::is_valid(const trajectory_msgs::JointTrajectory &traj)
{
if (!JointTrajectoryInterface::is_valid(traj))
return false;
for (size_t i = 0; i < traj.points.size(); ++i)
{
const trajectory_msgs::JointTrajectoryPoint &pt = traj.points[i];
// FS100 requires valid velocity data
if (pt.velocities.empty())
ROS_ERROR_RETURN(false, "Validation failed: Missing velocity data for trajectory pt %lu", i);
}
if ((cur_joint_pos_.header.stamp - ros::Time::now()).toSec() > pos_stale_time_)
ROS_ERROR_RETURN(false, "Validation failed: Can't get current robot position.");
// FS100 requires trajectory start at current position
namespace IRC_utils = industrial_robot_client::utils;
if (!IRC_utils::isWithinRange(cur_joint_pos_.name, cur_joint_pos_.position,
traj.joint_names, traj.points[0].positions,
start_pos_tol_))
{
ROS_ERROR_RETURN(false, "Validation failed: Trajectory doesn't start at current position.");
}
return true;
}
bool MotomanJointTrajectoryStreamer::is_valid(const motoman_msgs::DynamicJointTrajectory &traj)
{
if (!JointTrajectoryInterface::is_valid(traj))
return false;
ros::Time time_stamp;
int group_number;
for (size_t i = 0; i < traj.points.size(); ++i)
{
for (int gr = 0; gr < traj.points[i].num_groups; gr++)
{
const motoman_msgs::DynamicJointsGroup &pt = traj.points[i].groups[gr];
time_stamp = cur_joint_pos_map_[pt.group_number].header.stamp;
// TODO( ): adjust for more joints
group_number = pt.group_number;
// FS100 requires valid velocity data
if (pt.velocities.empty())
ROS_ERROR_RETURN(false, "Validation failed: Missing velocity data for trajectory pt %lu", i);
// FS100 requires trajectory start at current position
namespace IRC_utils = industrial_robot_client::utils;
if (!IRC_utils::isWithinRange(cur_joint_pos_map_[group_number].name, cur_joint_pos_map_[group_number].position,
traj.joint_names, traj.points[0].groups[gr].positions,
start_pos_tol_))
{
ROS_ERROR_RETURN(false, "Validation failed: Trajectory doesn't start at current position.");
}
}
}
if ((time_stamp - ros::Time::now()).toSec() > pos_stale_time_)
ROS_ERROR_RETURN(false, "Validation failed: Can't get current robot position.");
return true;
}
} // namespace joint_trajectory_streamer
} // namespace motoman