-
Notifications
You must be signed in to change notification settings - Fork 195
/
joint_trajectory_streamer.cpp
301 lines (246 loc) · 9.23 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
/*
* 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/industrial_robot_client/joint_trajectory_streamer.h"
#include <map>
#include <vector>
#include <string>
namespace CommTypes = industrial::simple_message::CommTypes;
namespace ReplyTypes = industrial::simple_message::ReplyTypes;
namespace industrial_robot_client
{
namespace joint_trajectory_streamer
{
bool JointTrajectoryStreamer::init(SmplMsgConnection* connection, const std::map<int, RobotGroup> &robot_groups,
const std::map<std::string, double> &velocity_limits)
{
bool rtn = true;
ROS_INFO("JointTrajectoryStreamer: init");
rtn &= JointTrajectoryInterface::init(connection, robot_groups, velocity_limits);
this->mutex_.lock();
this->current_point_ = 0;
this->state_ = TransferStates::IDLE;
this->streaming_thread_ =
new boost::thread(boost::bind(&JointTrajectoryStreamer::streamingThread, this));
ROS_INFO("Unlocking mutex");
this->mutex_.unlock();
return rtn;
}
bool JointTrajectoryStreamer::init(SmplMsgConnection* connection, const std::vector<std::string> &joint_names,
const std::map<std::string, double> &velocity_limits)
{
bool rtn = true;
ROS_INFO("JointTrajectoryStreamer: init");
rtn &= JointTrajectoryInterface::init(connection, joint_names, velocity_limits);
this->mutex_.lock();
this->current_point_ = 0;
this->state_ = TransferStates::IDLE;
this->streaming_thread_ =
new boost::thread(boost::bind(&JointTrajectoryStreamer::streamingThread, this));
ROS_INFO("Unlocking mutex");
this->mutex_.unlock();
return rtn;
}
JointTrajectoryStreamer::~JointTrajectoryStreamer()
{
delete this->streaming_thread_;
}
void JointTrajectoryStreamer::jointTrajectoryCB(const motoman_msgs::DynamicJointTrajectoryConstPtr &msg)
{
ROS_INFO("Receiving joint trajectory message");
// read current state value (should be atomic)
int state = this->state_;
ROS_DEBUG("Current state is: %d", state);
if (TransferStates::IDLE != state)
{
if (msg->points.empty())
ROS_INFO("Empty trajectory received, canceling current trajectory");
else
ROS_ERROR("Trajectory splicing not yet implemented, stopping current motion.");
this->mutex_.lock();
trajectoryStop();
this->mutex_.unlock();
return;
}
if (msg->points.empty())
{
ROS_INFO("Empty trajectory received while in IDLE state, nothing is done");
return;
}
// calc new trajectory
std::vector<SimpleMessage> new_traj_msgs;
if (!trajectory_to_msgs(msg, &new_traj_msgs))
return;
// send command messages to robot
send_to_robot(new_traj_msgs);
}
void JointTrajectoryStreamer::jointTrajectoryCB(const trajectory_msgs::JointTrajectoryConstPtr &msg)
{
ROS_INFO("Receiving joint trajectory message");
// read current state value (should be atomic)
int state = this->state_;
ROS_DEBUG("Current state is: %d", state);
if (TransferStates::IDLE != state)
{
if (msg->points.empty())
ROS_INFO("Empty trajectory received, canceling current trajectory");
else
ROS_ERROR("Trajectory splicing not yet implemented, stopping current motion.");
this->mutex_.lock();
trajectoryStop();
this->mutex_.unlock();
return;
}
if (msg->points.empty())
{
ROS_INFO("Empty trajectory received while in IDLE state, nothing is done");
return;
}
// calc new trajectory
std::vector<SimpleMessage> new_traj_msgs;
if (!trajectory_to_msgs(msg, &new_traj_msgs))
return;
// send command messages to robot
send_to_robot(new_traj_msgs);
}
bool JointTrajectoryStreamer::send_to_robot(const std::vector<SimpleMessage>& messages)
{
ROS_INFO("Loading trajectory, setting state to streaming");
this->mutex_.lock();
{
ROS_INFO("Executing trajectory of size: %d", static_cast<int>(messages.size()));
this->current_traj_ = messages;
this->current_point_ = 0;
this->state_ = TransferStates::STREAMING;
this->streaming_start_ = ros::Time::now();
}
this->mutex_.unlock();
return true;
}
bool JointTrajectoryStreamer::trajectory_to_msgs(const trajectory_msgs::JointTrajectoryConstPtr &traj, std::vector<SimpleMessage>* msgs)
{
// use base function to transform points
if (!JointTrajectoryInterface::trajectory_to_msgs(traj, msgs))
return false;
// pad trajectory as required for minimum streaming buffer size
if (!msgs->empty() && (msgs->size() < (size_t)min_buffer_size_))
{
ROS_DEBUG("Padding trajectory: current(%d) => minimum(%d)", static_cast<int>(msgs->size()), min_buffer_size_);
while (msgs->size() < (size_t)min_buffer_size_)
msgs->push_back(msgs->back());
}
return true;
}
bool JointTrajectoryStreamer::trajectory_to_msgs(const motoman_msgs::DynamicJointTrajectoryConstPtr &traj, std::vector<SimpleMessage>* msgs)
{
// use base function to transform points
if (!JointTrajectoryInterface::trajectory_to_msgs(traj, msgs))
return false;
// pad trajectory as required for minimum streaming buffer size
if (!msgs->empty() && (msgs->size() < (size_t)min_buffer_size_))
{
ROS_DEBUG("Padding trajectory: current(%d) => minimum(%d)", static_cast<int>(msgs->size()), min_buffer_size_);
while (msgs->size() < (size_t)min_buffer_size_)
msgs->push_back(msgs->back());
}
return true;
}
void JointTrajectoryStreamer::streamingThread()
{
int connectRetryCount = 1;
ROS_INFO("Starting 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");
this->connection_->makeConnect();
ros::Duration(0.250).sleep(); // wait for connection
if (this->connection_->isConnected())
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->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;
}
if (!this->connection_->isConnected())
{
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
ROS_DEBUG("Sending joint trajectory point");
if (this->connection_->sendAndReceiveMsg(msg, reply, false))
{
ROS_INFO("Point[%d of %d] sent to controller",
this->current_point_, static_cast<int>(this->current_traj_.size()));
this->current_point_++;
}
else
ROS_WARN("Failed sent joint point, will try again");
break;
default:
ROS_ERROR("Joint trajectory streamer: unknown state");
this->state_ = TransferStates::IDLE;
break;
}
this->mutex_.unlock();
}
ROS_WARN("Exiting trajectory streamer thread");
}
void JointTrajectoryStreamer::trajectoryStop()
{
JointTrajectoryInterface::trajectoryStop();
ROS_DEBUG("Stop command sent, entering idle mode");
this->state_ = TransferStates::IDLE;
}
} // namespace joint_trajectory_streamer
} // namespace industrial_robot_client