-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add topic cache object for managing topic relations
* Add topic cache object to maintain participant relationship * Separate responsibility of maintaining cached data from listener * Use lock_guard over manual mutex lock * Use c++14 functions to reduce code * Add debug statements * Add lookup of topics for input node * Remove unnecessary logging * Add namespace to graph functions
- Loading branch information
1 parent
3577298
commit 222c6e3
Showing
12 changed files
with
964 additions
and
59 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
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,68 @@ | ||
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// 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 "rmw/allocators.h" | ||
#include "rmw/convert_rcutils_ret_to_rmw_ret.h" | ||
#include "rmw/error_handling.h" | ||
#include "rmw/get_node_info_and_types.h" | ||
#include "rmw/names_and_types.h" | ||
#include "rmw/rmw.h" | ||
|
||
#include "rmw_fastrtps_shared_cpp/rmw_common.hpp" | ||
|
||
#include "rmw_fastrtps_cpp/identifier.hpp" | ||
|
||
extern "C" | ||
{ | ||
rmw_ret_t | ||
rmw_get_subscriber_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
bool no_demangle, | ||
rmw_names_and_types_t * topic_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_subscriber_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, node, allocator, node_name, node_namespace, no_demangle, | ||
topic_names_and_types); | ||
} | ||
|
||
rmw_ret_t | ||
rmw_get_publisher_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
bool no_demangle, | ||
rmw_names_and_types_t * topic_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_publisher_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, node, allocator, node_name, node_namespace, no_demangle, | ||
topic_names_and_types); | ||
} | ||
|
||
rmw_ret_t | ||
rmw_get_service_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
rmw_names_and_types_t * service_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_service_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, node, allocator, node_name, node_namespace, | ||
service_names_and_types); | ||
} | ||
} // extern "C" |
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,83 @@ | ||
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// 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 "rmw/allocators.h" | ||
#include "rmw/convert_rcutils_ret_to_rmw_ret.h" | ||
#include "rmw/error_handling.h" | ||
#include "rmw/get_node_info_and_types.h" | ||
#include "rmw/names_and_types.h" | ||
#include "rmw/rmw.h" | ||
|
||
#include "rmw_fastrtps_shared_cpp/rmw_common.hpp" | ||
|
||
#include "rmw_fastrtps_dynamic_cpp/identifier.hpp" | ||
|
||
// The extern "C" here enforces that overloading is not used. | ||
extern "C" | ||
{ | ||
rmw_ret_t | ||
rmw_get_subscriber_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
bool no_demangle, | ||
rmw_names_and_types_t * topic_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_subscriber_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, | ||
node, | ||
allocator, | ||
node_name, | ||
node_namespace, | ||
no_demangle, | ||
topic_names_and_types); | ||
} | ||
|
||
rmw_ret_t | ||
rmw_get_publisher_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
bool no_demangle, | ||
rmw_names_and_types_t * topic_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_publisher_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, | ||
node, | ||
allocator, | ||
node_name, | ||
node_namespace, | ||
no_demangle, | ||
topic_names_and_types); | ||
} | ||
|
||
rmw_ret_t | ||
rmw_get_service_names_and_types_by_node( | ||
const rmw_node_t * node, | ||
rcutils_allocator_t * allocator, | ||
const char * node_name, | ||
const char * node_namespace, | ||
rmw_names_and_types_t * service_names_and_types) | ||
{ | ||
return rmw_fastrtps_shared_cpp::__rmw_get_service_names_and_types_by_node( | ||
eprosima_fastrtps_identifier, | ||
node, | ||
allocator, | ||
node_name, | ||
node_namespace, | ||
service_names_and_types); | ||
} | ||
} // extern "C" |
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
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
Oops, something went wrong.