Skip to content

Commit

Permalink
Improve runtime performance of rmw_count_XXX functions (#216)
Browse files Browse the repository at this point in the history
Change the runtime performance of `rmw_count_subscribers` and `rmw_count_publishers` to be O(logN) instead of linear.
  • Loading branch information
guillaumeautran committed Jul 30, 2018
1 parent 8f6a13c commit 2792057
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 12 deletions.
7 changes: 7 additions & 0 deletions rmw_fastrtps_shared_cpp/src/namespace_prefix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,10 @@ _strip_ros_prefix_if_exists(const std::string & topic_name)
}
return topic_name;
}

/// Returns the list of ros prefixes
const std::vector<std::string> &
_get_all_ros_prefixes()
{
return _ros_prefixes;
}
4 changes: 4 additions & 0 deletions rmw_fastrtps_shared_cpp/src/namespace_prefix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ _get_ros_prefix_if_exists(const std::string & topic_name);
/// Returns the topic name stripped of and ROS specific prefix if exists.
std::string
_strip_ros_prefix_if_exists(const std::string & topic_name);

/// Returns the list of ros prefixes
const std::vector<std::string> &
_get_all_ros_prefixes();
#endif // NAMESPACE_PREFIX_HPP_
49 changes: 37 additions & 12 deletions rmw_fastrtps_shared_cpp/src/rmw_count.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "rmw/types.h"

#include "demangle.hpp"
#include "namespace_prefix.hpp"
#include "rmw_fastrtps_shared_cpp/custom_participant_info.hpp"
#include "rmw_fastrtps_shared_cpp/rmw_common.hpp"
#include "reader_info.hpp"
Expand All @@ -49,15 +50,27 @@ __rmw_count_publishers(
return RMW_RET_ERROR;
}

auto impl = static_cast<CustomParticipantInfo *>(node->data);
*count = 0;

// Build the list of all possible topic FQDN
std::vector<std::string> topic_fqdns;
topic_fqdns.push_back(topic_name);
if (topic_name[0] == '/') {
std::for_each(_ros_prefixes.begin(), _ros_prefixes.end(),
[&topic_fqdns, &topic_name](const std::string & prefix) {
topic_fqdns.push_back(prefix + topic_name);
});
}

auto impl = static_cast<CustomParticipantInfo *>(node->data);
WriterInfo * slave_target = impl->secondaryPubListener;

slave_target->mapmutex.lock();
*count = 0;
for (const auto & it : slave_target->topicNtypes) {
const auto topic_fqdn = _demangle_if_ros_topic(it.first);
if (topic_fqdn == topic_name) {
*count += it.second.size();
// Search and sum up the publisher counts
for (const auto & topic_fqdn : topic_fqdns) {
const auto & it = slave_target->topicNtypes.find(topic_fqdn);
if (it != slave_target->topicNtypes.end()) {
*count += it->second.size();
}
}
slave_target->mapmutex.unlock();
Expand Down Expand Up @@ -89,15 +102,27 @@ __rmw_count_subscribers(
return RMW_RET_ERROR;
}

CustomParticipantInfo * impl = static_cast<CustomParticipantInfo *>(node->data);
*count = 0;

// Build the list of all possible topic FQDN
std::vector<std::string> topic_fqdns;
topic_fqdns.push_back(topic_name);
if (topic_name[0] == '/') {
std::for_each(_ros_prefixes.begin(), _ros_prefixes.end(),
[&topic_fqdns, &topic_name](const std::string & prefix) {
topic_fqdns.push_back(prefix + topic_name);
});
}

CustomParticipantInfo * impl = static_cast<CustomParticipantInfo *>(node->data);
ReaderInfo * slave_target = impl->secondarySubListener;
*count = 0;

slave_target->mapmutex.lock();
for (const auto & it : slave_target->topicNtypes) {
const auto topic_fqdn = _demangle_if_ros_topic(it.first);
if (topic_fqdn == topic_name) {
*count += it.second.size();
// Search and sum up the subscriber counts
for (const auto & topic_fqdn : topic_fqdns) {
const auto & it = slave_target->topicNtypes.find(topic_fqdn);
if (it != slave_target->topicNtypes.end()) {
*count += it->second.size();
}
}
slave_target->mapmutex.unlock();
Expand Down

0 comments on commit 2792057

Please sign in to comment.