mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 18:05:17 +02:00
Compare commits
15
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ed4bb3c15 | ||
|
|
489dbddced | ||
|
|
ed0402c2dd | ||
|
|
5780038fcc | ||
|
|
57bdfc5463 | ||
|
|
1f1b5842c6 | ||
|
|
6d2d47490a | ||
|
|
61b1e6fc8c | ||
|
|
d7dab5c671 | ||
|
|
e85eccb7c0 | ||
|
|
ac9f09b656 | ||
|
|
7ffd5f0bb6 | ||
|
|
ceb1a1436c | ||
|
|
c98705319f | ||
|
|
d149bb7018 |
@@ -22,7 +22,7 @@ jobs:
|
|||||||
cd /uros_ws
|
cd /uros_ws
|
||||||
. /opt/ros/$ROS_DISTRO/setup.sh
|
. /opt/ros/$ROS_DISTRO/setup.sh
|
||||||
. install/local_setup.sh
|
. install/local_setup.sh
|
||||||
rosdep update
|
rosdep update --rosdistro=$ROS_DISTRO
|
||||||
ros2 run micro_ros_setup create_agent_ws.sh
|
ros2 run micro_ros_setup create_agent_ws.sh
|
||||||
|
|
||||||
- name: Patch branch
|
- name: Patch branch
|
||||||
|
|||||||
@@ -2,6 +2,34 @@
|
|||||||
Changelog for package micro-ros_agent
|
Changelog for package micro-ros_agent
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
3.0.1 (2022-03-25)
|
||||||
|
------------------
|
||||||
|
* Add services to graph manager (`#127 <https://github.com/micro-ROS/micro-ROS-Agent/issues/127>`_) (`#129 <https://github.com/micro-ROS/micro-ROS-Agent/issues/129>`_)
|
||||||
|
* Add used missing includes (`#116 <https://github.com/micro-ROS/micro-ROS-Agent/issues/116>`_) (`#124 <https://github.com/micro-ROS/micro-ROS-Agent/issues/124>`_)
|
||||||
|
* Add system logger flag (`#118 <https://github.com/micro-ROS/micro-ROS-Agent/issues/118>`_) (`#119 <https://github.com/micro-ROS/micro-ROS-Agent/issues/119>`_)
|
||||||
|
* Add condition variable include (`#113 <https://github.com/micro-ROS/micro-ROS-Agent/issues/113>`_) (`#114 <https://github.com/micro-ROS/micro-ROS-Agent/issues/114>`_)
|
||||||
|
* pass system name to xrceagent (`#110 <https://github.com/micro-ROS/micro-ROS-Agent/issues/110>`_) (`#112 <https://github.com/micro-ROS/micro-ROS-Agent/issues/112>`_)
|
||||||
|
* Fix memory leak in FastDDS datawriter (`#107 <https://github.com/micro-ROS/micro-ROS-Agent/issues/107>`_) (`#109 <https://github.com/micro-ROS/micro-ROS-Agent/issues/109>`_)
|
||||||
|
|
||||||
|
3.0.0 (2021-09-13)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
1.0.1 (2021-09-13)
|
||||||
|
------------------
|
||||||
|
* Remove XRCE dependency and add superbuild (`#97 <https://github.com/micro-ROS/micro-ROS-Agent/issues/97>`_)
|
||||||
|
* Fixed launch file by using a list for arguments. Ensures order of items is kept. (`#93 <https://github.com/micro-ROS/micro-ROS-Agent/issues/93>`_) (`#94 <https://github.com/micro-ROS/micro-ROS-Agent/issues/94>`_)
|
||||||
|
* Modify argument type (`#91 <https://github.com/micro-ROS/micro-ROS-Agent/issues/91>`_)
|
||||||
|
* Fix graph manager datawriters behaviour (`#84 <https://github.com/micro-ROS/micro-ROS-Agent/issues/84>`_)
|
||||||
|
* Graph manager: Fix participant mask for listener callbacks (`#81 <https://github.com/micro-ROS/micro-ROS-Agent/issues/81>`_)
|
||||||
|
* Fix agent launch (`#78 <https://github.com/micro-ROS/micro-ROS-Agent/issues/78>`_)
|
||||||
|
* Fix graph manager node namespaces (`#75 <https://github.com/micro-ROS/micro-ROS-Agent/issues/75>`_)
|
||||||
|
* Fix Rolling agent (`#61 <https://github.com/micro-ROS/micro-ROS-Agent/issues/61>`_)
|
||||||
|
* Add multi domain graph manager (`#69 <https://github.com/micro-ROS/micro-ROS-Agent/issues/69>`_)
|
||||||
|
* Add ros2 launch capabilities and example launch file (`#47 <https://github.com/micro-ROS/micro-ROS-Agent/issues/47>`_)
|
||||||
|
* Snap build for the micro-ROS-Agent (`#43 <https://github.com/micro-ROS/micro-ROS-Agent/issues/43>`_)
|
||||||
|
* Create graph manager after checking passed CLI arguments and launch xrce-dds server (`#41 <https://github.com/micro-ROS/micro-ROS-Agent/issues/41>`_)
|
||||||
|
* Contributors: Antonio Cuadros, Jose Antonio Moral, Pablo Garrido, mergify[bot]
|
||||||
|
|
||||||
0.0.1 (2019-04-24)
|
0.0.1 (2019-04-24)
|
||||||
-----------------
|
-----------------
|
||||||
* Initial release
|
* Initial release
|
||||||
|
|||||||
@@ -19,7 +19,16 @@ option(UROSAGENT_GENERATE_PROFILE
|
|||||||
)
|
)
|
||||||
set(CMAKE_C_CLANG_TIDY clang-tidy -checks=*)
|
set(CMAKE_C_CLANG_TIDY clang-tidy -checks=*)
|
||||||
|
|
||||||
|
option(MICROROSAGENT_SUPERBUILD "Enable superbuild compilation." ON)
|
||||||
|
option(UAGENT_USE_SYSTEM_LOGGER "Force use of system installed spdlog logger on superbuild." OFF)
|
||||||
|
|
||||||
|
if(NOT MICROROSAGENT_SUPERBUILD)
|
||||||
project(micro_ros_agent LANGUAGES CXX)
|
project(micro_ros_agent LANGUAGES CXX)
|
||||||
|
else()
|
||||||
|
project(uagent_superbuild NONE)
|
||||||
|
include(${PROJECT_SOURCE_DIR}/cmake/SuperBuild.cmake)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
find_package(ament_cmake REQUIRED)
|
find_package(ament_cmake REQUIRED)
|
||||||
find_package(microxrcedds_agent REQUIRED)
|
find_package(microxrcedds_agent REQUIRED)
|
||||||
|
|||||||
@@ -0,0 +1,68 @@
|
|||||||
|
# Copyright 2019 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(ExternalProject)
|
||||||
|
|
||||||
|
unset(_deps)
|
||||||
|
|
||||||
|
enable_language(C)
|
||||||
|
enable_language(CXX)
|
||||||
|
|
||||||
|
unset(xrceagent_DIR CACHE)
|
||||||
|
find_package(xrceagent 2 EXACT QUIET)
|
||||||
|
if(NOT xrceagent_FOUND)
|
||||||
|
ExternalProject_Add(xrceagent
|
||||||
|
GIT_REPOSITORY
|
||||||
|
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
|
||||||
|
GIT_TAG
|
||||||
|
ros2
|
||||||
|
PREFIX
|
||||||
|
${PROJECT_BINARY_DIR}/agent
|
||||||
|
INSTALL_DIR
|
||||||
|
${CMAKE_INSTALL_PREFIX}
|
||||||
|
CMAKE_CACHE_ARGS
|
||||||
|
-DCMAKE_CXX_COMPILER:FILEPATH=${CMAKE_CXX_COMPILER}
|
||||||
|
-DCMAKE_C_COMPILER:FILEPATH=${CMAKE_C_COMPILER}
|
||||||
|
-DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
|
||||||
|
-DCMAKE_C_FLAGS:STRING=${CMAKE_C_FLAGS}
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING=${CMAKE_CXX_FLAGS}
|
||||||
|
-DCMAKE_EXE_LINKER_FLAGS:STRING=${CMAKE_EXE_LINKER_FLAGS}
|
||||||
|
-DCMAKE_SHARED_LINKER_FLAGS:STRING=${CMAKE_SHARED_LINKER_FLAGS}
|
||||||
|
-DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
||||||
|
-DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
|
||||||
|
-DCMAKE_PREFIX_PATH:PATH=<INSTALL_DIR>
|
||||||
|
-DCMAKE_SYSTEM_NAME:STRING=${CMAKE_SYSTEM_NAME}
|
||||||
|
-DUAGENT_USE_SYSTEM_FASTDDS:BOOL=ON
|
||||||
|
-DUAGENT_USE_SYSTEM_FASTCDR:BOOL=ON
|
||||||
|
-DUAGENT_USE_SYSTEM_LOGGER:BOOL=${UAGENT_USE_SYSTEM_LOGGER}
|
||||||
|
-DUAGENT_CED_PROFILE:BOOL=OFF
|
||||||
|
-DUAGENT_P2P_PROFILE:BOOL=OFF
|
||||||
|
-DUAGENT_BUILD_EXECUTABLE:BOOL=OFF
|
||||||
|
-DUAGENT_ISOLATED_INSTALL:BOOL=OFF
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Main project.
|
||||||
|
ExternalProject_Add(micro_ros_agent
|
||||||
|
SOURCE_DIR
|
||||||
|
${PROJECT_SOURCE_DIR}
|
||||||
|
BINARY_DIR
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
CMAKE_CACHE_ARGS
|
||||||
|
-DMICROROSAGENT_SUPERBUILD:BOOL=OFF
|
||||||
|
INSTALL_COMMAND
|
||||||
|
""
|
||||||
|
DEPENDS
|
||||||
|
xrceagent
|
||||||
|
)
|
||||||
@@ -20,6 +20,10 @@
|
|||||||
#include <uxr/agent/middleware/utils/Callbacks.hpp>
|
#include <uxr/agent/middleware/utils/Callbacks.hpp>
|
||||||
|
|
||||||
#include <agent/graph_manager/graph_manager.hpp>
|
#include <agent/graph_manager/graph_manager.hpp>
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
// TODO(jamoralp): class Documentation
|
// TODO(jamoralp): class Documentation
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef _UROS_AGENT_GRAPH_MANAGER_HPP
|
||||||
|
#define _UROS_AGENT_GRAPH_MANAGER_HPP
|
||||||
|
|
||||||
#include "fastrtps/Domain.h"
|
#include "fastrtps/Domain.h"
|
||||||
#include <fastrtps/TopicDataType.h>
|
#include <fastrtps/TopicDataType.h>
|
||||||
#include "fastrtps/attributes/ParticipantAttributes.h"
|
#include "fastrtps/attributes/ParticipantAttributes.h"
|
||||||
@@ -58,8 +61,10 @@
|
|||||||
#include <agent/graph_manager/graph_typesupport.hpp>
|
#include <agent/graph_manager/graph_typesupport.hpp>
|
||||||
#include <agent/utils/demangle.hpp>
|
#include <agent/utils/demangle.hpp>
|
||||||
|
|
||||||
#ifndef _UROS_AGENT_GRAPH_MANAGER_HPP
|
#include <condition_variable>
|
||||||
#define _UROS_AGENT_GRAPH_MANAGER_HPP
|
#include <string>
|
||||||
|
#include <memory>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
|
|||||||
@@ -7,6 +7,6 @@ def generate_launch_description():
|
|||||||
package='micro_ros_agent',
|
package='micro_ros_agent',
|
||||||
executable='micro_ros_agent',
|
executable='micro_ros_agent',
|
||||||
name='micro_ros_agent',
|
name='micro_ros_agent',
|
||||||
arguments={"udp4", "-p", "8888", "-v6"}
|
arguments=["udp4", "-p", "8888", "-v6"]
|
||||||
)
|
)
|
||||||
])
|
])
|
||||||
|
|||||||
@@ -2,9 +2,10 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>micro_ros_agent</name>
|
<name>micro_ros_agent</name>
|
||||||
<version>0.0.1</version>
|
<version>3.0.1</version>
|
||||||
<description>DDS-XCRE agent implementation </description>
|
<description>micro-ROS Agent package</description>
|
||||||
<maintainer email="borjaouterelo@eprosima.com">Borja Outerelo</maintainer>
|
<maintainer email="pablogarrido@eprosima.com">Pablo Garrido</maintainer>
|
||||||
|
<maintainer email="antoniocuadros@eprosima.com">Antonio Cuadros</maintainer>
|
||||||
<license>Apache License 2.0</license>
|
<license>Apache License 2.0</license>
|
||||||
|
|
||||||
<buildtool_depend>ament_cmake</buildtool_depend>
|
<buildtool_depend>ament_cmake</buildtool_depend>
|
||||||
@@ -14,7 +15,6 @@
|
|||||||
<test_depend>ament_lint_auto</test_depend>
|
<test_depend>ament_lint_auto</test_depend>
|
||||||
<test_depend>ament_lint_common</test_depend>
|
<test_depend>ament_lint_common</test_depend>
|
||||||
|
|
||||||
<depend>microxrcedds_agent</depend>
|
|
||||||
<depend>rmw</depend>
|
<depend>rmw</depend>
|
||||||
<depend>rcutils</depend>
|
<depend>rcutils</depend>
|
||||||
<depend>rmw_fastrtps_shared_cpp</depend>
|
<depend>rmw_fastrtps_shared_cpp</depend>
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
|
|
||||||
#include <agent/Agent.hpp>
|
#include <agent/Agent.hpp>
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
|
|
||||||
@@ -76,14 +79,9 @@ bool Agent::create(
|
|||||||
{
|
{
|
||||||
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
// TODO(jamoralp): Workaround for Fast-DDS bug #9977. Remove when fixed
|
graph_manager_->add_datawriter(datawriter->guid(), participant, datawriter);
|
||||||
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
|
||||||
datawriter->get_instance_handle();
|
|
||||||
const eprosima::fastrtps::rtps::GUID_t datawriter_guid =
|
|
||||||
iHandle2GUID(instance_handle);
|
|
||||||
graph_manager_->add_datawriter(datawriter_guid, participant, datawriter);
|
|
||||||
graph_manager_->associate_entity(
|
graph_manager_->associate_entity(
|
||||||
datawriter_guid, participant, dds::xrce::OBJK_DATAWRITER);
|
datawriter->guid(), participant, dds::xrce::OBJK_DATAWRITER);
|
||||||
});
|
});
|
||||||
xrce_dds_agent_instance_.add_middleware_callback(
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
eprosima::uxr::Middleware::Kind::FASTDDS,
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
@@ -103,12 +101,7 @@ bool Agent::create(
|
|||||||
|
|
||||||
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
// TODO(jamoralp): Workaround for Fast-DDS bug #9977. Remove when fixed
|
graph_manager_->remove_datawriter(datawriter->guid());
|
||||||
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
|
||||||
datawriter->get_instance_handle();
|
|
||||||
const eprosima::fastrtps::rtps::GUID_t datawriter_guid =
|
|
||||||
eprosima::fastrtps::rtps::iHandle2GUID(instance_handle);
|
|
||||||
graph_manager_->remove_datawriter(datawriter_guid);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
xrce_dds_agent_instance_.add_middleware_callback(
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
@@ -166,6 +159,128 @@ bool Agent::create(
|
|||||||
eprosima::uxr::Middleware::Kind::FASTDDS,
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
eprosima::uxr::middleware::CallbackKind::DELETE_DATAREADER,
|
eprosima::uxr::middleware::CallbackKind::DELETE_DATAREADER,
|
||||||
std::move(on_delete_datareader));
|
std::move(on_delete_datareader));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add CREATE_REQUESTER callback.
|
||||||
|
*/
|
||||||
|
std::function<void (
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant *,
|
||||||
|
const eprosima::fastdds::dds::DataWriter *,
|
||||||
|
const eprosima::fastdds::dds::DataReader *)> on_create_requester
|
||||||
|
([&](
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant* participant,
|
||||||
|
const eprosima::fastdds::dds::DataWriter* datawriter,
|
||||||
|
const eprosima::fastdds::dds::DataReader * datareader) -> void
|
||||||
|
{
|
||||||
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
|
graph_manager_->add_datawriter(datawriter->guid(), participant, datawriter);
|
||||||
|
graph_manager_->associate_entity(
|
||||||
|
datawriter->guid(), participant, dds::xrce::OBJK_DATAWRITER);
|
||||||
|
|
||||||
|
// TODO(pablogs): Workaround for Fast-DDS bug #9977. Remove when fixed
|
||||||
|
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
||||||
|
datareader->get_instance_handle();
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t datareader_guid =
|
||||||
|
eprosima::fastrtps::rtps::iHandle2GUID(instance_handle);
|
||||||
|
graph_manager_->add_datareader(datareader_guid, participant, datareader);
|
||||||
|
graph_manager_->associate_entity(
|
||||||
|
datareader_guid, participant, dds::xrce::OBJK_DATAREADER);
|
||||||
|
});
|
||||||
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
|
eprosima::uxr::middleware::CallbackKind::CREATE_REQUESTER,
|
||||||
|
std::move(on_create_requester));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add DELETE_REQUESTER callback.
|
||||||
|
*/
|
||||||
|
std::function<void (
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant *,
|
||||||
|
const eprosima::fastdds::dds::DataWriter *,
|
||||||
|
const eprosima::fastdds::dds::DataReader *)> on_delete_requester
|
||||||
|
([&](
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant* participant,
|
||||||
|
const eprosima::fastdds::dds::DataWriter* datawriter,
|
||||||
|
const eprosima::fastdds::dds::DataReader * datareader) -> void
|
||||||
|
{
|
||||||
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
|
graph_manager_->remove_datawriter(datawriter->guid());
|
||||||
|
|
||||||
|
// TODO(pablogs): Workaround for Fast-DDS bug #9977. Remove when fixed
|
||||||
|
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
||||||
|
datareader->get_instance_handle();
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t datareader_guid =
|
||||||
|
eprosima::fastrtps::rtps::iHandle2GUID(instance_handle);
|
||||||
|
graph_manager_->remove_datareader(datareader_guid);
|
||||||
|
});
|
||||||
|
|
||||||
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
|
eprosima::uxr::middleware::CallbackKind::DELETE_REQUESTER,
|
||||||
|
std::move(on_delete_requester));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add CREATE_REPLIER callback.
|
||||||
|
*/
|
||||||
|
std::function<void (
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant *,
|
||||||
|
const eprosima::fastdds::dds::DataWriter *,
|
||||||
|
const eprosima::fastdds::dds::DataReader *)> on_create_replier
|
||||||
|
([&](
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant* participant,
|
||||||
|
const eprosima::fastdds::dds::DataWriter* datawriter,
|
||||||
|
const eprosima::fastdds::dds::DataReader * datareader) -> void
|
||||||
|
{
|
||||||
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
|
graph_manager_->add_datawriter(datawriter->guid(), participant, datawriter);
|
||||||
|
graph_manager_->associate_entity(
|
||||||
|
datawriter->guid(), participant, dds::xrce::OBJK_DATAWRITER);
|
||||||
|
|
||||||
|
// TODO(pablogs): Workaround for Fast-DDS bug #9977. Remove when fixed
|
||||||
|
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
||||||
|
datareader->get_instance_handle();
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t datareader_guid =
|
||||||
|
eprosima::fastrtps::rtps::iHandle2GUID(instance_handle);
|
||||||
|
graph_manager_->add_datareader(datareader_guid, participant, datareader);
|
||||||
|
graph_manager_->associate_entity(
|
||||||
|
datareader_guid, participant, dds::xrce::OBJK_DATAREADER);
|
||||||
|
});
|
||||||
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
|
eprosima::uxr::middleware::CallbackKind::CREATE_REPLIER,
|
||||||
|
std::move(on_create_replier));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add DELETE_REPLIER callback.
|
||||||
|
*/
|
||||||
|
std::function<void (
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant *,
|
||||||
|
const eprosima::fastdds::dds::DataWriter *,
|
||||||
|
const eprosima::fastdds::dds::DataReader *)> on_delete_replier
|
||||||
|
([&](
|
||||||
|
const eprosima::fastdds::dds::DomainParticipant* participant,
|
||||||
|
const eprosima::fastdds::dds::DataWriter* datawriter,
|
||||||
|
const eprosima::fastdds::dds::DataReader * datareader) -> void
|
||||||
|
{
|
||||||
|
auto graph_manager_ = find_or_create_graph_manager(participant->get_domain_id());
|
||||||
|
|
||||||
|
graph_manager_->remove_datawriter(datawriter->guid());
|
||||||
|
|
||||||
|
// TODO(pablogs): Workaround for Fast-DDS bug #9977. Remove when fixed
|
||||||
|
const eprosima::fastrtps::rtps::InstanceHandle_t instance_handle =
|
||||||
|
datareader->get_instance_handle();
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t datareader_guid =
|
||||||
|
eprosima::fastrtps::rtps::iHandle2GUID(instance_handle);
|
||||||
|
graph_manager_->remove_datareader(datareader_guid);
|
||||||
|
});
|
||||||
|
|
||||||
|
xrce_dds_agent_instance_.add_middleware_callback(
|
||||||
|
eprosima::uxr::Middleware::Kind::FASTDDS,
|
||||||
|
eprosima::uxr::middleware::CallbackKind::DELETE_REPLIER,
|
||||||
|
std::move(on_delete_replier));
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -17,6 +17,11 @@
|
|||||||
|
|
||||||
#include <agent/graph_manager/graph_manager.hpp>
|
#include <agent/graph_manager/graph_manager.hpp>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
#include <utility>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
namespace graph_manager {
|
namespace graph_manager {
|
||||||
@@ -96,7 +101,7 @@ GraphManager::GraphManager(eprosima::fastdds::dds::DomainId_t domain_id)
|
|||||||
|
|
||||||
eprosima::fastdds::dds::DataWriterQos ros_to_microros_datawriter_qos_ = datawriter_qos_;
|
eprosima::fastdds::dds::DataWriterQos ros_to_microros_datawriter_qos_ = datawriter_qos_;
|
||||||
ros_to_microros_datawriter_qos_.history().kind =
|
ros_to_microros_datawriter_qos_.history().kind =
|
||||||
eprosima::fastdds::dds::HistoryQosPolicyKind::KEEP_ALL_HISTORY_QOS;
|
eprosima::fastdds::dds::HistoryQosPolicyKind::KEEP_LAST_HISTORY_QOS;
|
||||||
ros_to_microros_graph_datawriter_.reset(
|
ros_to_microros_graph_datawriter_.reset(
|
||||||
publisher_->create_datawriter(ros_to_microros_graph_topic_.get(), ros_to_microros_datawriter_qos_));
|
publisher_->create_datawriter(ros_to_microros_graph_topic_.get(), ros_to_microros_datawriter_qos_));
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
#include <agent/graph_manager/graph_typesupport.hpp>
|
#include <agent/graph_manager/graph_typesupport.hpp>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
namespace graph_manager {
|
namespace graph_manager {
|
||||||
@@ -41,7 +43,7 @@ ParticipantEntitiesInfoTypeSupport::ParticipantEntitiesInfoTypeSupport()
|
|||||||
ss << "dds_::" << message_name << "_";
|
ss << "dds_::" << message_name << "_";
|
||||||
this->setName(ss.str().c_str());
|
this->setName(ss.str().c_str());
|
||||||
|
|
||||||
bool full_bounded = true;
|
char full_bounded;
|
||||||
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -133,7 +135,7 @@ MicrorosGraphInfoTypeSupport::MicrorosGraphInfoTypeSupport()
|
|||||||
ss << "dds_::" << message_name << "_";
|
ss << "dds_::" << message_name << "_";
|
||||||
this->setName(ss.str().c_str());
|
this->setName(ss.str().c_str());
|
||||||
|
|
||||||
bool full_bounded = true;
|
char full_bounded;
|
||||||
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,9 @@
|
|||||||
|
|
||||||
#include <agent/Agent.hpp>
|
#include <agent/Agent.hpp>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
uros::agent::Agent micro_ros_agent;
|
uros::agent::Agent micro_ros_agent;
|
||||||
|
|||||||
Reference in New Issue
Block a user