mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 18:05:17 +02:00
Compare commits
10
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8a1b0e54da | ||
|
|
e64e17aa25 | ||
|
|
39d8ed0ba2 | ||
|
|
37566d1c74 | ||
|
|
015343c4c8 | ||
|
|
7f3f560bc7 | ||
|
|
80916d4949 | ||
|
|
d1e851ba4e | ||
|
|
6047f7135d | ||
|
|
9d3fbc63a0 |
@@ -9,7 +9,7 @@ jobs:
|
|||||||
|
|
||||||
microros_agent_ci:
|
microros_agent_ci:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
container: microros/base:rolling
|
container: microros/base:foxy
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|||||||
@@ -14,9 +14,6 @@
|
|||||||
|
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.5)
|
||||||
|
|
||||||
option(BUILD_SHARED_LIBS "Control shared/static building." ON)
|
|
||||||
option(UBUILD_AGENT_EXECUTABLE "Control shared/static building." ON)
|
|
||||||
|
|
||||||
option(UROSAGENT_GENERATE_PROFILE
|
option(UROSAGENT_GENERATE_PROFILE
|
||||||
"Generates agent.refs according to the .msgs provided in the .repos" OFF
|
"Generates agent.refs according to the .msgs provided in the .repos" OFF
|
||||||
)
|
)
|
||||||
@@ -44,26 +41,15 @@ find_package(ament_cmake_gtest REQUIRED)
|
|||||||
|
|
||||||
find_package(micro_ros_msgs REQUIRED)
|
find_package(micro_ros_msgs REQUIRED)
|
||||||
|
|
||||||
include(GNUInstallDirs)
|
add_executable(${PROJECT_NAME}
|
||||||
set(BIN_INSTALL_DIR ${CMAKE_INSTALL_BINDIR} CACHE PATH "Installation directory for binaries")
|
src/main.cpp
|
||||||
set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR} CACHE PATH "Installation directory for C headers")
|
|
||||||
set(LIB_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR} CACHE PATH "Installation directory for libraries")
|
|
||||||
set(DATA_INSTALL_DIR ${CMAKE_INSTALL_DATADIR} CACHE PATH "Installation directory for data")
|
|
||||||
|
|
||||||
# Set source files
|
|
||||||
set(SRCS
|
|
||||||
src/agent/Agent.cpp
|
src/agent/Agent.cpp
|
||||||
src/agent/graph_manager/graph_manager.cpp
|
src/agent/graph_manager/graph_manager.cpp
|
||||||
src/agent/graph_manager/graph_typesupport.cpp
|
src/agent/graph_manager/graph_typesupport.cpp
|
||||||
src/agent/utils/demangle.cpp
|
src/agent/utils/demangle.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
# Library
|
target_include_directories(${PROJECT_NAME}
|
||||||
add_library(${PROJECT_NAME} ${SRCS})
|
|
||||||
|
|
||||||
target_include_directories(${PROJECT_NAME} BEFORE
|
|
||||||
PUBLIC
|
|
||||||
$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>
|
|
||||||
PRIVATE
|
PRIVATE
|
||||||
include
|
include
|
||||||
)
|
)
|
||||||
@@ -90,9 +76,9 @@ target_link_libraries(${PROJECT_NAME}
|
|||||||
|
|
||||||
target_compile_options(${PROJECT_NAME}
|
target_compile_options(${PROJECT_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wall>
|
$<$<C_COMPILER_ID:GNU>:-Wall>
|
||||||
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wextra>
|
$<$<C_COMPILER_ID:GNU>:-Wextra>
|
||||||
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wpedantic>
|
$<$<C_COMPILER_ID:GNU>:-pedantic>
|
||||||
)
|
)
|
||||||
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES
|
set_target_properties(${PROJECT_NAME} PROPERTIES
|
||||||
@@ -102,82 +88,27 @@ set_target_properties(${PROJECT_NAME} PROPERTIES
|
|||||||
YES
|
YES
|
||||||
)
|
)
|
||||||
|
|
||||||
# Install agent lib
|
set_target_properties(${PROJECT_NAME} PROPERTIES
|
||||||
|
CXX_STANDARD
|
||||||
|
14
|
||||||
|
CXX_STANDARD_REQUIRED
|
||||||
|
YES
|
||||||
|
)
|
||||||
|
|
||||||
|
target_compile_options(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wall>
|
||||||
|
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wextra>
|
||||||
|
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>>:-Wpedantic>
|
||||||
|
)
|
||||||
|
|
||||||
|
ament_export_dependencies(microxrcedds_agent)
|
||||||
|
|
||||||
|
ament_package()
|
||||||
|
|
||||||
install(
|
install(
|
||||||
TARGETS
|
TARGETS
|
||||||
${PROJECT_NAME}
|
${PROJECT_NAME}
|
||||||
EXPORT
|
|
||||||
${PROJECT_NAME}Targets
|
|
||||||
RUNTIME DESTINATION
|
|
||||||
${BIN_INSTALL_DIR}
|
|
||||||
LIBRARY DESTINATION
|
|
||||||
${LIB_INSTALL_DIR}
|
|
||||||
ARCHIVE DESTINATION
|
|
||||||
${LIB_INSTALL_DIR}
|
|
||||||
COMPONENT
|
|
||||||
libraries
|
|
||||||
)
|
|
||||||
|
|
||||||
# Install includes
|
|
||||||
install(
|
|
||||||
DIRECTORY
|
|
||||||
${PROJECT_SOURCE_DIR}/include/agent
|
|
||||||
DESTINATION
|
|
||||||
${INCLUDE_INSTALL_DIR}
|
|
||||||
FILES_MATCHING
|
|
||||||
PATTERN "*.hpp"
|
|
||||||
PATTERN "*.h"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Export library
|
|
||||||
install(
|
|
||||||
EXPORT
|
|
||||||
${PROJECT_NAME}Targets
|
|
||||||
DESTINATION
|
|
||||||
${DATA_INSTALL_DIR}/${PROJECT_NAME}/cmake
|
|
||||||
)
|
|
||||||
|
|
||||||
# Package configuration
|
|
||||||
include(CMakePackageConfigHelpers)
|
|
||||||
|
|
||||||
configure_package_config_file(
|
|
||||||
${PROJECT_SOURCE_DIR}/cmake/Config.cmake.in
|
|
||||||
${PROJECT_BINARY_DIR}/cmake/config/${PROJECT_NAME}Config.cmake
|
|
||||||
INSTALL_DESTINATION
|
|
||||||
${DATA_INSTALL_DIR}/${PROJECT_NAME}/cmake
|
|
||||||
PATH_VARS
|
|
||||||
BIN_INSTALL_DIR
|
|
||||||
INCLUDE_INSTALL_DIR
|
|
||||||
LIB_INSTALL_DIR
|
|
||||||
DATA_INSTALL_DIR
|
|
||||||
)
|
|
||||||
|
|
||||||
install(
|
|
||||||
FILES
|
|
||||||
${PROJECT_BINARY_DIR}/cmake/config/${PROJECT_NAME}Config.cmake
|
|
||||||
DESTINATION
|
|
||||||
${DATA_INSTALL_DIR}/${PROJECT_NAME}/cmake
|
|
||||||
)
|
|
||||||
|
|
||||||
if(UBUILD_AGENT_EXECUTABLE)
|
|
||||||
add_executable(micro_ros_agent_bin
|
|
||||||
${SRCS}
|
|
||||||
src/main.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(micro_ros_agent_bin
|
|
||||||
PRIVATE
|
|
||||||
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(micro_ros_agent_bin ${PROJECT_NAME})
|
|
||||||
|
|
||||||
set_target_properties(micro_ros_agent_bin
|
|
||||||
PROPERTIES OUTPUT_NAME ${PROJECT_NAME})
|
|
||||||
|
|
||||||
install(
|
|
||||||
TARGETS
|
|
||||||
micro_ros_agent_bin
|
|
||||||
DESTINATION
|
DESTINATION
|
||||||
lib/${PROJECT_NAME}
|
lib/${PROJECT_NAME}
|
||||||
)
|
)
|
||||||
@@ -188,11 +119,6 @@ if(UBUILD_AGENT_EXECUTABLE)
|
|||||||
DESTINATION
|
DESTINATION
|
||||||
share/${PROJECT_NAME}
|
share/${PROJECT_NAME}
|
||||||
)
|
)
|
||||||
endif()
|
|
||||||
|
|
||||||
ament_export_dependencies(microxrcedds_agent)
|
|
||||||
|
|
||||||
ament_package()
|
|
||||||
|
|
||||||
if(UROSAGENT_GENERATE_PROFILE)
|
if(UROSAGENT_GENERATE_PROFILE)
|
||||||
set(_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}/python")
|
set(_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}/python")
|
||||||
|
|||||||
@@ -26,26 +26,35 @@ namespace agent {
|
|||||||
|
|
||||||
class Agent
|
class Agent
|
||||||
{
|
{
|
||||||
private:
|
public:
|
||||||
|
|
||||||
Agent();
|
Agent();
|
||||||
|
|
||||||
~Agent()
|
~Agent() = default;
|
||||||
{
|
|
||||||
stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
Agent(const Agent &) = delete;
|
/**
|
||||||
|
* @brief Agent class shall not be copy constructible.
|
||||||
Agent(Agent &&) = delete;
|
*/
|
||||||
|
UXR_AGENT_EXPORT Agent(
|
||||||
Agent& operator =(
|
|
||||||
const Agent &) = delete;
|
const Agent &) = delete;
|
||||||
|
|
||||||
Agent& operator =(
|
UXR_AGENT_EXPORT Agent(
|
||||||
Agent &&) = delete;
|
Agent &&) = delete;
|
||||||
|
|
||||||
public:
|
/**
|
||||||
static Agent& getInstance();
|
* @brief Agent class shall not be copy assignable.
|
||||||
|
*/
|
||||||
|
UXR_AGENT_EXPORT Agent& operator =(
|
||||||
|
const Agent &) = delete;
|
||||||
|
|
||||||
|
UXR_AGENT_EXPORT Agent& operator =(
|
||||||
|
Agent &&) = delete;
|
||||||
|
|
||||||
|
static Agent& getInstance()
|
||||||
|
{
|
||||||
|
static Agent instance;
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
bool create(
|
bool create(
|
||||||
int argc,
|
int argc,
|
||||||
@@ -55,14 +64,71 @@ public:
|
|||||||
|
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
private:
|
void add_callbacks();
|
||||||
bool initialized = false;
|
|
||||||
eprosima::uxr::AgentInstance& xrce_dds_agent_instance_;
|
|
||||||
std::map<eprosima::fastdds::dds::DomainId_t, graph_manager::GraphManager> graph_manager_map_;
|
|
||||||
|
|
||||||
graph_manager::GraphManager* find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id);
|
private:
|
||||||
|
eprosima::uxr::AgentInstance& xrce_dds_agent_instance_;
|
||||||
|
std::map<eprosima::fastdds::dds::DomainId_t, std::shared_ptr<graph_manager::GraphManager>> graph_manager_map_;
|
||||||
|
std::shared_ptr<graph_manager::GraphManager> find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id);
|
||||||
|
bool started = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<typename AgentType>
|
||||||
|
class AgentAPI
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
AgentAPI()
|
||||||
|
: agent_instance_(agent_instance_.getInstance())
|
||||||
|
{};
|
||||||
|
|
||||||
|
~AgentAPI() = default;
|
||||||
|
|
||||||
|
void create(uint16_t port)
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.configure(port);
|
||||||
|
}
|
||||||
|
|
||||||
|
void create(std::string dev, const std::string baudrate);
|
||||||
|
void create(std::vector<std::string> devs, const std::string baudrate);
|
||||||
|
void create(const std::string baudrate);
|
||||||
|
|
||||||
|
void set_verbose_level(uint8_t verbose_level)
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.set_verbose_level(verbose_level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void run()
|
||||||
|
{
|
||||||
|
agent_instance_.add_callbacks();
|
||||||
|
xrce_dds_agent_instance_API.run();
|
||||||
|
}
|
||||||
|
|
||||||
|
void stop()
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
Agent& agent_instance_;
|
||||||
|
eprosima::uxr::AgentInstanceAPI<AgentType> xrce_dds_agent_instance_API;
|
||||||
|
};
|
||||||
|
|
||||||
|
template<> inline UXR_AGENT_EXPORT void AgentAPI<eprosima::uxr::TermiosAgent>::create(std::string dev, const std::string baudrate)
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.configure(dev, baudrate);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<> inline UXR_AGENT_EXPORT void AgentAPI<eprosima::uxr::MultiTermiosAgent>::create(std::vector<std::string> devs, const std::string baudrate)
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.configure(devs, baudrate);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
template<> inline UXR_AGENT_EXPORT void AgentAPI<eprosima::uxr::PseudoTerminalAgent>::create(const std::string baudrate)
|
||||||
|
{
|
||||||
|
xrce_dds_agent_instance_API.configure(baudrate);
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace agent
|
} // namespace agent
|
||||||
} // namespace uros
|
} // namespace uros
|
||||||
#endif // _UROS_AGENT_AGENT_HPP
|
#endif // _UROS_AGENT_AGENT_HPP
|
||||||
@@ -80,28 +80,15 @@ public:
|
|||||||
/**
|
/**
|
||||||
* @brief Default destructor.
|
* @brief Default destructor.
|
||||||
*/
|
*/
|
||||||
~GraphManager() = default;
|
~GraphManager()
|
||||||
|
|
||||||
void stop()
|
|
||||||
{
|
|
||||||
if (microros_graph_publisher_.joinable())
|
|
||||||
{
|
{
|
||||||
exit = true;
|
exit = true;
|
||||||
cv_.notify_one();
|
cv_.notify_one();
|
||||||
|
|
||||||
|
if (microros_graph_publisher_.joinable())
|
||||||
|
{
|
||||||
microros_graph_publisher_.join();
|
microros_graph_publisher_.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
subscriber_->delete_datareader(ros_discovery_datareader_);
|
|
||||||
publisher_->delete_datawriter(ros_to_microros_graph_datawriter_);
|
|
||||||
|
|
||||||
participant_->delete_subscriber(subscriber_);
|
|
||||||
participant_->delete_publisher(publisher_);
|
|
||||||
|
|
||||||
// Delete topics
|
|
||||||
participant_->delete_topic(ros_discovery_topic_);
|
|
||||||
participant_->delete_topic(ros_to_microros_graph_topic_);
|
|
||||||
|
|
||||||
eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->delete_participant(participant_);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -154,6 +141,21 @@ public:
|
|||||||
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
const eprosima::fastdds::dds::DataWriterQos& writer_qos);
|
const eprosima::fastdds::dds::DataWriterQos& writer_qos);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Adds a DDS datawriter to the graph tree.
|
||||||
|
* @param datawriter_guid rtps::GUID_t of the datawriter to be added.
|
||||||
|
* @param topic_name Name of the topic to which the datawriter sends information to.
|
||||||
|
* @param type_name Type name of the sent topic.
|
||||||
|
* @param participant_guid rtps::GUID_t of the participant which owns this datawriter.
|
||||||
|
* @param writer_qos QOS of the datawriter to be included into the graph tree.
|
||||||
|
*/
|
||||||
|
void add_datawriter(
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& datawriter_guid,
|
||||||
|
const std::string& topic_name,
|
||||||
|
const std::string& type_name,
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
|
const eprosima::fastdds::dds::WriterQos& writer_qos);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Removes a DDS datawriter from the graph tree.
|
* @brief Removes a DDS datawriter from the graph tree.
|
||||||
* @param datawriter_guid rtps::GUID_t of the datawriter to be removed.
|
* @param datawriter_guid rtps::GUID_t of the datawriter to be removed.
|
||||||
@@ -187,6 +189,21 @@ public:
|
|||||||
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
const eprosima::fastdds::dds::DataReaderQos& reader_qos);
|
const eprosima::fastdds::dds::DataReaderQos& reader_qos);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Adds a DDS datareader to the graph tree.
|
||||||
|
* @param datareader_guid rtps::GUID_t of the datareader to be added.
|
||||||
|
* @param topic_name Name of the topic to which the datareader sends information to.
|
||||||
|
* @param type_name Type name of the sent topic.
|
||||||
|
* @param participant_guid rtps::GUID_t of the participant which owns this datareader.
|
||||||
|
* @param writer_qos QOS of the datareader to be included into the graph tree.
|
||||||
|
*/
|
||||||
|
void add_datareader(
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& datareader_guid,
|
||||||
|
const std::string& topic_name,
|
||||||
|
const std::string& type_name,
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
|
const eprosima::fastdds::dds::ReaderQos& reader_qos);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Removes a DDS datareader from the graph tree.
|
* @brief Removes a DDS datareader from the graph tree.
|
||||||
* @param datareader_guid rtps::GUID_t of the datareader to be removed.
|
* @param datareader_guid rtps::GUID_t of the datareader to be removed.
|
||||||
@@ -290,34 +307,34 @@ private:
|
|||||||
std::string& node_name,
|
std::string& node_name,
|
||||||
std::string& node_namespace);
|
std::string& node_namespace);
|
||||||
|
|
||||||
|
bool exit = false;
|
||||||
eprosima::fastdds::dds::DomainId_t domain_id_;
|
eprosima::fastdds::dds::DomainId_t domain_id_;
|
||||||
bool graph_changed_;
|
bool graph_changed_;
|
||||||
bool display_on_change_;
|
bool display_on_change_;
|
||||||
std::thread microros_graph_publisher_;
|
std::thread microros_graph_publisher_;
|
||||||
std::mutex mtx_;
|
std::mutex mtx_;
|
||||||
std::condition_variable cv_;
|
std::condition_variable cv_;
|
||||||
volatile bool exit = false;
|
|
||||||
|
|
||||||
eprosima::fastdds::dds::DataWriterQos datawriter_qos_;
|
eprosima::fastdds::dds::DataWriterQos datawriter_qos_;
|
||||||
|
|
||||||
rmw_dds_common::GraphCache graphCache_;
|
rmw_dds_common::GraphCache graphCache_;
|
||||||
|
std::unique_ptr<ParticipantListener> participant_listener_;
|
||||||
|
std::unique_ptr<DatareaderListener> datareader_listener_;
|
||||||
|
|
||||||
ParticipantListener participant_listener_;
|
std::unique_ptr<eprosima::fastdds::dds::TypeSupport> participant_info_typesupport_;
|
||||||
DatareaderListener datareader_listener_;
|
std::unique_ptr<eprosima::fastdds::dds::TypeSupport> microros_graph_info_typesupport_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::DomainParticipant> participant_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::Publisher> publisher_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::Subscriber> subscriber_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::Topic> ros_discovery_topic_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::Topic> ros_to_microros_graph_topic_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::DataWriter> ros_to_microros_graph_datawriter_;
|
||||||
|
std::unique_ptr<eprosima::fastdds::dds::DataReader> ros_discovery_datareader_;
|
||||||
|
|
||||||
eprosima::fastdds::dds::TypeSupport participant_info_typesupport_;
|
|
||||||
eprosima::fastdds::dds::TypeSupport microros_graph_info_typesupport_;
|
|
||||||
eprosima::fastdds::dds::DomainParticipant* participant_;
|
|
||||||
eprosima::fastdds::dds::Publisher* publisher_;
|
|
||||||
eprosima::fastdds::dds::Subscriber* subscriber_;
|
|
||||||
eprosima::fastdds::dds::Topic* ros_discovery_topic_;
|
|
||||||
eprosima::fastdds::dds::Topic* ros_to_microros_graph_topic_;
|
|
||||||
eprosima::fastdds::dds::DataWriter* ros_to_microros_graph_datawriter_;
|
|
||||||
eprosima::fastdds::dds::DataReader* ros_discovery_datareader_;
|
|
||||||
// Store a auxiliary publishers and datawriter for each participant created in micro-ROS
|
// Store a auxiliary publishers and datawriter for each participant created in micro-ROS
|
||||||
std::map<
|
std::map<
|
||||||
const eprosima::fastdds::dds::DomainParticipant*,
|
const eprosima::fastdds::dds::DomainParticipant*,
|
||||||
eprosima::fastdds::dds::DataWriter*
|
std::unique_ptr<eprosima::fastdds::dds::DataWriter>
|
||||||
> micro_ros_graph_datawriters_;
|
> micro_ros_graph_datawriters_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -25,22 +25,17 @@ Agent::Agent()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
Agent& Agent::getInstance()
|
|
||||||
{
|
|
||||||
static Agent instance;
|
|
||||||
return instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Agent::create(
|
bool Agent::create(
|
||||||
int argc,
|
int argc,
|
||||||
char** argv)
|
char** argv)
|
||||||
{
|
{
|
||||||
bool result = xrce_dds_agent_instance_.create(argc, argv);
|
return xrce_dds_agent_instance_.create(argc, argv);
|
||||||
|
}
|
||||||
|
|
||||||
if (result && !initialized)
|
void Agent::add_callbacks()
|
||||||
|
{
|
||||||
|
if (!started)
|
||||||
{
|
{
|
||||||
initialized = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add CREATE_PARTICIPANT callback.
|
* Add CREATE_PARTICIPANT callback.
|
||||||
*/
|
*/
|
||||||
@@ -109,7 +104,6 @@ bool Agent::create(
|
|||||||
const eprosima::fastdds::dds::DomainParticipant* participant,
|
const eprosima::fastdds::dds::DomainParticipant* participant,
|
||||||
const eprosima::fastdds::dds::DataWriter* datawriter) -> void
|
const eprosima::fastdds::dds::DataWriter* datawriter) -> void
|
||||||
{
|
{
|
||||||
|
|
||||||
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
|
// TODO(jamoralp): Workaround for Fast-DDS bug #9977. Remove when fixed
|
||||||
@@ -175,36 +169,35 @@ 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));
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
started = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Agent::run()
|
void Agent::run()
|
||||||
{
|
{
|
||||||
xrce_dds_agent_instance_.run();
|
return xrce_dds_agent_instance_.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Agent::stop()
|
void Agent::stop()
|
||||||
{
|
{
|
||||||
xrce_dds_agent_instance_.stop();
|
return xrce_dds_agent_instance_.stop();
|
||||||
|
|
||||||
for (auto & element : graph_manager_map_)
|
|
||||||
{
|
|
||||||
element.second.stop();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
graph_manager_map_.clear();
|
std::shared_ptr<graph_manager::GraphManager> Agent::find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id)
|
||||||
}
|
|
||||||
|
|
||||||
graph_manager::GraphManager* Agent::find_or_create_graph_manager(eprosima::fastdds::dds::DomainId_t domain_id)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
auto it = graph_manager_map_.find(domain_id);
|
auto it = graph_manager_map_.find(domain_id);
|
||||||
|
|
||||||
if (it != graph_manager_map_.end()) {
|
if (it != graph_manager_map_.end()) {
|
||||||
return &it->second;
|
return it->second;
|
||||||
}else{
|
}else{
|
||||||
return &graph_manager_map_.emplace(domain_id, domain_id).first->second;
|
return graph_manager_map_.insert(
|
||||||
|
std::make_pair(
|
||||||
|
domain_id,
|
||||||
|
std::make_shared<graph_manager::GraphManager>(domain_id)
|
||||||
|
)
|
||||||
|
).first->second;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,16 +28,15 @@ GraphManager::GraphManager(eprosima::fastdds::dds::DomainId_t domain_id)
|
|||||||
, mtx_()
|
, mtx_()
|
||||||
, cv_()
|
, cv_()
|
||||||
, graphCache_()
|
, graphCache_()
|
||||||
, participant_listener_(this)
|
, participant_listener_(std::make_unique<ParticipantListener>(this))
|
||||||
, datareader_listener_(this)
|
, datareader_listener_(std::make_unique<DatareaderListener>(this))
|
||||||
, participant_info_typesupport_()
|
, participant_info_typesupport_(std::make_unique<
|
||||||
, microros_graph_info_typesupport_()
|
eprosima::fastdds::dds::TypeSupport>(new graph_manager::ParticipantEntitiesInfoTypeSupport()))
|
||||||
|
, microros_graph_info_typesupport_(std::make_unique<
|
||||||
|
eprosima::fastdds::dds::TypeSupport>(new graph_manager::MicrorosGraphInfoTypeSupport()))
|
||||||
{
|
{
|
||||||
eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->load_profiles();
|
eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->load_profiles();
|
||||||
|
|
||||||
participant_info_typesupport_ = (eprosima::fastdds::dds::TypeSupport) new graph_manager::ParticipantEntitiesInfoTypeSupport();
|
|
||||||
microros_graph_info_typesupport_ = (eprosima::fastdds::dds::TypeSupport) new graph_manager::MicrorosGraphInfoTypeSupport();
|
|
||||||
|
|
||||||
// Create DomainParticipant
|
// Create DomainParticipant
|
||||||
eprosima::fastdds::dds::DomainParticipantQos participant_qos =
|
eprosima::fastdds::dds::DomainParticipantQos participant_qos =
|
||||||
eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->get_default_participant_qos();
|
eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->get_default_participant_qos();
|
||||||
@@ -55,30 +54,29 @@ GraphManager::GraphManager(eprosima::fastdds::dds::DomainId_t domain_id)
|
|||||||
eprosima::fastrtps::rtps::PREALLOCATED_WITH_REALLOC_MEMORY_MODE;
|
eprosima::fastrtps::rtps::PREALLOCATED_WITH_REALLOC_MEMORY_MODE;
|
||||||
|
|
||||||
eprosima::fastdds::dds::StatusMask par_mask = eprosima::fastdds::dds::StatusMask::none();
|
eprosima::fastdds::dds::StatusMask par_mask = eprosima::fastdds::dds::StatusMask::none();
|
||||||
|
participant_.reset(eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->
|
||||||
participant_ = eprosima::fastdds::dds::DomainParticipantFactory::get_instance()->
|
create_participant(domain_id_, participant_qos, participant_listener_.get(), par_mask));
|
||||||
create_participant(domain_id_, participant_qos, &participant_listener_, par_mask);
|
|
||||||
|
|
||||||
// Register participant within typesupport
|
// Register participant within typesupport
|
||||||
participant_->register_type(participant_info_typesupport_);
|
participant_->register_type(*participant_info_typesupport_);
|
||||||
participant_->register_type(microros_graph_info_typesupport_);
|
participant_->register_type(*microros_graph_info_typesupport_);
|
||||||
|
|
||||||
// Create publisher
|
// Create publisher
|
||||||
publisher_ = participant_->create_publisher(
|
publisher_.reset(participant_->create_publisher(
|
||||||
eprosima::fastdds::dds::PUBLISHER_QOS_DEFAULT);
|
eprosima::fastdds::dds::PUBLISHER_QOS_DEFAULT));
|
||||||
|
|
||||||
// Create subscriber
|
// Create subscriber
|
||||||
subscriber_ = participant_->create_subscriber(
|
subscriber_.reset(participant_->create_subscriber(
|
||||||
eprosima::fastdds::dds::SUBSCRIBER_QOS_DEFAULT);
|
eprosima::fastdds::dds::SUBSCRIBER_QOS_DEFAULT));
|
||||||
|
|
||||||
// Create topics
|
// Create topics
|
||||||
ros_discovery_topic_ = participant_->create_topic("ros_discovery_info",
|
ros_discovery_topic_.reset(participant_->create_topic("ros_discovery_info",
|
||||||
participant_info_typesupport_.get_type_name(),
|
participant_info_typesupport_->get_type_name(),
|
||||||
eprosima::fastdds::dds::TOPIC_QOS_DEFAULT);
|
eprosima::fastdds::dds::TOPIC_QOS_DEFAULT));
|
||||||
|
|
||||||
ros_to_microros_graph_topic_ = participant_->create_topic("ros_to_microros_graph",
|
ros_to_microros_graph_topic_.reset(participant_->create_topic("ros_to_microros_graph",
|
||||||
microros_graph_info_typesupport_.get_type_name(),
|
microros_graph_info_typesupport_->get_type_name(),
|
||||||
eprosima::fastdds::dds::TOPIC_QOS_DEFAULT);
|
eprosima::fastdds::dds::TOPIC_QOS_DEFAULT));
|
||||||
|
|
||||||
// Create datawriters
|
// Create datawriters
|
||||||
datawriter_qos_ =
|
datawriter_qos_ =
|
||||||
@@ -99,9 +97,8 @@ 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_ALL_HISTORY_QOS;
|
||||||
|
ros_to_microros_graph_datawriter_.reset(
|
||||||
ros_to_microros_graph_datawriter_ =
|
publisher_->create_datawriter(ros_to_microros_graph_topic_.get(), ros_to_microros_datawriter_qos_));
|
||||||
publisher_->create_datawriter(ros_to_microros_graph_topic_, ros_to_microros_datawriter_qos_);
|
|
||||||
|
|
||||||
// Create datareaders
|
// Create datareaders
|
||||||
|
|
||||||
@@ -117,9 +114,9 @@ GraphManager::GraphManager(eprosima::fastdds::dds::DomainId_t domain_id)
|
|||||||
datareader_qos.durability().kind =
|
datareader_qos.durability().kind =
|
||||||
eprosima::fastdds::dds::DurabilityQosPolicyKind::TRANSIENT_LOCAL_DURABILITY_QOS;
|
eprosima::fastdds::dds::DurabilityQosPolicyKind::TRANSIENT_LOCAL_DURABILITY_QOS;
|
||||||
|
|
||||||
ros_discovery_datareader_ =
|
ros_discovery_datareader_.reset(
|
||||||
subscriber_->create_datareader(ros_discovery_topic_,
|
subscriber_->create_datareader(ros_discovery_topic_.get(),
|
||||||
datareader_qos, &datareader_listener_);
|
datareader_qos, datareader_listener_.get()));
|
||||||
|
|
||||||
// Set graph cache on change callback function
|
// Set graph cache on change callback function
|
||||||
graphCache_.set_on_change_callback([this]()
|
graphCache_.set_on_change_callback([this]()
|
||||||
@@ -323,8 +320,8 @@ void GraphManager::add_participant(
|
|||||||
if (it == micro_ros_graph_datawriters_.end())
|
if (it == micro_ros_graph_datawriters_.end())
|
||||||
{
|
{
|
||||||
// Create datawriter
|
// Create datawriter
|
||||||
eprosima::fastdds::dds::DataWriter* datawriter;
|
std::unique_ptr<eprosima::fastdds::dds::DataWriter> datawriter;
|
||||||
datawriter = publisher_->create_datawriter(ros_discovery_topic_, datawriter_qos_);
|
datawriter.reset(publisher_->create_datawriter(ros_discovery_topic_.get(), datawriter_qos_));
|
||||||
|
|
||||||
it = micro_ros_graph_datawriters_.insert(
|
it = micro_ros_graph_datawriters_.insert(
|
||||||
std::make_pair(participant, std::move(datawriter))).first;
|
std::make_pair(participant, std::move(datawriter))).first;
|
||||||
@@ -347,10 +344,8 @@ void GraphManager::remove_participant(
|
|||||||
rmw_dds_common::convert_gid_to_msg(&gid, &info.gid);
|
rmw_dds_common::convert_gid_to_msg(&gid, &info.gid);
|
||||||
auto it = micro_ros_graph_datawriters_.find(participant);
|
auto it = micro_ros_graph_datawriters_.find(participant);
|
||||||
it->second->write(static_cast<void *>(&info));
|
it->second->write(static_cast<void *>(&info));
|
||||||
|
|
||||||
publisher_->delete_datawriter(it->second);
|
|
||||||
micro_ros_graph_datawriters_.erase(participant);
|
|
||||||
}
|
}
|
||||||
|
micro_ros_graph_datawriters_.erase(participant);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphManager::add_datawriter(
|
void GraphManager::add_datawriter(
|
||||||
@@ -381,6 +376,24 @@ void GraphManager::add_datawriter(
|
|||||||
type_name, participant_gid, qos_profile, false);
|
type_name, participant_gid, qos_profile, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GraphManager::add_datawriter(
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& datawriter_guid,
|
||||||
|
const std::string& topic_name,
|
||||||
|
const std::string& type_name,
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
|
const eprosima::fastdds::dds::WriterQos& writer_qos)
|
||||||
|
{
|
||||||
|
const rmw_gid_t datawriter_gid = rmw_fastrtps_shared_cpp::create_rmw_gid(
|
||||||
|
"rmw_fastrtps_cpp", datawriter_guid);
|
||||||
|
const rmw_gid_t participant_gid = rmw_fastrtps_shared_cpp::create_rmw_gid(
|
||||||
|
"rmw_fastrtps_cpp", participant_guid);
|
||||||
|
rmw_qos_profile_t qos_profile = rmw_qos_profile_unknown;
|
||||||
|
dds_qos_to_rmw_qos(writer_qos, &qos_profile);
|
||||||
|
|
||||||
|
graphCache_.add_entity(datawriter_gid, topic_name,
|
||||||
|
type_name, participant_gid, qos_profile, false);
|
||||||
|
}
|
||||||
|
|
||||||
void GraphManager::remove_datawriter(
|
void GraphManager::remove_datawriter(
|
||||||
const eprosima::fastrtps::rtps::GUID_t& datawriter_guid)
|
const eprosima::fastrtps::rtps::GUID_t& datawriter_guid)
|
||||||
{
|
{
|
||||||
@@ -418,6 +431,24 @@ void GraphManager::add_datareader(
|
|||||||
type_name, participant_gid, qos_profile, true);
|
type_name, participant_gid, qos_profile, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GraphManager::add_datareader(
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& datareader_guid,
|
||||||
|
const std::string& topic_name,
|
||||||
|
const std::string& type_name,
|
||||||
|
const eprosima::fastrtps::rtps::GUID_t& participant_guid,
|
||||||
|
const eprosima::fastdds::dds::ReaderQos& reader_qos)
|
||||||
|
{
|
||||||
|
const rmw_gid_t datareader_gid = rmw_fastrtps_shared_cpp::create_rmw_gid(
|
||||||
|
"rmw_fastrtps_cpp", datareader_guid);
|
||||||
|
const rmw_gid_t participant_gid = rmw_fastrtps_shared_cpp::create_rmw_gid(
|
||||||
|
"rmw_fastrtps_cpp", participant_guid);
|
||||||
|
rmw_qos_profile_t qos_profile = rmw_qos_profile_unknown;
|
||||||
|
dds_qos_to_rmw_qos(reader_qos, &qos_profile);
|
||||||
|
|
||||||
|
graphCache_.add_entity(datareader_gid, topic_name,
|
||||||
|
type_name, participant_gid, qos_profile, true);
|
||||||
|
}
|
||||||
|
|
||||||
void GraphManager::remove_datareader(
|
void GraphManager::remove_datareader(
|
||||||
const eprosima::fastrtps::rtps::GUID_t& datareader_guid)
|
const eprosima::fastrtps::rtps::GUID_t& datareader_guid)
|
||||||
{
|
{
|
||||||
@@ -550,7 +581,7 @@ void GraphManager::update_node_entities_info()
|
|||||||
if (ros_discovery_datareader_->take_next_sample(&entities_info, &sample_info) ==
|
if (ros_discovery_datareader_->take_next_sample(&entities_info, &sample_info) ==
|
||||||
eprosima::fastrtps::types::ReturnCode_t::RETCODE_OK)
|
eprosima::fastrtps::types::ReturnCode_t::RETCODE_OK)
|
||||||
{
|
{
|
||||||
if (sample_info.instance_state == eprosima::fastdds::dds::InstanceStateKind::ALIVE_INSTANCE_STATE)
|
if (sample_info.instance_state == eprosima::fastdds::dds::InstanceStateKind::ALIVE)
|
||||||
{
|
{
|
||||||
graphCache_.update_participant_entities(entities_info);
|
graphCache_.update_participant_entities(entities_info);
|
||||||
}
|
}
|
||||||
@@ -635,52 +666,6 @@ void GraphManager::ParticipantListener::on_participant_discovery(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static eprosima::fastdds::dds::DataWriterQos writer_qos_conversion(
|
|
||||||
const eprosima::fastdds::dds::WriterQos& writer_qos)
|
|
||||||
{
|
|
||||||
eprosima::fastdds::dds::DataWriterQos datawriter_qos;
|
|
||||||
datawriter_qos.durability(writer_qos.m_durability);
|
|
||||||
datawriter_qos.durability_service(writer_qos.m_durabilityService);
|
|
||||||
datawriter_qos.deadline(writer_qos.m_deadline);
|
|
||||||
datawriter_qos.latency_budget(writer_qos.m_latencyBudget);
|
|
||||||
datawriter_qos.liveliness(writer_qos.m_liveliness);
|
|
||||||
datawriter_qos.reliability(writer_qos.m_reliability);
|
|
||||||
datawriter_qos.destination_order(writer_qos.m_destinationOrder);
|
|
||||||
datawriter_qos.lifespan(writer_qos.m_lifespan);
|
|
||||||
datawriter_qos.user_data(writer_qos.m_userData);
|
|
||||||
datawriter_qos.ownership(writer_qos.m_ownership);
|
|
||||||
datawriter_qos.ownership_strength(writer_qos.m_ownershipStrength);
|
|
||||||
datawriter_qos.publish_mode(writer_qos.m_publishMode);
|
|
||||||
datawriter_qos.representation(writer_qos.representation);
|
|
||||||
datawriter_qos.data_sharing(writer_qos.data_sharing);
|
|
||||||
|
|
||||||
return datawriter_qos;
|
|
||||||
}
|
|
||||||
|
|
||||||
static eprosima::fastdds::dds::DataReaderQos reader_qos_conversion(
|
|
||||||
const eprosima::fastdds::dds::ReaderQos& reader_qos)
|
|
||||||
{
|
|
||||||
eprosima::fastdds::dds::DataReaderQos datareader_qos;
|
|
||||||
|
|
||||||
datareader_qos.durability(reader_qos.m_durability);
|
|
||||||
datareader_qos.deadline(reader_qos.m_deadline);
|
|
||||||
datareader_qos.latency_budget(reader_qos.m_latencyBudget);
|
|
||||||
datareader_qos.liveliness(reader_qos.m_liveliness);
|
|
||||||
datareader_qos.reliability(reader_qos.m_reliability);
|
|
||||||
datareader_qos.destination_order(reader_qos.m_destinationOrder);
|
|
||||||
datareader_qos.user_data(reader_qos.m_userData);
|
|
||||||
datareader_qos.ownership(reader_qos.m_ownership);
|
|
||||||
datareader_qos.time_based_filter(reader_qos.m_timeBasedFilter);
|
|
||||||
datareader_qos.lifespan(reader_qos.m_lifespan);
|
|
||||||
datareader_qos.durability_service(reader_qos.m_durabilityService);
|
|
||||||
eprosima::fastdds::dds::TypeConsistencyQos consistency;
|
|
||||||
consistency.type_consistency = reader_qos.type_consistency;
|
|
||||||
datareader_qos.type_consistency(consistency);
|
|
||||||
datareader_qos.data_sharing(reader_qos.data_sharing);
|
|
||||||
|
|
||||||
return datareader_qos;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
void GraphManager::ParticipantListener::process_discovery_info<eprosima::fastrtps::rtps::ReaderDiscoveryInfo>(
|
void GraphManager::ParticipantListener::process_discovery_info<eprosima::fastrtps::rtps::ReaderDiscoveryInfo>(
|
||||||
const eprosima::fastrtps::rtps::ReaderDiscoveryInfo& reader_info)
|
const eprosima::fastrtps::rtps::ReaderDiscoveryInfo& reader_info)
|
||||||
@@ -697,7 +682,7 @@ void GraphManager::ParticipantListener::process_discovery_info<eprosima::fastrtp
|
|||||||
const std::string type_name = reader_info.info.typeName().to_string();
|
const std::string type_name = reader_info.info.typeName().to_string();
|
||||||
|
|
||||||
graphManager_from_->add_datareader(reader_info.info.guid(), topic_name, type_name,
|
graphManager_from_->add_datareader(reader_info.info.guid(), topic_name, type_name,
|
||||||
iHandle2GUID(reader_info.info.RTPSParticipantKey()), reader_qos_conversion(reader_info.info.m_qos));
|
iHandle2GUID(reader_info.info.RTPSParticipantKey()), reader_info.info.m_qos);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
@@ -724,7 +709,7 @@ void GraphManager::ParticipantListener::process_discovery_info<eprosima::fastrtp
|
|||||||
const std::string type_name = writer_info.info.typeName().to_string();
|
const std::string type_name = writer_info.info.typeName().to_string();
|
||||||
|
|
||||||
graphManager_from_->add_datawriter(writer_info.info.guid(), topic_name, type_name,
|
graphManager_from_->add_datawriter(writer_info.info.guid(), topic_name, type_name,
|
||||||
iHandle2GUID(writer_info.info.RTPSParticipantKey()), writer_qos_conversion(writer_info.info.m_qos));
|
iHandle2GUID(writer_info.info.RTPSParticipantKey()), writer_info.info.m_qos);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
uros::agent::Agent& micro_ros_agent = micro_ros_agent.getInstance();
|
uros::agent::Agent micro_ros_agent;
|
||||||
|
|
||||||
/** Bypass '--ros-args' flag, as we use our own CLI parser.
|
/** Bypass '--ros-args' flag, as we use our own CLI parser.
|
||||||
* As a workaround for launch files, arguments will be passed from
|
* As a workaround for launch files, arguments will be passed from
|
||||||
|
|||||||
Reference in New Issue
Block a user