15 #include "nav2_waypoint_follower/waypoint_follower.hpp"
24 #include "nav2_ros_common/rate.hpp"
26 namespace nav2_waypoint_follower
29 using rcl_interfaces::msg::ParameterType;
30 using std::placeholders::_1;
33 : nav2::LifecycleNode(
"waypoint_follower",
"", options),
34 waypoint_task_executor_loader_(
"nav2_core",
35 "nav2_core::WaypointTaskExecutor")
37 RCLCPP_INFO(get_logger(),
"Creating");
47 RCLCPP_INFO(get_logger(),
"Configuring");
51 param_handler_ = std::make_unique<ParameterHandler>(
53 params_ = param_handler_->getParams();
55 callback_group_ = create_callback_group(
56 rclcpp::CallbackGroupType::MutuallyExclusive,
58 callback_group_executor_.add_callback_group(callback_group_, get_node_base_interface());
60 nav_to_pose_client_ = create_action_client<ClientT>(
61 "navigate_to_pose", callback_group_);
63 xyz_action_server_ = create_action_server<ActionT>(
64 "follow_waypoints", std::bind(
67 std::bind(&WaypointFollower::goalReceived<ActionT>,
this, std::placeholders::_1),
68 nullptr, std::chrono::milliseconds(
71 from_ll_to_map_client_ = node->create_client<robot_localization::srv::FromLL>(
75 gps_action_server_ = create_action_server<ActionTGPS>(
76 "follow_gps_waypoints",
80 std::bind(&WaypointFollower::goalReceived<ActionTGPS>,
this, std::placeholders::_1),
81 nullptr, std::chrono::milliseconds(
85 waypoint_task_executor_ = waypoint_task_executor_loader_.createUniqueInstance(
86 params_->waypoint_task_executor_type);
88 get_logger(),
"Created waypoint_task_executor : %s of type %s",
89 params_->waypoint_task_executor_id.c_str(), params_->waypoint_task_executor_type.c_str());
90 waypoint_task_executor_->initialize(node, params_->waypoint_task_executor_id);
91 }
catch (
const std::exception & e) {
94 "Failed to create waypoint_task_executor. Exception: %s", e.what());
98 return nav2::CallbackReturn::SUCCESS;
104 RCLCPP_INFO(get_logger(),
"Activating");
106 xyz_action_server_->activate();
107 gps_action_server_->activate();
112 return nav2::CallbackReturn::SUCCESS;
118 RCLCPP_INFO(get_logger(),
"Deactivating");
120 xyz_action_server_->deactivate();
121 gps_action_server_->deactivate();
125 return nav2::CallbackReturn::SUCCESS;
131 RCLCPP_INFO(get_logger(),
"Cleaning up");
133 xyz_action_server_.reset();
134 nav_to_pose_client_.reset();
135 gps_action_server_.reset();
136 from_ll_to_map_client_.reset();
138 return nav2::CallbackReturn::SUCCESS;
144 RCLCPP_INFO(get_logger(),
"Shutting down");
145 return nav2::CallbackReturn::SUCCESS;
151 if constexpr (std::is_same_v<T, ActionTGPS>) {
152 if (goal->gps_poses.empty()) {
154 get_logger(),
"Empty vector of GPS waypoints passed to waypoint following action.");
158 if (goal->poses.empty()) {
160 get_logger(),
"Empty vector of waypoints passed to waypoint following action.");
169 const T & action_server)
171 std::vector<geometry_msgs::msg::PoseStamped> poses;
172 const auto current_goal = action_server->get_current_goal();
175 RCLCPP_ERROR(get_logger(),
"No current action goal found!");
180 if constexpr (std::is_same<T, ActionServer::SharedPtr>::value) {
182 poses = current_goal->poses;
186 current_goal->gps_poses);
191 template<
typename T,
typename V,
typename Z>
193 const T & action_server,
197 auto goal = action_server->get_current_goal();
200 unsigned int current_loop_no = 0;
201 auto no_of_loops = goal->number_of_loops;
203 std::vector<geometry_msgs::msg::PoseStamped> poses;
204 poses = getLatestGoalPoses<T>(action_server);
206 if (!action_server || !action_server->is_server_active()) {
207 RCLCPP_DEBUG(get_logger(),
"Action server inactive. Stopping.");
212 get_logger(),
"Received follow waypoint request with %i waypoints.",
213 static_cast<int>(poses.size()));
218 nav2_msgs::action::FollowWaypoints::Result::NO_VALID_WAYPOINTS;
220 "Empty vector of waypoints, probably due to conversion failure.";
221 RCLCPP_ERROR(get_logger(),
"%s", result->error_msg.c_str());
222 action_server->terminate_current(result);
229 uint32_t goal_index = goal->goal_index;
230 bool new_goal =
true;
232 while (rclcpp::ok()) {
234 if (action_server->is_cancel_requested()) {
235 auto cancel_future = nav_to_pose_client_->async_cancel_all_goals();
236 callback_group_executor_.spin_until_future_complete(cancel_future);
238 callback_group_executor_.spin_some();
239 action_server->terminate_all();
244 if (action_server->is_preempt_requested()) {
245 RCLCPP_INFO(get_logger(),
"Preempting the goal pose.");
246 goal = action_server->accept_pending_goal();
247 poses = getLatestGoalPoses<T>(action_server);
250 nav2_msgs::action::FollowWaypoints::Result::NO_VALID_WAYPOINTS;
252 "Empty vector of Waypoints passed to waypoint following logic. "
253 "Nothing to execute, returning with failure!";
254 RCLCPP_ERROR(get_logger(),
"%s", result->error_msg.c_str());
255 action_server->terminate_current(result);
265 ClientT::Goal client_goal;
266 client_goal.pose = poses[goal_index];
267 client_goal.pose.header.stamp = this->now();
269 auto send_goal_options = nav2::ActionClient<ClientT>::SendGoalOptions();
270 send_goal_options.result_callback = std::bind(
272 std::placeholders::_1);
273 send_goal_options.goal_response_callback = std::bind(
275 this, std::placeholders::_1);
277 future_goal_handle_ =
278 nav_to_pose_client_->async_send_goal(client_goal, send_goal_options);
279 current_goal_status_.status = ActionStatus::PROCESSING;
282 feedback->current_waypoint = goal_index;
283 action_server->publish_feedback(feedback);
286 current_goal_status_.status == ActionStatus::FAILED ||
287 current_goal_status_.status == ActionStatus::UNKNOWN)
289 nav2_msgs::msg::WaypointStatus missedWaypoint;
290 missedWaypoint.waypoint_status = nav2_msgs::msg::WaypointStatus::FAILED;
291 missedWaypoint.waypoint_index = goal_index;
292 missedWaypoint.waypoint_pose = poses[goal_index];
293 missedWaypoint.error_code = current_goal_status_.error_code;
294 missedWaypoint.error_msg = current_goal_status_.error_msg;
295 result->missed_waypoints.push_back(missedWaypoint);
297 if (params_->stop_on_failure) {
299 nav2_msgs::action::FollowWaypoints::Result::STOP_ON_MISSED_WAYPOINT;
301 "Failed to process waypoint " + std::to_string(goal_index) +
302 " in waypoint list and stop on failure is enabled."
303 " Terminating action.";
304 RCLCPP_WARN(get_logger(),
"%s", result->error_msg.c_str());
305 action_server->terminate_current(result);
306 current_goal_status_.error_code = 0;
307 current_goal_status_.error_msg =
"";
311 get_logger(),
"Failed to process waypoint %i,"
312 " moving to next.", goal_index);
314 }
else if (current_goal_status_.status == ActionStatus::SUCCEEDED) {
316 get_logger(),
"Succeeded processing waypoint %i, processing waypoint task execution",
318 bool is_task_executed = waypoint_task_executor_->processAtWaypoint(
319 poses[goal_index], goal_index);
321 get_logger(),
"Task execution at waypoint %i %s", goal_index,
322 is_task_executed ?
"succeeded" :
"failed!");
324 if (!is_task_executed) {
325 nav2_msgs::msg::WaypointStatus missedWaypoint;
326 missedWaypoint.waypoint_status = nav2_msgs::msg::WaypointStatus::FAILED;
327 missedWaypoint.waypoint_index = goal_index;
328 missedWaypoint.waypoint_pose = poses[goal_index];
329 missedWaypoint.error_code =
330 nav2_msgs::action::FollowWaypoints::Result::TASK_EXECUTOR_FAILED;
331 missedWaypoint.error_msg =
"Task execution failed";
332 result->missed_waypoints.push_back(missedWaypoint);
335 if (!is_task_executed && params_->stop_on_failure) {
337 nav2_msgs::action::FollowWaypoints::Result::TASK_EXECUTOR_FAILED;
339 "Failed to execute task at waypoint " + std::to_string(goal_index) +
340 " stop on failure is enabled. Terminating action.";
341 RCLCPP_WARN(get_logger(),
"%s", result->error_msg.c_str());
342 action_server->terminate_current(result);
343 current_goal_status_.error_code = 0;
344 current_goal_status_.error_msg =
"";
348 get_logger(),
"Handled task execution on waypoint %i,"
349 " moving to next.", goal_index);
353 if (current_goal_status_.status != ActionStatus::PROCESSING) {
357 if (goal_index >= poses.size()) {
358 if (current_loop_no == no_of_loops) {
360 get_logger(),
"Completed all %zu waypoints requested.",
362 action_server->succeeded_current(result);
363 current_goal_status_.error_code = 0;
364 current_goal_status_.error_msg =
"";
368 get_logger(),
"Starting a new loop, current loop count is %i",
375 callback_group_executor_.spin_some();
382 auto feedback = std::make_shared<ActionT::Feedback>();
383 auto result = std::make_shared<ActionT::Result>();
386 ActionT::Feedback::SharedPtr,
387 ActionT::Result::SharedPtr>(
394 auto feedback = std::make_shared<ActionTGPS::Feedback>();
395 auto result = std::make_shared<ActionTGPS::Result>();
398 ActionTGPS::Feedback::SharedPtr,
399 ActionTGPS::Result::SharedPtr>(
406 const rclcpp_action::ClientGoalHandle<ClientT>::WrappedResult & result)
408 if (result.goal_id != future_goal_handle_.get()->get_goal_id()) {
411 "Goal IDs do not match for the current goal handle and received result."
412 "Ignoring likely due to receiving result for an old goal.");
416 switch (result.code) {
417 case rclcpp_action::ResultCode::SUCCEEDED:
418 current_goal_status_.status = ActionStatus::SUCCEEDED;
420 case rclcpp_action::ResultCode::ABORTED:
421 current_goal_status_.status = ActionStatus::FAILED;
422 current_goal_status_.error_code = result.result->error_code;
423 current_goal_status_.error_msg = result.result->error_msg;
425 case rclcpp_action::ResultCode::CANCELED:
426 current_goal_status_.status = ActionStatus::FAILED;
429 current_goal_status_.status = ActionStatus::UNKNOWN;
430 current_goal_status_.error_code = nav2_msgs::action::FollowWaypoints::Result::UNKNOWN;
431 current_goal_status_.error_msg =
"Received an UNKNOWN result code from navigation action!";
432 RCLCPP_ERROR(get_logger(),
"%s", current_goal_status_.error_msg.c_str());
439 const rclcpp_action::ClientGoalHandle<ClientT>::SharedPtr & goal)
442 current_goal_status_.status = ActionStatus::FAILED;
443 current_goal_status_.error_code = nav2_msgs::action::FollowWaypoints::Result::UNKNOWN;
444 current_goal_status_.error_msg =
445 "navigate_to_pose action client failed to send goal to server.";
446 RCLCPP_ERROR(get_logger(),
"%s", current_goal_status_.error_msg.c_str());
450 std::vector<geometry_msgs::msg::PoseStamped>
452 const std::vector<geographic_msgs::msg::GeoPose> & gps_poses)
455 this->get_logger(),
"Converting GPS waypoints to %s Frame..",
456 params_->global_frame_id.c_str());
458 std::vector<geometry_msgs::msg::PoseStamped> poses_in_map_frame_vector;
459 int waypoint_index = 0;
460 for (
auto && curr_geopose : gps_poses) {
461 auto request = std::make_shared<robot_localization::srv::FromLL::Request>();
462 auto response = std::make_shared<robot_localization::srv::FromLL::Response>();
463 request->ll_point.latitude = curr_geopose.position.latitude;
464 request->ll_point.longitude = curr_geopose.position.longitude;
465 request->ll_point.altitude = curr_geopose.position.altitude;
468 if (!from_ll_to_map_client_->
invoke(request, response)) {
471 "fromLL service of robot_localization could not convert %i th GPS waypoint to"
472 "%s frame, going to skip this point!"
473 "Make sure you have run navsat_transform_node of robot_localization",
474 waypoint_index, params_->global_frame_id.c_str());
475 if (params_->stop_on_failure) {
478 "Conversion of %i th GPS waypoint to"
479 "%s frame failed and stop_on_failure is set to true"
480 "Not going to execute any of waypoints, exiting with failure!",
481 waypoint_index, params_->global_frame_id.c_str());
482 return std::vector<geometry_msgs::msg::PoseStamped>();
486 geometry_msgs::msg::PoseStamped curr_pose_map_frame;
487 curr_pose_map_frame.header.frame_id = params_->global_frame_id;
488 curr_pose_map_frame.header.stamp = this->now();
489 curr_pose_map_frame.pose.position = response->map_point;
490 curr_pose_map_frame.pose.orientation = curr_geopose.orientation;
491 poses_in_map_frame_vector.push_back(curr_pose_map_frame);
497 "Converted all %i GPS waypoint to %s frame",
498 static_cast<int>(poses_in_map_frame_vector.size()), params_->global_frame_id.c_str());
499 return poses_in_map_frame_vector;
504 #include "rclcpp_components/register_node_macro.hpp"
void destroyBond()
Destroy bond connection to lifecycle manager.
nav2::LifecycleNode::SharedPtr shared_from_this()
Get a shared pointer of this.
void createBond()
Create bond connection to lifecycle manager.
A sim-time-aware rate for Nav2 loops.
ResponseType::SharedPtr invoke(typename RequestType::SharedPtr &request, const std::chrono::nanoseconds timeout=std::chrono::nanoseconds(-1), const std::chrono::nanoseconds wait_for_service_timeout=std::chrono::seconds(10))
Invoke the service and block until completed or timed out.
bool wait_for_service(const std::chrono::nanoseconds timeout=std::chrono::nanoseconds::max())
Block until a service is available or timeout.
An action server that uses behavior tree for navigating a robot to its goal position.
nav2::CallbackReturn on_deactivate(const rclcpp_lifecycle::State &state) override
Deactivates action server.
bool goalReceived(std::shared_ptr< const typename T::Goal > goal)
Goal received callbacks to validate a new goal before acceptance. Rejects goals with empty waypoint l...
nav2::CallbackReturn on_shutdown(const rclcpp_lifecycle::State &state) override
Called when in shutdown state.
void resultCallback(const rclcpp_action::ClientGoalHandle< ClientT >::WrappedResult &result)
Action client result callback.
~WaypointFollower()
A destructor for nav2_waypoint_follower::WaypointFollower class.
WaypointFollower(const rclcpp::NodeOptions &options=rclcpp::NodeOptions())
A constructor for nav2_waypoint_follower::WaypointFollower class.
void goalResponseCallback(const rclcpp_action::ClientGoalHandle< ClientT >::SharedPtr &goal)
Action client goal response callback.
nav2::CallbackReturn on_cleanup(const rclcpp_lifecycle::State &state) override
Resets member variables.
nav2::CallbackReturn on_configure(const rclcpp_lifecycle::State &state) override
Configures member variables.
void followGPSWaypointsCallback()
send robot through each of GPS point , which are converted to map frame first then using a client to ...
std::vector< geometry_msgs::msg::PoseStamped > convertGPSPosesToMapPoses(const std::vector< geographic_msgs::msg::GeoPose > &gps_poses)
given some gps_poses, converts them to map frame using robot_localization's service fromLL....
void followWaypointsHandler(const T &action_server, const V &feedback, const Z &result)
Templated function to perform internal logic behind waypoint following, Both GPS and non GPS waypoint...
void followWaypointsCallback()
Action server callbacks.
std::vector< geometry_msgs::msg::PoseStamped > getLatestGoalPoses(const T &action_server)
get the latest poses on the action server goal. If they are GPS poses, convert them to the global car...
nav2::CallbackReturn on_activate(const rclcpp_lifecycle::State &state) override
Activates action server.