42#include <realtime_tools/thread_priority.hpp>
50 return node_->get_node_base_interface();
56 if (servo_loop_thread_.joinable())
57 servo_loop_thread_.join();
61 : node_{ std::make_shared<
rclcpp::Node>(
"servo_node", options) }
62 , stop_servo_{ false }
63 , servo_paused_{ false }
64 , new_joint_jog_msg_{ false }
65 , new_twist_msg_{ false }
66 , new_pose_msg_{ false }
71 if (realtime_tools::configure_sched_fifo(servo_params_.thread_priority))
73 RCLCPP_INFO_STREAM(node_->get_logger(),
"Enabled SCHED_FIFO and higher thread priority.");
77 RCLCPP_WARN_STREAM(node_->get_logger(),
"Could not enable FIFO RT scheduling policy. Continuing with the default.");
81 if (!realtime_tools::has_realtime_kernel())
83 RCLCPP_WARN_STREAM(node_->get_logger(),
"Realtime kernel is recommended for better performance.");
86 std::shared_ptr<servo::ParamListener> servo_param_listener =
87 std::make_shared<servo::ParamListener>(node_,
"moveit_servo");
91 servo_ = std::make_unique<Servo>(node_, servo_param_listener, planning_scene_monitor_);
93 servo_params_ = servo_->getParams();
96 joint_jog_subscriber_ = node_->create_subscription<control_msgs::msg::JointJog>(
97 servo_params_.joint_command_in_topic, rclcpp::SystemDefaultsQoS(),
98 [
this](
const control_msgs::msg::JointJog::ConstSharedPtr& msg) {
return jointJogCallback(msg); });
101 twist_subscriber_ = node_->create_subscription<geometry_msgs::msg::TwistStamped>(
102 servo_params_.cartesian_command_in_topic, rclcpp::SystemDefaultsQoS(),
103 [
this](
const geometry_msgs::msg::TwistStamped::ConstSharedPtr& msg) {
return twistCallback(msg); });
106 pose_subscriber_ = node_->create_subscription<geometry_msgs::msg::PoseStamped>(
107 servo_params_.pose_command_in_topic, rclcpp::SystemDefaultsQoS(),
108 [
this](
const geometry_msgs::msg::PoseStamped::ConstSharedPtr& msg) {
return poseCallback(msg); });
110 if (servo_params_.command_out_type ==
"trajectory_msgs/JointTrajectory")
112 trajectory_publisher_ = node_->create_publisher<trajectory_msgs::msg::JointTrajectory>(
113 servo_params_.command_out_topic, rclcpp::SystemDefaultsQoS());
115 else if (servo_params_.command_out_type ==
"std_msgs/Float64MultiArray")
117 multi_array_publisher_ = node_->create_publisher<std_msgs::msg::Float64MultiArray>(servo_params_.command_out_topic,
118 rclcpp::SystemDefaultsQoS());
122 node_->create_publisher<moveit_msgs::msg::ServoStatus>(servo_params_.status_topic, rclcpp::SystemDefaultsQoS());
125 switch_command_type_ = node_->create_service<moveit_msgs::srv::ServoCommandType>(
126 "~/switch_command_type", [
this](
const std::shared_ptr<moveit_msgs::srv::ServoCommandType::Request>& request,
127 const std::shared_ptr<moveit_msgs::srv::ServoCommandType::Response>& response) {
128 return switchCommandType(request, response);
132 pause_servo_ = node_->create_service<std_srvs::srv::SetBool>(
133 "~/pause_servo", [
this](
const std::shared_ptr<std_srvs::srv::SetBool::Request>& request,
134 const std::shared_ptr<std_srvs::srv::SetBool::Response>& response) {
135 return pauseServo(request, response);
139 servo_loop_thread_ = std::thread(&ServoNode::servoLoop,
this);
142void ServoNode::pauseServo(
const std::shared_ptr<std_srvs::srv::SetBool::Request>& request,
143 const std::shared_ptr<std_srvs::srv::SetBool::Response>& response)
145 servo_paused_ = request->data;
146 response->success = (servo_paused_ == request->data);
149 servo_->setCollisionChecking(
false);
150 response->message =
"Servoing disabled";
154 std::lock_guard<std::mutex> lock_guard(lock_);
156 last_commanded_state_ = servo_->getCurrentRobotState(
true );
157 servo_->resetSmoothing(last_commanded_state_);
160 joint_cmd_rolling_window_.clear();
163 servo_->setCollisionChecking(
true);
164 response->message =
"Servoing enabled";
168void ServoNode::switchCommandType(
const std::shared_ptr<moveit_msgs::srv::ServoCommandType::Request>& request,
169 const std::shared_ptr<moveit_msgs::srv::ServoCommandType::Response>& response)
171 const bool is_valid = (request->command_type >=
static_cast<int8_t
>(
CommandType::MIN)) &&
175 servo_->setCommandType(
static_cast<CommandType>(request->command_type));
179 RCLCPP_WARN_STREAM(node_->get_logger(),
"Unknown command type " << request->command_type <<
" requested");
181 response->success = (request->command_type ==
static_cast<int8_t
>(servo_->getCommandType()));
184void ServoNode::jointJogCallback(
const control_msgs::msg::JointJog::ConstSharedPtr& msg)
186 latest_joint_jog_ = *msg;
187 new_joint_jog_msg_ =
true;
190void ServoNode::twistCallback(
const geometry_msgs::msg::TwistStamped::ConstSharedPtr& msg)
192 latest_twist_ = *msg;
193 new_twist_msg_ =
true;
196void ServoNode::poseCallback(
const geometry_msgs::msg::PoseStamped::ConstSharedPtr& msg)
199 new_pose_msg_ =
true;
202std::optional<KinematicState> ServoNode::processJointJogCommand(
const moveit::core::RobotStatePtr& robot_state)
204 std::optional<KinematicState> next_joint_state = std::nullopt;
206 new_twist_msg_ = new_pose_msg_ =
false;
208 const bool command_stale = (node_->now() - latest_joint_jog_.header.stamp) >=
209 rclcpp::Duration::from_seconds(servo_params_.incoming_command_timeout);
212 JointJogCommand command{ latest_joint_jog_.joint_names, latest_joint_jog_.velocities };
213 next_joint_state = servo_->getNextJointState(robot_state, command);
217 auto result = servo_->smoothHalt(last_commanded_state_);
218 new_joint_jog_msg_ = !result.first;
219 if (new_joint_jog_msg_)
221 next_joint_state = result.second;
222 RCLCPP_DEBUG_STREAM(node_->get_logger(),
"Joint jog command timed out. Halting to a stop.");
226 return next_joint_state;
229std::optional<KinematicState> ServoNode::processTwistCommand(
const moveit::core::RobotStatePtr& robot_state)
231 std::optional<KinematicState> next_joint_state = std::nullopt;
235 new_joint_jog_msg_ = new_pose_msg_ =
false;
237 const bool command_stale = (node_->now() - latest_twist_.header.stamp) >=
238 rclcpp::Duration::from_seconds(servo_params_.incoming_command_timeout);
241 const Eigen::Vector<double, 6> velocities{ latest_twist_.twist.linear.x, latest_twist_.twist.linear.y,
242 latest_twist_.twist.linear.z, latest_twist_.twist.angular.x,
243 latest_twist_.twist.angular.y, latest_twist_.twist.angular.z };
244 const TwistCommand command{ latest_twist_.header.frame_id, velocities };
245 next_joint_state = servo_->getNextJointState(robot_state, command);
249 auto result = servo_->smoothHalt(last_commanded_state_);
250 new_twist_msg_ = !result.first;
253 next_joint_state = result.second;
254 RCLCPP_DEBUG_STREAM(node_->get_logger(),
"Twist command timed out. Halting to a stop.");
258 return next_joint_state;
261std::optional<KinematicState> ServoNode::processPoseCommand(
const moveit::core::RobotStatePtr& robot_state)
263 std::optional<KinematicState> next_joint_state = std::nullopt;
267 new_joint_jog_msg_ = new_twist_msg_ =
false;
269 const bool command_stale = (node_->now() - latest_pose_.header.stamp) >=
270 rclcpp::Duration::from_seconds(servo_params_.incoming_command_timeout);
274 next_joint_state = servo_->getNextJointState(robot_state, command);
278 auto result = servo_->smoothHalt(last_commanded_state_);
279 new_pose_msg_ = !result.first;
282 next_joint_state = result.second;
283 RCLCPP_DEBUG_STREAM(node_->get_logger(),
"Pose command timed out. Halting to a stop.");
287 return next_joint_state;
290void ServoNode::servoLoop()
292 moveit_msgs::msg::ServoStatus status_msg;
293 std::optional<KinematicState> next_joint_state = std::nullopt;
294 rclcpp::WallRate servo_frequency(1 / servo_params_.publish_period);
297 const auto servo_node_start = node_->now();
298 while (planning_scene_monitor_->getLastUpdateTime().get_clock_type() != node_->get_clock()->get_clock_type() ||
299 servo_node_start > planning_scene_monitor_->getLastUpdateTime())
301 RCLCPP_INFO(node_->get_logger(),
"Waiting to receive robot state update.");
302 rclcpp::sleep_for(std::chrono::seconds(1));
304 KinematicState current_state = servo_->getCurrentRobotState(
true );
305 last_commanded_state_ = current_state;
307 servo_->resetSmoothing(current_state);
310 moveit::core::RobotStatePtr robot_state = planning_scene_monitor_->getStateMonitor()->getCurrentState();
312 robot_state->getJointModelGroup(servo_params_.move_group_name);
314 while (rclcpp::ok() && !stop_servo_)
319 servo_->resetSmoothing(current_state);
320 servo_frequency.sleep();
324 std::lock_guard<std::mutex> lock_guard(lock_);
325 const bool use_trajectory = servo_params_.command_out_type ==
"trajectory_msgs/JointTrajectory";
326 const auto cur_time = node_->now();
328 if (use_trajectory && !joint_cmd_rolling_window_.empty() && joint_cmd_rolling_window_.back().time_stamp > cur_time)
330 current_state = joint_cmd_rolling_window_.back();
335 joint_cmd_rolling_window_.clear();
336 current_state = servo_->getCurrentRobotState(
false );
337 current_state.velocities *= 0.0;
341 robot_state->setJointGroupPositions(joint_model_group, current_state.positions);
342 robot_state->setJointGroupVelocities(joint_model_group, current_state.velocities);
344 next_joint_state = std::nullopt;
345 const CommandType expected_type = servo_->getCommandType();
349 next_joint_state = processJointJogCommand(robot_state);
353 next_joint_state = processTwistCommand(robot_state);
357 next_joint_state = processPoseCommand(robot_state);
359 else if (new_joint_jog_msg_ || new_twist_msg_ || new_pose_msg_)
361 new_joint_jog_msg_ = new_twist_msg_ = new_pose_msg_ =
false;
362 RCLCPP_WARN_STREAM(node_->get_logger(),
"Command type has not been set, cannot accept input");
370 auto& next_joint_state_value = next_joint_state.value();
371 updateSlidingWindow(next_joint_state_value, joint_cmd_rolling_window_, servo_params_.max_expected_latency,
375 trajectory_publisher_->publish(msg.value());
382 last_commanded_state_ = next_joint_state.value();
387 updateSlidingWindow(current_state, joint_cmd_rolling_window_, servo_params_.max_expected_latency, cur_time);
388 servo_->resetSmoothing(current_state);
391 status_msg.code =
static_cast<int8_t
>(servo_->getStatus());
392 status_msg.message = servo_->getStatusMessage();
393 status_publisher_->publish(status_msg);
395 servo_frequency.sleep();
401#include "rclcpp_components/register_node_macro.hpp"
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr get_node_base_interface()
ServoNode(const rclcpp::NodeOptions &options)
std::optional< trajectory_msgs::msg::JointTrajectory > composeTrajectoryMessage(const servo::Params &servo_params, const std::deque< KinematicState > &joint_cmd_rolling_window)
Create a trajectory message from a rolling window queue of joint state commands. Method optionally re...
std_msgs::msg::Float64MultiArray composeMultiArrayMessage(const servo::Params &servo_params, const KinematicState &joint_state)
Create a Float64MultiArray message from given joint state.
void updateSlidingWindow(KinematicState &next_joint_state, std::deque< KinematicState > &joint_cmd_rolling_window, double max_expected_latency, const rclcpp::Time &cur_time)
Adds a new joint state command to a queue containing commands over a time window. Also modifies the v...
PoseCommand poseFromPoseStamped(const geometry_msgs::msg::PoseStamped &msg)
Convert a PoseStamped message to a Servo Pose.
planning_scene_monitor::PlanningSceneMonitorPtr createPlanningSceneMonitor(const rclcpp::Node::SharedPtr &node, const servo::Params &servo_params)
Creates the planning scene monitor used by servo.
void setNodeLoggerName(const std::string &name)
Call once after creating a node to initialize logging namespaces.