-
Notifications
You must be signed in to change notification settings - Fork 421
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 : get clients, servers info #2569
base: rolling
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -664,7 +664,8 @@ get_info_by_topic( | |
rclcpp::node_interfaces::NodeBaseInterface * node_base, | ||
const std::string & topic_name, | ||
bool no_mangle, | ||
FunctionT rcl_get_info_by_topic) | ||
bool is_service, | ||
FunctionT rcl_get_info_by_topic_or_service) | ||
Comment on lines
-667
to
+668
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we extend this function to support endpoint based on |
||
{ | ||
std::string fqdn; | ||
auto rcl_node_handle = node_base->get_rcl_node_handle(); | ||
|
@@ -676,7 +677,7 @@ get_info_by_topic( | |
topic_name, | ||
rcl_node_get_name(rcl_node_handle), | ||
rcl_node_get_namespace(rcl_node_handle), | ||
false); // false = not a service | ||
is_service); | ||
|
||
// Get the node options | ||
const rcl_node_options_t * node_options = rcl_node_get_options(rcl_node_handle); | ||
|
@@ -687,9 +688,9 @@ get_info_by_topic( | |
if (node_options->use_global_arguments) { | ||
global_args = &(rcl_node_handle->context->global_arguments); | ||
} | ||
|
||
auto rcl_remap_name = is_service ? rcl_remap_service_name : rcl_remap_topic_name; | ||
char * remapped_topic_name = nullptr; | ||
rcl_ret_t ret = rcl_remap_topic_name( | ||
rcl_ret_t ret = rcl_remap_name( | ||
&(node_options->arguments), | ||
global_args, | ||
fqdn.c_str(), | ||
|
@@ -708,7 +709,13 @@ get_info_by_topic( | |
rcutils_allocator_t allocator = rcutils_get_default_allocator(); | ||
rcl_topic_endpoint_info_array_t info_array = rcl_get_zero_initialized_topic_endpoint_info_array(); | ||
rcl_ret_t ret = | ||
rcl_get_info_by_topic(rcl_node_handle, &allocator, fqdn.c_str(), no_mangle, &info_array); | ||
rcl_get_info_by_topic_or_service( | ||
rcl_node_handle, | ||
&allocator, | ||
fqdn.c_str(), | ||
no_mangle, | ||
&info_array | ||
); | ||
if (RCL_RET_OK != ret) { | ||
auto error_msg = | ||
std::string("Failed to get information by topic for ") + EndpointType + std::string(":"); | ||
|
@@ -745,6 +752,7 @@ NodeGraph::get_publishers_info_by_topic( | |
node_base_, | ||
topic_name, | ||
no_mangle, | ||
false, | ||
rcl_get_publishers_info_by_topic); | ||
} | ||
|
||
|
@@ -758,9 +766,38 @@ NodeGraph::get_subscriptions_info_by_topic( | |
node_base_, | ||
topic_name, | ||
no_mangle, | ||
false, | ||
rcl_get_subscriptions_info_by_topic); | ||
} | ||
|
||
static constexpr char kClientsEndpointTypeName[] = "clients"; | ||
std::vector<rclcpp::TopicEndpointInfo> | ||
NodeGraph::get_clients_info_by_service( | ||
const std::string & service_name, | ||
bool no_mangle) const | ||
{ | ||
return get_info_by_topic<kClientsEndpointTypeName>( | ||
node_base_, | ||
service_name, | ||
no_mangle, | ||
true, | ||
rcl_get_clients_info_by_service); | ||
} | ||
|
||
static constexpr char kServersEndpointTypeName[] = "servers"; | ||
std::vector<rclcpp::TopicEndpointInfo> | ||
NodeGraph::get_servers_info_by_service( | ||
const std::string & service_name, | ||
bool no_mangle) const | ||
{ | ||
return get_info_by_topic<kServersEndpointTypeName>( | ||
node_base_, | ||
service_name, | ||
no_mangle, | ||
true, | ||
rcl_get_servers_info_by_service); | ||
} | ||
|
||
std::string & | ||
rclcpp::TopicEndpointInfo::node_name() | ||
{ | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -3263,6 +3263,135 @@ TEST_F(TestNode, get_publishers_subscriptions_info_by_topic) { | |||||
}, rclcpp::exceptions::InvalidTopicNameError); | ||||||
} | ||||||
|
||||||
// test that calling get_clients_info_by_service and get_servers_info_by_service | ||||||
TEST_F(TestNode, get_clients_servers_info_by_service) { | ||||||
auto node = std::make_shared<rclcpp::Node>("my_node", "/ns"); | ||||||
std::string service_name = "test_service_info"; | ||||||
std::string fq_service_name = rclcpp::expand_topic_or_service_name( | ||||||
service_name, node->get_name(), node->get_namespace(), true); | ||||||
|
||||||
// Lists should be empty | ||||||
EXPECT_TRUE(node->get_clients_info_by_service(fq_service_name).empty()); | ||||||
EXPECT_TRUE(node->get_servers_info_by_service(fq_service_name).empty()); | ||||||
|
||||||
// Add a publisher | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit:
Suggested change
|
||||||
rclcpp::QoSInitialization qos_initialization = | ||||||
{ | ||||||
RMW_QOS_POLICY_HISTORY_KEEP_ALL, | ||||||
10 | ||||||
}; | ||||||
rmw_qos_profile_t rmw_qos_profile_default = | ||||||
{ | ||||||
RMW_QOS_POLICY_HISTORY_KEEP_ALL, | ||||||
10, | ||||||
RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT, | ||||||
RMW_QOS_POLICY_DURABILITY_TRANSIENT_LOCAL, | ||||||
{1, 12345}, | ||||||
{20, 9887665}, | ||||||
RMW_QOS_POLICY_LIVELINESS_MANUAL_BY_TOPIC, | ||||||
{5, 23456}, | ||||||
false | ||||||
}; | ||||||
rclcpp::QoS qos = rclcpp::QoS(qos_initialization, rmw_qos_profile_default); | ||||||
auto client = node->create_client<test_msgs::srv::Empty>(service_name, qos); | ||||||
// Wait for the underlying RMW implementation to catch up with graph changes | ||||||
auto client_is_generated = | ||||||
[&]() {return node->get_clients_info_by_service(fq_service_name).size() > 0u;}; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
ASSERT_TRUE(wait_for_event(node, client_is_generated)); | ||||||
// List should have at least one item | ||||||
auto client_list = node->get_clients_info_by_service(fq_service_name); | ||||||
ASSERT_GE(client_list.size(), (size_t)1); | ||||||
// Server list should be empty | ||||||
EXPECT_TRUE(node->get_servers_info_by_service(fq_service_name).empty()); | ||||||
// Verify client list has the right data. | ||||||
for(auto client_info : client_list) { | ||||||
EXPECT_EQ(node->get_name(), client_info.node_name()); | ||||||
EXPECT_EQ(node->get_namespace(), client_info.node_namespace()); | ||||||
ASSERT_NE(client_info.topic_type().find("test_msgs/srv/Empty"), std::string::npos); | ||||||
if(client_info.topic_type() == "test_msgs/srv/Empty_Request") { | ||||||
EXPECT_EQ(rclcpp::EndpointType::Publisher, client_info.endpoint_type()); | ||||||
auto actual_qos_profile = client_info.qos_profile().get_rmw_qos_profile(); | ||||||
{ | ||||||
SCOPED_TRACE("Publisher QOS 1"); | ||||||
expect_qos_profile_eq(qos.get_rmw_qos_profile(), actual_qos_profile, true); | ||||||
} | ||||||
} else if(client_info.topic_type() == "test_msgs/srv/Empty_Response") { | ||||||
EXPECT_EQ(rclcpp::EndpointType::Subscription, client_info.endpoint_type()); | ||||||
auto actual_qos_profile = client_info.qos_profile().get_rmw_qos_profile(); | ||||||
{ | ||||||
SCOPED_TRACE("Publisher QOS 1"); | ||||||
expect_qos_profile_eq(qos.get_rmw_qos_profile(), actual_qos_profile, false); | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
// Add a subscription | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit:
Suggested change
|
||||||
rclcpp::QoSInitialization qos_initialization2 = | ||||||
{ | ||||||
RMW_QOS_POLICY_HISTORY_KEEP_LAST, | ||||||
0 | ||||||
}; | ||||||
rmw_qos_profile_t rmw_qos_profile_default2 = | ||||||
{ | ||||||
RMW_QOS_POLICY_HISTORY_KEEP_LAST, | ||||||
0, | ||||||
RMW_QOS_POLICY_RELIABILITY_RELIABLE, | ||||||
RMW_QOS_POLICY_DURABILITY_VOLATILE, | ||||||
{15, 1678}, | ||||||
{29, 2345}, | ||||||
RMW_QOS_POLICY_LIVELINESS_AUTOMATIC, | ||||||
{5, 23456}, | ||||||
false | ||||||
}; | ||||||
rclcpp::QoS qos2 = rclcpp::QoS(qos_initialization2, rmw_qos_profile_default2); | ||||||
auto callback = [](test_msgs::srv::Empty_Request::ConstSharedPtr req, | ||||||
test_msgs::srv::Empty_Response::ConstSharedPtr resp) { | ||||||
(void)req; | ||||||
(void)resp; | ||||||
}; | ||||||
auto server = node->create_service<test_msgs::srv::Empty>(service_name, callback, qos2); | ||||||
// Wait for the underlying RMW implementation to catch up with graph changes | ||||||
auto server_is_generated = | ||||||
[&]() {return node->get_servers_info_by_service(fq_service_name).size() > 0u;}; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. precisely this should be 1, right? is there any possibility that goes over 1?
Suggested change
|
||||||
ASSERT_TRUE(wait_for_event(node, server_is_generated)); | ||||||
// Both lists should have at least one item | ||||||
client_list = node->get_clients_info_by_service(fq_service_name); | ||||||
auto server_list = node->get_servers_info_by_service(fq_service_name); | ||||||
ASSERT_GE(client_list.size(), (size_t)1); | ||||||
ASSERT_GE(server_list.size(), (size_t)1); | ||||||
// Verify server list has the right data. | ||||||
for(auto server_info : server_list) { | ||||||
EXPECT_EQ(node->get_name(), server_info.node_name()); | ||||||
EXPECT_EQ(node->get_namespace(), server_info.node_namespace()); | ||||||
ASSERT_NE(server_info.topic_type().find("test_msgs/srv/Empty"), std::string::npos); | ||||||
if(server_info.topic_type() == "test_msgs/srv/Empty_Request") { | ||||||
EXPECT_EQ(rclcpp::EndpointType::Subscription, server_info.endpoint_type()); | ||||||
auto actual_qos_profile = server_info.qos_profile().get_rmw_qos_profile(); | ||||||
{ | ||||||
SCOPED_TRACE("Publisher QOS 1"); | ||||||
expect_qos_profile_eq(qos2.get_rmw_qos_profile(), actual_qos_profile, false); | ||||||
} | ||||||
} else if(server_info.topic_type() == "test_msgs/srv/Empty_Response") { | ||||||
EXPECT_EQ(rclcpp::EndpointType::Publisher, server_info.endpoint_type()); | ||||||
auto actual_qos_profile = server_info.qos_profile().get_rmw_qos_profile(); | ||||||
{ | ||||||
SCOPED_TRACE("Publisher QOS 1"); | ||||||
expect_qos_profile_eq(qos2.get_rmw_qos_profile(), actual_qos_profile, true); | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
// Error cases | ||||||
EXPECT_THROW( | ||||||
{ | ||||||
client_list = node->get_clients_info_by_service("13"); | ||||||
}, rclcpp::exceptions::InvalidServiceNameError); | ||||||
EXPECT_THROW( | ||||||
{ | ||||||
server_list = node->get_servers_info_by_service("13"); | ||||||
}, rclcpp::exceptions::InvalidServiceNameError); | ||||||
} | ||||||
|
||||||
TEST_F(TestNode, callback_groups) { | ||||||
auto node = std::make_shared<rclcpp::Node>("node", "ns"); | ||||||
size_t num_callback_groups_in_basic_node = 0; | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
almost same comment for rclpy.
probably we can extend
EndpointType
with service server and client as endpoint types.and introduce new base class
EndpointInfo
, and based on that we could haveTopicEndpointInfo
andServiceEndpointInfo
classes here?