Skip to content

Commit

Permalink
Reuse action clients (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicdarkoo committed Aug 14, 2022
1 parent 461a397 commit f52f483
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mep3_behavior_tree/include/mep3_behavior_tree/bt_action_node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <memory>
#include <string>
#include <unordered_map>

#include "behaviortree_cpp_v3/action_node.h"
#include "rclcpp/executors/single_threaded_executor.hpp"
Expand Down Expand Up @@ -98,6 +99,12 @@ class BtActionNode : public BT::ActionNodeBase
*/
void createActionClient(const std::string & action_name)
{
if (BtActionNode::action_client_list_.find(action_name) != action_client_list_.end()) {
action_client_ = BtActionNode::action_client_list_[action_name];
RCLCPP_INFO(node_->get_logger(), "Reusing an existing \"%s\" action server", action_name.c_str());
return;
}

// Now that we have the ROS node to use, create the action client for this BT action
action_client_ = rclcpp_action::create_client<ActionT>(node_, action_name, callback_group_);

Expand All @@ -107,6 +114,7 @@ class BtActionNode : public BT::ActionNodeBase
RCLCPP_FATAL(node_->get_logger(), "Action server \"%s\" is not found", action_name.c_str());
exit(1);
}
BtActionNode::action_client_list_[action_name] = action_client_;
}

/**
Expand Down Expand Up @@ -404,6 +412,7 @@ class BtActionNode : public BT::ActionNodeBase
std::string action_name_, original_action_name_;
MirrorParam mirror_;
typename std::shared_ptr<rclcpp_action::Client<ActionT>> action_client_;
static std::unordered_map<std::string, typename std::shared_ptr<rclcpp_action::Client<ActionT>>> action_client_list_;

// All ROS2 actions have a goal and a result
typename ActionT::Goal goal_;
Expand All @@ -430,6 +439,9 @@ class BtActionNode : public BT::ActionNodeBase
rclcpp::Time time_goal_sent_;
};

template <class ActionT>
std::unordered_map<std::string, std::shared_ptr<rclcpp_action::Client<ActionT>>> BtActionNode<ActionT>::action_client_list_;

} // namespace mep3_behavior_tree

#endif // MEP3_BEHAVIOR_TREE__BT_ACTION_NODE_HPP_

0 comments on commit f52f483

Please sign in to comment.