-
Notifications
You must be signed in to change notification settings - Fork 795
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refs #21313: Substitute auto_fill_type_information with fastdds.type_propagation policy Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Rework DynamicPubSubType.hpp doxydoc Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Add minimal bandwidth type propagation Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Add registration only bandwidth type propagation Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Only init TypeLookupManager when required Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Add entry to versions.md Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Remove unrecheable code Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Improve tests Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Remove unnecessary includes Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Add RTPSParticipantImplt::type_propagation API to group code Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Rename RTPSParticipant attr getter to get_attributes Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313. Fix doxygen reference Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix tests Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev> * Refs #21313: Update doxygen documentation Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev> * Refs #21313. Fix after rebase Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev> * Refs #21313: Apply Miguel's suggestions Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix build with BUILD_DOCUMENTATION=ON Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix build with BUILD_DOCUMENTATION=ON and Fast CDR as thirdparty Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Uncrustify Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix uncrustify Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix failing tests Signed-off-by: eduponz <eduardoponz@eprosima.com> * Refs #21313: Fix potential ABBA between PDP and RTPSParticipantImpl mutexes Signed-off-by: eduponz <eduardoponz@eprosima.com> --------- Signed-off-by: eduponz <eduardoponz@eprosima.com> Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev> Co-authored-by: Ricardo González Moreno <ricardo@richiware.dev>
- Loading branch information
Showing
73 changed files
with
1,373 additions
and
364 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
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
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,72 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<dds xmlns="http://www.eprosima.com" > | ||
<profiles> | ||
<participant profile_name="xtypes_participant_profile" is_default_profile="true"> | ||
<domainId>0</domainId> | ||
<rtps> | ||
<name>xtypes_participant</name> | ||
<propertiesPolicy> | ||
<properties> | ||
<!-- Activate minimal type propagation only --> | ||
<property> | ||
<name>fastdds.type_propagation</name> | ||
<value>minimal_bandwidth</value> | ||
</property> | ||
</properties> | ||
</propertiesPolicy> | ||
</rtps> | ||
</participant> | ||
<data_writer profile_name="xtypes_datawriter_profile" is_default_profile="true"> | ||
<qos> | ||
<durability> | ||
<kind>TRANSIENT_LOCAL</kind> | ||
</durability> | ||
<reliability> | ||
<kind>RELIABLE</kind> | ||
</reliability> | ||
</qos> | ||
<topic> | ||
<historyQos> | ||
<kind>KEEP_LAST</kind> | ||
<depth>100</depth> | ||
</historyQos> | ||
<resourceLimitsQos> | ||
<max_samples>100</max_samples> | ||
<max_instances>1</max_instances> | ||
<max_samples_per_instance>100</max_samples_per_instance> | ||
</resourceLimitsQos> | ||
</topic> | ||
</data_writer> | ||
|
||
<data_reader profile_name="xtypes_datareader_profile" is_default_profile="true"> | ||
<qos> | ||
<durability> | ||
<kind>TRANSIENT_LOCAL</kind> | ||
</durability> | ||
<reliability> | ||
<kind>RELIABLE</kind> | ||
</reliability> | ||
</qos> | ||
<topic> | ||
<historyQos> | ||
<kind>KEEP_LAST</kind> | ||
<depth>100</depth> | ||
</historyQos> | ||
<resourceLimitsQos> | ||
<max_samples>100</max_samples> | ||
<max_instances>1</max_instances> | ||
<max_samples_per_instance>100</max_samples_per_instance> | ||
</resourceLimitsQos> | ||
</topic> | ||
</data_reader> | ||
</profiles> | ||
|
||
<types> | ||
<type> | ||
<struct name="HelloWorld"> | ||
<member name="index" type="uint32"/> | ||
<member name="message" type="string"/> | ||
</struct> | ||
</type> | ||
</types> | ||
</dds> |
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.