-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to one participant per context model (#145)
Signed-off-by: Erik Boasson <[email protected]>
- Loading branch information
Showing
7 changed files
with
1,329 additions
and
1,573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
rmw_cyclonedds_cpp/include/rmw_cyclonedds_cpp/graphrhc.hpp
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
// Copyright 2019 Open Source Robotics Foundation, Inc. | ||
// Copyright 2016-2018 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include <algorithm> | ||
#include <string> | ||
#include <vector> | ||
|
||
#include "rcpputils/find_and_replace.hpp" | ||
#include "rcutils/logging_macros.h" | ||
#include "rcutils/types.h" | ||
#include "namespace_prefix.hpp" | ||
#include "demangle.hpp" | ||
|
||
extern "C" | ||
{ | ||
const char * const ros_topic_prefix = "rt"; | ||
const char * const ros_service_requester_prefix = "rq"; | ||
const char * const ros_service_response_prefix = "rr"; | ||
|
||
const std::vector<std::string> _ros_prefixes = | ||
{ROS_TOPIC_PREFIX, ROS_SERVICE_REQUESTER_PREFIX, ROS_SERVICE_RESPONSE_PREFIX}; | ||
} // extern "C" | ||
|
||
/// Returns `name` stripped of `prefix`. | ||
std::string | ||
_resolve_prefix(const std::string & name, const std::string & prefix) | ||
{ | ||
if (name.rfind(prefix, 0) == 0 && name.at(prefix.length()) == '/') { | ||
return name.substr(prefix.length()); | ||
} | ||
return ""; | ||
} | ||
|
||
/// Strip the ROS specific prefix if it exists from the topic name. | ||
std::string | ||
_strip_ros_prefix_if_exists(const std::string & topic_name) | ||
{ | ||
for (const auto & prefix : _ros_prefixes) { | ||
if (topic_name.rfind(prefix, 0) == 0 && topic_name.at(prefix.length()) == '/') { | ||
return topic_name.substr(prefix.length()); | ||
} | ||
} | ||
return topic_name; | ||
} | ||
|
||
/// Return the demangle ROS topic or the original if not a ROS topic. | ||
std::string | ||
_demangle_if_ros_topic(const std::string & topic_name) | ||
{ | ||
return _strip_ros_prefix_if_exists(topic_name); | ||
} | ||
|
||
/// Return the demangled ROS type or the original if not a ROS type. | ||
std::string | ||
_demangle_if_ros_type(const std::string & dds_type_string) | ||
{ | ||
if (dds_type_string[dds_type_string.size() - 1] != '_') { | ||
// not a ROS type | ||
return dds_type_string; | ||
} | ||
|
||
std::string substring = "dds_::"; | ||
size_t substring_position = dds_type_string.find(substring); | ||
if (substring_position == std::string::npos) { | ||
// not a ROS type | ||
return dds_type_string; | ||
} | ||
|
||
std::string type_namespace = dds_type_string.substr(0, substring_position); | ||
type_namespace = rcpputils::find_and_replace(type_namespace, "::", "/"); | ||
size_t start = substring_position + substring.size(); | ||
std::string type_name = dds_type_string.substr(start, dds_type_string.length() - 1 - start); | ||
return type_namespace + type_name; | ||
} | ||
|
||
/// Return the topic name for a given topic if it is part of one, else "". | ||
std::string | ||
_demangle_ros_topic_from_topic(const std::string & topic_name) | ||
{ | ||
return _resolve_prefix(topic_name, ros_topic_prefix); | ||
} | ||
|
||
/// Return the service name for a given topic if it is part of one, else "". | ||
std::string | ||
_demangle_service_from_topic( | ||
const std::string & prefix, const std::string & topic_name, std::string suffix) | ||
{ | ||
std::string service_name = _resolve_prefix(topic_name, prefix); | ||
if ("" == service_name) { | ||
return ""; | ||
} | ||
|
||
size_t suffix_position = service_name.rfind(suffix); | ||
if (suffix_position != std::string::npos) { | ||
if (service_name.length() - suffix_position - suffix.length() != 0) { | ||
RCUTILS_LOG_WARN_NAMED( | ||
"rmw_fastrtps_shared_cpp", | ||
"service topic has service prefix and a suffix, but not at the end" | ||
", report this: '%s'", topic_name.c_str()); | ||
return ""; | ||
} | ||
} else { | ||
RCUTILS_LOG_WARN_NAMED( | ||
"rmw_fastrtps_shared_cpp", | ||
"service topic has prefix but no suffix" | ||
", report this: '%s'", topic_name.c_str()); | ||
return ""; | ||
} | ||
return service_name.substr(0, suffix_position); | ||
} | ||
|
||
std::string | ||
_demangle_service_from_topic(const std::string & topic_name) | ||
{ | ||
const std::string demangled_topic = _demangle_service_reply_from_topic(topic_name); | ||
if ("" != demangled_topic) { | ||
return demangled_topic; | ||
} | ||
return _demangle_service_request_from_topic(topic_name); | ||
} | ||
|
||
|
||
std::string | ||
_demangle_service_request_from_topic(const std::string & topic_name) | ||
{ | ||
return _demangle_service_from_topic(ros_service_requester_prefix, topic_name, "Request"); | ||
} | ||
|
||
std::string | ||
_demangle_service_reply_from_topic(const std::string & topic_name) | ||
{ | ||
return _demangle_service_from_topic(ros_service_response_prefix, topic_name, "Reply"); | ||
} | ||
|
||
/// Return the demangled service type if it is a ROS srv type, else "". | ||
std::string | ||
_demangle_service_type_only(const std::string & dds_type_name) | ||
{ | ||
std::string ns_substring = "dds_::"; | ||
size_t ns_substring_position = dds_type_name.find(ns_substring); | ||
if (std::string::npos == ns_substring_position) { | ||
// not a ROS service type | ||
return ""; | ||
} | ||
auto suffixes = { | ||
std::string("_Response_"), | ||
std::string("_Request_"), | ||
}; | ||
std::string found_suffix = ""; | ||
size_t suffix_position = 0; | ||
for (auto suffix : suffixes) { | ||
suffix_position = dds_type_name.rfind(suffix); | ||
if (suffix_position != std::string::npos) { | ||
if (dds_type_name.length() - suffix_position - suffix.length() != 0) { | ||
RCUTILS_LOG_WARN_NAMED( | ||
"rmw_fastrtps_shared_cpp", | ||
"service type contains 'dds_::' and a suffix, but not at the end" | ||
", report this: '%s'", dds_type_name.c_str()); | ||
continue; | ||
} | ||
found_suffix = suffix; | ||
break; | ||
} | ||
} | ||
if (std::string::npos == suffix_position) { | ||
RCUTILS_LOG_WARN_NAMED( | ||
"rmw_fastrtps_shared_cpp", | ||
"service type contains 'dds_::' but does not have a suffix" | ||
", report this: '%s'", dds_type_name.c_str()); | ||
return ""; | ||
} | ||
// everything checks out, reformat it from '[type_namespace::]dds_::<type><suffix>' | ||
// to '[type_namespace/]<type>' | ||
std::string type_namespace = dds_type_name.substr(0, ns_substring_position); | ||
type_namespace = rcpputils::find_and_replace(type_namespace, "::", "/"); | ||
size_t start = ns_substring_position + ns_substring.length(); | ||
std::string type_name = dds_type_name.substr(start, suffix_position - start); | ||
return type_namespace + type_name; | ||
} | ||
|
||
std::string | ||
_identity_demangle(const std::string & name) | ||
{ | ||
return name; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Copyright 2019 Open Source Robotics Foundation, Inc. | ||
// Copyright 2016-2018 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef DEMANGLE_HPP_ | ||
#define DEMANGLE_HPP_ | ||
|
||
#include <string> | ||
|
||
/// Return the demangle ROS topic or the original if not a ROS topic. | ||
std::string | ||
_demangle_if_ros_topic(const std::string & topic_name); | ||
|
||
/// Return the demangled ROS type or the original if not a ROS type. | ||
std::string | ||
_demangle_if_ros_type(const std::string & dds_type_string); | ||
|
||
/// Return the topic name for a given topic if it is part of one, else "". | ||
std::string | ||
_demangle_ros_topic_from_topic(const std::string & topic_name); | ||
|
||
/// Return the service name for a given topic if it is part of a service, else "". | ||
std::string | ||
_demangle_service_from_topic(const std::string & topic_name); | ||
|
||
/// Return the service name for a given topic if it is part of a service request, else "". | ||
std::string | ||
_demangle_service_request_from_topic(const std::string & topic_name); | ||
|
||
/// Return the service name for a given topic if it is part of a service reply, else "". | ||
std::string | ||
_demangle_service_reply_from_topic(const std::string & topic_name); | ||
|
||
/// Return the demangled service type if it is a ROS srv type, else "". | ||
std::string | ||
_demangle_service_type_only(const std::string & dds_type_name); | ||
|
||
/// Used when ros names are not mangled. | ||
std::string | ||
_identity_demangle(const std::string & name); | ||
|
||
|
||
using DemangleFunction = std::string (*)(const std::string &); | ||
using MangleFunction = DemangleFunction; | ||
|
||
#endif // DEMANGLE_HPP_ |
Oops, something went wrong.