-
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.
Switch to one Participant per Context (#312)
Signed-off-by: ivanpauno <[email protected]>
- Loading branch information
Showing
79 changed files
with
4,033 additions
and
2,474 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
33 changes: 33 additions & 0 deletions
33
rmw_fastrtps_cpp/include/rmw_fastrtps_cpp/init_rmw_context_impl.hpp
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,33 @@ | ||
// Copyright 2020 Open Source Robotics Foundation, Inc. | ||
// | ||
// 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 RMW_FASTRTPS_CPP__INIT_RMW_CONTEXT_IMPL_HPP_ | ||
#define RMW_FASTRTPS_CPP__INIT_RMW_CONTEXT_IMPL_HPP_ | ||
|
||
#include "rmw/init.h" | ||
#include "rmw/types.h" | ||
|
||
namespace rmw_fastrtps_cpp | ||
{ | ||
|
||
/// Increment `rmw_context_impl_t` reference count, initializing it if necessary. | ||
/** | ||
* Should be called when creating a node, and before using `context->impl`. | ||
*/ | ||
rmw_ret_t | ||
increment_context_impl_ref_count(rmw_context_t * context); | ||
|
||
} // namespace rmw_fastrtps_cpp | ||
|
||
#endif // RMW_FASTRTPS_CPP__INIT_RMW_CONTEXT_IMPL_HPP_ |
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,36 @@ | ||
// Copyright 2017-2019 Open Source Robotics Foundation, Inc. | ||
// | ||
// 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 RMW_FASTRTPS_CPP__PUBLISHER_HPP_ | ||
#define RMW_FASTRTPS_CPP__PUBLISHER_HPP_ | ||
|
||
#include "rmw/rmw.h" | ||
#include "rmw_fastrtps_shared_cpp/custom_participant_info.hpp" | ||
|
||
namespace rmw_fastrtps_cpp | ||
{ | ||
|
||
rmw_publisher_t * | ||
create_publisher( | ||
const CustomParticipantInfo * participant_info, | ||
const rosidl_message_type_support_t * type_supports, | ||
const char * topic_name, | ||
const rmw_qos_profile_t * qos_policies, | ||
const rmw_publisher_options_t * publisher_options, | ||
bool keyed, | ||
bool create_publisher_listener); | ||
|
||
} // namespace rmw_fastrtps_cpp | ||
|
||
#endif // RMW_FASTRTPS_CPP__PUBLISHER_HPP_ |
38 changes: 38 additions & 0 deletions
38
rmw_fastrtps_cpp/include/rmw_fastrtps_cpp/subscription.hpp
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,38 @@ | ||
// Copyright 2019 Open Source Robotics Foundation, Inc. | ||
// | ||
// 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 RMW_FASTRTPS_CPP__SUBSCRIPTION_HPP_ | ||
#define RMW_FASTRTPS_CPP__SUBSCRIPTION_HPP_ | ||
|
||
#include "rmw/rmw.h" | ||
#include "rmw/subscription_options.h" | ||
|
||
#include "rmw_fastrtps_shared_cpp/custom_participant_info.hpp" | ||
|
||
namespace rmw_fastrtps_cpp | ||
{ | ||
|
||
rmw_subscription_t * | ||
create_subscription( | ||
const CustomParticipantInfo * participant_info, | ||
const rosidl_message_type_support_t * type_supports, | ||
const char * topic_name, | ||
const rmw_qos_profile_t * qos_policies, | ||
const rmw_subscription_options_t * subscription_options, | ||
bool keyed, | ||
bool create_subscription_listener); | ||
|
||
} // namespace rmw_fastrtps_cpp | ||
|
||
#endif // RMW_FASTRTPS_CPP__SUBSCRIPTION_HPP_ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright 2019 Open Source Robotics Foundation, Inc. | ||
// | ||
// 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 <cstddef> | ||
|
||
#include "rosidl_generator_c/message_type_support_struct.h" | ||
// rosidl_typesupport_cpp/message_type_support.hpp is installed by rosidl_generator_cpp | ||
#include "rosidl_typesupport_cpp/message_type_support.hpp" | ||
#include "rmw_dds_common/msg/gid__struct.hpp" | ||
#include "rmw_dds_common/msg/gid__rosidl_typesupport_fastrtps_cpp.hpp" | ||
#include "rmw_fastrtps_cpp/visibility_control.h" | ||
|
||
// This file is needed and can't be generated by `rosidl_typesupport_cpp`, | ||
// because adding a dependency to that package generates a cyclic dependency | ||
// (`rosidl_typesupport_cpp` exports a dependency on `rmw_implementation`). | ||
|
||
namespace rosidl_typesupport_cpp | ||
{ | ||
|
||
template<> | ||
RMW_FASTRTPS_CPP_PUBLIC | ||
const rosidl_message_type_support_t * | ||
get_message_type_support_handle<rmw_dds_common::msg::Gid>() | ||
{ | ||
return ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME( | ||
rosidl_typesupport_fastrtps_cpp, rmw_dds_common, msg, Gid)(); | ||
} | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif | ||
|
||
RMW_FASTRTPS_CPP_PUBLIC | ||
const rosidl_message_type_support_t * | ||
ROSIDL_TYPESUPPORT_INTERFACE__MESSAGE_SYMBOL_NAME( | ||
rosidl_typesupport_cpp, rmw_dds_common, msg, Gid)() | ||
{ | ||
return get_message_type_support_handle<rmw_dds_common::msg::Gid>(); | ||
} | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
} // namespace rosidl_typesupport_cpp |
Oops, something went wrong.