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 : get clients, servers info #771

Open
wants to merge 2 commits into
base: rolling
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
24 changes: 24 additions & 0 deletions rmw_fastrtps_cpp/src/rmw_get_topic_endpoint_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,28 @@ rmw_get_subscriptions_info_by_topic(
return rmw_fastrtps_shared_cpp::__rmw_get_subscriptions_info_by_topic(
eprosima_fastrtps_identifier, node, allocator, topic_name, no_mangle, subscriptions_info);
}

rmw_ret_t
rmw_get_clients_info_by_service(
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * clients_info)
{
return rmw_fastrtps_shared_cpp::__rmw_get_clients_info_by_service(
eprosima_fastrtps_identifier, node, allocator, service_name, no_mangle, clients_info);
}

rmw_ret_t
rmw_get_servers_info_by_service(
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * servers_info)
{
return rmw_fastrtps_shared_cpp::__rmw_get_servers_info_by_service(
eprosima_fastrtps_identifier, node, allocator, service_name, no_mangle, servers_info);
}
} // extern "C"
24 changes: 24 additions & 0 deletions rmw_fastrtps_dynamic_cpp/src/rmw_get_topic_endpoint_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,28 @@ rmw_get_subscriptions_info_by_topic(
return rmw_fastrtps_shared_cpp::__rmw_get_subscriptions_info_by_topic(
eprosima_fastrtps_identifier, node, allocator, topic_name, no_mangle, subscriptions_info);
}

rmw_ret_t
rmw_get_clients_info_by_service(
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * clients_info)
{
return rmw_fastrtps_shared_cpp::__rmw_get_clients_info_by_service(
eprosima_fastrtps_identifier, node, allocator, service_name, no_mangle, clients_info);
}

rmw_ret_t
rmw_get_servers_info_by_service(
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * servers_info)
{
return rmw_fastrtps_shared_cpp::__rmw_get_servers_info_by_service(
eprosima_fastrtps_identifier, node, allocator, service_name, no_mangle, servers_info);
}
} // extern "C"
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,26 @@ __rmw_get_subscriptions_info_by_topic(
bool no_mangle,
rmw_topic_endpoint_info_array_t * subscriptions_info);

RMW_FASTRTPS_SHARED_CPP_PUBLIC
rmw_ret_t
__rmw_get_clients_info_by_service(
const char * identifier,
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * clients_info);

RMW_FASTRTPS_SHARED_CPP_PUBLIC
rmw_ret_t
__rmw_get_servers_info_by_service(
const char * identifier,
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * servers_info);

RMW_FASTRTPS_SHARED_CPP_PUBLIC
rmw_ret_t
__rmw_qos_profile_check_compatible(
Expand Down
67 changes: 67 additions & 0 deletions rmw_fastrtps_shared_cpp/src/rmw_get_topic_endpoint_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,71 @@ __rmw_get_subscriptions_info_by_topic(
allocator,
subscriptions_info);
}

rmw_ret_t
__rmw_get_clients_info_by_service(
leeminju531 marked this conversation as resolved.
Show resolved Hide resolved
const char * identifier,
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * clients_info)
{
rmw_ret_t ret = __validate_arguments(
identifier,
node,
allocator,
service_name,
clients_info);
if (ret != RMW_RET_OK) {
return ret;
}
auto common_context = static_cast<rmw_dds_common::Context *>(node->context->impl->common);
std::string mangled_rp_topic_name = service_name;
DemangleFunction demangle_type = _identity_demangle;
if (!no_mangle) {
mangled_rp_topic_name = \
_mangle_topic_name(ros_service_response_prefix, service_name, "Reply").to_string();
demangle_type = _demangle_if_ros_type;
}
return common_context->graph_cache.get_readers_info_by_topic(
mangled_rp_topic_name,
demangle_type,
allocator,
clients_info);
}

rmw_ret_t
__rmw_get_servers_info_by_service(
const char * identifier,
const rmw_node_t * node,
rcutils_allocator_t * allocator,
const char * service_name,
bool no_mangle,
rmw_topic_endpoint_info_array_t * servers_info)
{
rmw_ret_t ret = __validate_arguments(
identifier,
node,
allocator,
service_name,
servers_info);
if (ret != RMW_RET_OK) {
return ret;
}
auto common_context = static_cast<rmw_dds_common::Context *>(node->context->impl->common);
std::string mangled_rp_topic_name = service_name;
DemangleFunction demangle_type = _identity_demangle;
if (!no_mangle) {
mangled_rp_topic_name = \
_mangle_topic_name(ros_service_response_prefix, service_name, "Reply").to_string();
demangle_type = _demangle_if_ros_type;
}

return common_context->graph_cache.get_writers_info_by_topic(
mangled_rp_topic_name,
demangle_type,
allocator,
servers_info);
}
} // namespace rmw_fastrtps_shared_cpp