mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 18:05:17 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ab3eb89915 | ||
|
|
77607f9b5b | ||
|
|
79c9ec1448 | ||
|
|
be3134835a | ||
|
|
4e805eaf6b | ||
|
|
454c019fbf | ||
|
|
0ae200d715 | ||
|
|
6b99ec7298 | ||
|
|
3263e694e4 | ||
|
|
3c5d31f2b0 | ||
|
|
0d4fcf8547 | ||
|
|
52b35ef2eb | ||
|
|
48f4905f42 | ||
|
|
6d67807737 | ||
|
|
ddefabfa8c | ||
|
|
90545b7184 | ||
|
|
07c460a327 | ||
|
|
8aea206b93 | ||
|
|
ff2ae91877 | ||
|
|
b89677ed96 | ||
|
|
6f096337e5 | ||
|
|
d2a7e319ca | ||
|
|
7369137252 | ||
|
|
6cce230857 | ||
|
|
256424b7ec | ||
|
|
e43cde14ae | ||
|
|
a8caaa1b72 | ||
|
|
ee955ed01e | ||
|
|
a313a088bd |
+11
-10
@@ -3,27 +3,27 @@ name: CI micro-ROS Agent
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- 'jazzy'
|
- 'galactic'
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '33 6 * * *'
|
- cron: '33 6 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
microros_agent_ci:
|
microros_agent_ci:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest ]
|
os: [ ubuntu-20.04 ]
|
||||||
ros_distribution: [ jazzy ]
|
ros_distribution: [ galactic ]
|
||||||
include:
|
include:
|
||||||
- docker_image: ubuntu:24.04
|
- docker_image: ubuntu:20.04
|
||||||
ros_distribution: jazzy
|
ros_distribution: galactic
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.docker_image }}
|
image: ubuntu:20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v2
|
||||||
- uses: ros-tooling/setup-ros@0.7.7
|
- uses: ros-tooling/setup-ros@0.3.2
|
||||||
with:
|
with:
|
||||||
use-ros2-testing: false
|
use-ros2-testing: false
|
||||||
required-ros-distributions: ${{ matrix.ros_distribution }}
|
required-ros-distributions: ${{ matrix.ros_distribution }}
|
||||||
@@ -31,7 +31,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
apt-get install ros-${{ matrix.ros_distribution }}-micro-ros-msgs
|
apt-get install ros-${{ matrix.ros_distribution }}-micro-ros-msgs
|
||||||
apt-get install ros-${{ matrix.ros_distribution }}-rmw-fastrtps-cpp
|
apt-get install ros-${{ matrix.ros_distribution }}-rmw-fastrtps-cpp
|
||||||
- uses : ros-tooling/action-ros-ci@0.3.13
|
- uses : ros-tooling/action-ros-ci@0.2.5
|
||||||
with:
|
with:
|
||||||
package-name: "micro_ros_agent"
|
package-name: "micro_ros_agent"
|
||||||
target-ros2-distro: ${{ matrix.ros_distribution }}
|
target-ros2-distro: ${{ matrix.ros_distribution }}
|
||||||
|
|
||||||
|
|||||||
@@ -2,45 +2,29 @@
|
|||||||
Changelog for package micro-ros_agent
|
Changelog for package micro-ros_agent
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
5.0.2 (2024-05-31)
|
2.0.4 (2022-09-28)
|
||||||
------------------
|
------------------
|
||||||
* Jazzy Release
|
* Fix Datawriter destruction (`#169 <https://github.com/micro-ROS/micro-ROS-Agent/issues/169>`_) (`#172 <https://github.com/micro-ROS/micro-ROS-Agent/issues/172>`_)
|
||||||
* Bump Micro XRCE-DDS Agent (`#226 <https://github.com/micro-ROS/micro-ROS-Agent/issues/226>`_)
|
* Synchronise predicate (`#160 <https://github.com/micro-ROS/micro-ROS-Agent/issues/160>`_) (`#166 <https://github.com/micro-ROS/micro-ROS-Agent/issues/166>`_)
|
||||||
|
|
||||||
5.0.1 (2024-01-29)
|
2.0.3 (2022-06-13)
|
||||||
------------------
|
------------------
|
||||||
* Fix thread include (`#216 <https://github.com/micro-ROS/micro-ROS-Agent/issues/216>`_) (`#218 <https://github.com/micro-ROS/micro-ROS-Agent/issues/218>`_)
|
* Fix memory leak in graph manager (`#147 <https://github.com/micro-ROS/micro-ROS-Agent/issues/147>`_) (`#150 <https://github.com/micro-ROS/micro-ROS-Agent/issues/150>`_)
|
||||||
|
|
||||||
5.0.0 (2023-06-06)
|
2.0.2 (2022-05-25)
|
||||||
------------------
|
|
||||||
* Add empty type key hash to GraphCache (`#189 <https://github.com/micro-ROS/micro-ROS-Agent/issues/189>`_)
|
|
||||||
* Contributors: Antonio Cuadros
|
|
||||||
|
|
||||||
4.0.2 (2022-09-28)
|
|
||||||
------------------
|
|
||||||
* Fix Datawriter destruction (`#169 <https://github.com/micro-ROS/micro-ROS-Agent/issues/169>`_) (`#170 <https://github.com/micro-ROS/micro-ROS-Agent/issues/170>`_)
|
|
||||||
* Synchronise predicate (`#160 <https://github.com/micro-ROS/micro-ROS-Agent/issues/160>`_) (`#165 <https://github.com/micro-ROS/micro-ROS-Agent/issues/165>`_)
|
|
||||||
|
|
||||||
4.0.1 (2022-06-13)
|
|
||||||
------------------
|
|
||||||
* Fix memory leak in graph manager (`#147 <https://github.com/micro-ROS/micro-ROS-Agent/issues/147>`_) (`#148 <https://github.com/micro-ROS/micro-ROS-Agent/issues/148>`_)
|
|
||||||
|
|
||||||
4.0.0 (2022-05-25)
|
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
3.0.1 (2022-03-25)
|
2.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 services to graph manager (`#127 <https://github.com/micro-ROS/micro-ROS-Agent/issues/127>`_)
|
||||||
* 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 used missing includes (`#116 <https://github.com/micro-ROS/micro-ROS-Agent/issues/116>`_) (`#125 <https://github.com/micro-ROS/micro-ROS-Agent/issues/125>`_)
|
||||||
* 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 system logger flag (`#118 <https://github.com/micro-ROS/micro-ROS-Agent/issues/118>`_)
|
||||||
* 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>`_)
|
* Add condition variable include (`#113 <https://github.com/micro-ROS/micro-ROS-Agent/issues/113>`_)
|
||||||
* 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>`_)
|
* pass system name to xrceagent (`#110 <https://github.com/micro-ROS/micro-ROS-Agent/issues/110>`_)
|
||||||
* 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>`_)
|
* Fix memory leak in FastDDS datawriter (`#107 <https://github.com/micro-ROS/micro-ROS-Agent/issues/107>`_)
|
||||||
|
* Contributors: Antonio Cuadros, Pablo Garrido, Roland Schwan, mergify[bot]
|
||||||
|
|
||||||
3.0.0 (2021-09-13)
|
2.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>`_)
|
* 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>`_)
|
* 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>`_)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ if(NOT xrceagent_FOUND)
|
|||||||
GIT_REPOSITORY
|
GIT_REPOSITORY
|
||||||
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
|
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
|
||||||
GIT_TAG
|
GIT_TAG
|
||||||
v2.4.3
|
ros2
|
||||||
PREFIX
|
PREFIX
|
||||||
${PROJECT_BINARY_DIR}/agent
|
${PROJECT_BINARY_DIR}/agent
|
||||||
INSTALL_DIR
|
INSTALL_DIR
|
||||||
|
|||||||
@@ -65,7 +65,6 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <thread>
|
|
||||||
|
|
||||||
namespace uros {
|
namespace uros {
|
||||||
namespace agent {
|
namespace agent {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<?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>5.0.2</version>
|
<version>2.0.4</version>
|
||||||
<description>micro-ROS Agent package</description>
|
<description>micro-ROS Agent package</description>
|
||||||
<maintainer email="pablogarrido@eprosima.com">Pablo Garrido</maintainer>
|
<maintainer email="pablogarrido@eprosima.com">Pablo Garrido</maintainer>
|
||||||
<maintainer email="antoniocuadros@eprosima.com">Antonio Cuadros</maintainer>
|
<maintainer email="antoniocuadros@eprosima.com">Antonio Cuadros</maintainer>
|
||||||
|
|||||||
@@ -374,8 +374,8 @@ void GraphManager::add_datawriter(
|
|||||||
"rmw_fastrtps_cpp", participant_guid);
|
"rmw_fastrtps_cpp", participant_guid);
|
||||||
const rmw_qos_profile_t qos_profile = fastdds_qos_to_rmw_qos(writer_qos);
|
const rmw_qos_profile_t qos_profile = fastdds_qos_to_rmw_qos(writer_qos);
|
||||||
|
|
||||||
graphCache_.add_entity(datawriter_gid, topic_name, type_name,
|
graphCache_.add_entity(datawriter_gid, topic_name,
|
||||||
rosidl_get_zero_initialized_type_hash(), participant_gid, qos_profile, false);
|
type_name, participant_gid, qos_profile, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphManager::remove_datawriter(
|
void GraphManager::remove_datawriter(
|
||||||
@@ -411,13 +411,8 @@ void GraphManager::add_datareader(
|
|||||||
"rmw_fastrtps_cpp", participant_guid);
|
"rmw_fastrtps_cpp", participant_guid);
|
||||||
const rmw_qos_profile_t qos_profile = fastdds_qos_to_rmw_qos(reader_qos);
|
const rmw_qos_profile_t qos_profile = fastdds_qos_to_rmw_qos(reader_qos);
|
||||||
|
|
||||||
// TODO(acuadros95): Use typesupport to calculate type hash on micro-ROS and save and get it from reader_qos.user_data.
|
graphCache_.add_entity(datareader_gid, topic_name,
|
||||||
// Related PRs:
|
type_name, participant_gid, qos_profile, true);
|
||||||
// https://github.com/ros2/rmw_dds_common/pull/70
|
|
||||||
// https://github.com/ros2/rmw_fastrtps/pull/671
|
|
||||||
// https://github.com/ros2/rmw_fastrtps/pull/680
|
|
||||||
graphCache_.add_entity(datareader_gid, topic_name, type_name,
|
|
||||||
rosidl_get_zero_initialized_type_hash(), participant_gid, qos_profile, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GraphManager::remove_datareader(
|
void GraphManager::remove_datareader(
|
||||||
|
|||||||
@@ -43,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());
|
||||||
|
|
||||||
char full_bounded;
|
bool full_bounded = true;
|
||||||
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,14 +54,14 @@ bool ParticipantEntitiesInfoTypeSupport::serialize(
|
|||||||
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
||||||
payload->max_size);
|
payload->max_size);
|
||||||
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
||||||
eprosima::fastcdr::DDS_CDR);
|
eprosima::fastcdr::Cdr::DDS_CDR);
|
||||||
|
|
||||||
scdr.serialize_encapsulation();
|
scdr.serialize_encapsulation();
|
||||||
if (callbacks_->cdr_serialize(data, scdr))
|
if (callbacks_->cdr_serialize(data, scdr))
|
||||||
{
|
{
|
||||||
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
|
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
|
||||||
CDR_BE : CDR_LE;
|
CDR_BE : CDR_LE;
|
||||||
payload->length = static_cast<uint32_t>(scdr.get_serialized_data_length());
|
payload->length = static_cast<uint32_t>(scdr.getSerializedDataLength());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -77,7 +77,7 @@ bool ParticipantEntitiesInfoTypeSupport::deserialize(
|
|||||||
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
||||||
payload->length);
|
payload->length);
|
||||||
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
||||||
eprosima::fastcdr::DDS_CDR);
|
eprosima::fastcdr::Cdr::DDS_CDR);
|
||||||
|
|
||||||
dcdr.read_encapsulation();
|
dcdr.read_encapsulation();
|
||||||
return callbacks_->cdr_deserialize(dcdr, data);
|
return callbacks_->cdr_deserialize(dcdr, data);
|
||||||
@@ -135,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());
|
||||||
|
|
||||||
char full_bounded;
|
bool full_bounded = true;
|
||||||
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -146,14 +146,14 @@ bool MicrorosGraphInfoTypeSupport::serialize(
|
|||||||
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
||||||
payload->max_size);
|
payload->max_size);
|
||||||
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
||||||
eprosima::fastcdr::DDS_CDR);
|
eprosima::fastcdr::Cdr::DDS_CDR);
|
||||||
|
|
||||||
scdr.serialize_encapsulation();
|
scdr.serialize_encapsulation();
|
||||||
if (callbacks_->cdr_serialize(data, scdr))
|
if (callbacks_->cdr_serialize(data, scdr))
|
||||||
{
|
{
|
||||||
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
|
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
|
||||||
CDR_BE : CDR_LE;
|
CDR_BE : CDR_LE;
|
||||||
payload->length = static_cast<uint32_t>(scdr.get_serialized_data_length());
|
payload->length = static_cast<uint32_t>(scdr.getSerializedDataLength());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -169,7 +169,7 @@ bool MicrorosGraphInfoTypeSupport::deserialize(
|
|||||||
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
|
||||||
payload->length);
|
payload->length);
|
||||||
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
|
||||||
eprosima::fastcdr::DDS_CDR);
|
eprosima::fastcdr::Cdr::DDS_CDR);
|
||||||
|
|
||||||
dcdr.read_encapsulation();
|
dcdr.read_encapsulation();
|
||||||
return callbacks_->cdr_deserialize(dcdr, data);
|
return callbacks_->cdr_deserialize(dcdr, data);
|
||||||
|
|||||||
Reference in New Issue
Block a user