Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add service to get the list of loaded trees #107

Open
wants to merge 2 commits into
base: humble
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions behaviortree_ros2/src/tree_execution_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

#include "behaviortree_cpp/loggers/groot2_publisher.h"

#include "btcpp_ros2_interfaces/srv/get_trees.hpp"

// generated file
#include "bt_executor_parameters.hpp"
namespace
Expand All @@ -35,6 +37,8 @@ static const auto kLogger = rclcpp::get_logger("bt_action_server");
namespace BT
{

using GetTrees = btcpp_ros2_interfaces::srv::GetTrees;

struct TreeExecutionServer::Pimpl
{
rclcpp_action::Server<ExecuteTree>::SharedPtr action_server;
Expand All @@ -43,6 +47,8 @@ struct TreeExecutionServer::Pimpl
std::shared_ptr<bt_server::ParamListener> param_listener;
bt_server::Params params;

rclcpp::Service<GetTrees>::SharedPtr get_trees_service;

BT::BehaviorTreeFactory factory;
std::shared_ptr<BT::Groot2Publisher> groot_publisher;

Expand Down Expand Up @@ -88,6 +94,12 @@ TreeExecutionServer::TreeExecutionServer(const rclcpp::Node::SharedPtr& node)
p_->single_shot_timer->cancel();
};

p_->get_trees_service = node_->create_service<GetTrees>(
"get_loaded_trees", [this](const std::shared_ptr<GetTrees::Request> _,
std::shared_ptr<GetTrees::Response> response) {
response->tree_ids = p_->factory.registeredBehaviorTrees();
});

p_->single_shot_timer =
node_->create_wall_timer(std::chrono::milliseconds(1), callback);
}
Expand Down
1 change: 1 addition & 0 deletions btcpp_ros2_interfaces/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ find_package(rosidl_default_generators REQUIRED)

rosidl_generate_interfaces(btcpp_ros2_interfaces
"msg/NodeStatus.msg"
"srv/GetTrees.srv"
"action/ExecuteTree.action"
"action/Sleep.action")

Expand Down
8 changes: 8 additions & 0 deletions btcpp_ros2_interfaces/srv/GetTrees.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#### Request ####
# Empty

---
#### Result ####

# Ids of the available trees
string[] tree_ids