Skip to content

Commit

Permalink
Solve of issue #111 (#128)
Browse files Browse the repository at this point in the history
* Attempt to solve issue #111

* Remove code duplication, update ros_topic_name_to_zenoh_key function

* Update rmw_zenoh_cpp/src/rmw_zenoh.cpp

Co-authored-by: Yadu <[email protected]>
Signed-off-by: Shivang Vijay <[email protected]>

* Added const in front of topic name and declare topic_nm

* Adding proper variable name

Co-authored-by: Yadu <[email protected]>
Signed-off-by: Shivang Vijay <[email protected]>

* Added appropriate variable name

* / separater

* Style

Signed-off-by: Yadunund <[email protected]>

---------

Signed-off-by: Shivang Vijay <[email protected]>
Signed-off-by: Yadunund <[email protected]>
Co-authored-by: Shivang Vijay <[email protected]>
Co-authored-by: Yadu <[email protected]>
Co-authored-by: Yadunund <[email protected]>
  • Loading branch information
4 people authored May 10, 2024
1 parent 868b64e commit 152ab94
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions rmw_zenoh_cpp/src/rmw_zenoh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,26 +81,9 @@ namespace
// careful about who owns the string.
z_owned_keyexpr_t ros_topic_name_to_zenoh_key(const char * const topic_name, size_t domain_id)
{
std::string d = std::to_string(domain_id);

size_t start_offset = 0;
size_t topic_name_len = strlen(topic_name);
size_t end_offset = topic_name_len;

if (topic_name_len > 0) {
if (topic_name[0] == '/') {
// Strip the leading '/'
start_offset = 1;
}
if (topic_name[end_offset - 1] == '/') {
// Strip the trailing '/'
end_offset -= 1;
}
}

return z_keyexpr_join(
z_keyexpr(d.c_str()),
zc_keyexpr_from_slice(&topic_name[start_offset], end_offset - start_offset));
const std::string keyexpr_str = std::to_string(domain_id) + "/" + liveliness::mangle_name(
topic_name);
return z_keyexpr_new(keyexpr_str.c_str());
}

//==============================================================================
Expand Down

0 comments on commit 152ab94

Please sign in to comment.