Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[21357] Remove TopicAttributes from public APIs and make it private in xmlparser #5085

Merged
merged 37 commits into from
Jul 30, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fd98df9
Refs #21357: Make TopicAttributes private and move to namespace
Mario-DL Jul 18, 2024
15bc0b8
Refs #21357: Relay TopicAttributes references to xmlparser namespace
Mario-DL Jul 18, 2024
7a9479e
Refs #21357: Remove TopicAttributes references in DDS layer headers
Mario-DL Jul 18, 2024
33f2d5c
Refs #21357: Remove TopicAttributes from RTPSDomain and weak forward …
Mario-DL Jul 18, 2024
c69b36e
Refs #21357: Include PublicationBuiltinTopicData in RTPS and refactor…
Mario-DL Jul 18, 2024
024fa61
Refs #21357: Include SubscriptionBuiltinTopicData in RTPS and refacto…
Mario-DL Jul 18, 2024
39b571f
Refs #21357: Move BuiltinTopicKeyValue conversion helpers to utils (…
Mario-DL Jul 18, 2024
3f30adb
Refs #21357: Add utility method to LocatorList
Mario-DL Jul 18, 2024
468e988
Refs #21357: Remove TopicAttributes from DataWriterHistory
Mario-DL Jul 18, 2024
01de9df
Refs #21357: Add new get_publication_builtin_topic_data() to DataWriter
Mario-DL Jul 18, 2024
5a5fbfe
Refs #21357: Add new get_subscription_builtin_topic_data() to DataReader
Mario-DL Jul 18, 2024
77b504a
Refs #21357: Refactor Data*Impl
Mario-DL Jul 18, 2024
941a12e
Refs #21357: Add some mock methods and remove RTPS unittest
Mario-DL Jul 18, 2024
d5a526e
Refs #21357: Improve discovery server example test resilience
Mario-DL Jul 18, 2024
29225c1
Refs #21357: Linter
Mario-DL Jul 18, 2024
42c1bcc
Refs #21357: Update RTPS example
Mario-DL Jul 23, 2024
d4901d7
Refs #21357. Remove ReaderQos from register_reader.
MiguelCompany Jul 24, 2024
61ae807
Refs #21357. Remove WriterQos from register_writer.
MiguelCompany Jul 24, 2024
5312311
Refs #21357. Refactor get_subscription_builtin_topic_data.
MiguelCompany Jul 26, 2024
5a40246
Refs #21357. Refactor get_publication_builtin_topic_data.
MiguelCompany Jul 26, 2024
d10d4cf
Refs #21357. Fix calculation of persistence_guid.
MiguelCompany Jul 26, 2024
3498efd
Refs #21357. Builtin key conversion method not inline.
MiguelCompany Jul 26, 2024
975f77c
Refs #21357. Fix doxygen on DataWriterHistory.
MiguelCompany Jul 26, 2024
52bc3eb
Refs #21357. Refactor MonitorService.
MiguelCompany Jul 26, 2024
9dad7e0
Refs #21357. Uncrustify.
MiguelCompany Jul 26, 2024
8f7713c
Refs #21357. Fix default initialization of builtin data structures.
MiguelCompany Jul 26, 2024
ccb0c0b
Refs #21357. Fix blackbox tests.
MiguelCompany Jul 26, 2024
947cca4
Refs #21357. Uncrustify.
MiguelCompany Jul 26, 2024
8d1997b
Refs #21357. Improve `from_builtin_to_proxy`.
MiguelCompany Jul 28, 2024
fbdd68b
Refs #21357. Add `fill_type_information` to DomainParticipantImpl.
MiguelCompany Jul 29, 2024
9131e24
Refs #21357. Refactor `register_writer` again.
MiguelCompany Jul 29, 2024
7b349e4
Refs #21357. Refactor `register_reader` again.
MiguelCompany Jul 29, 2024
ab475b4
Refs #21357. Fix blackbox build.
MiguelCompany Jul 29, 2024
4c3d06e
Refs #21357. Fix content filter topic name.
MiguelCompany Jul 29, 2024
dfbfd8a
Refs #21357. Uncrustify.
MiguelCompany Jul 29, 2024
d99f997
Refs #21357. Update `versions.md`.
MiguelCompany Jul 30, 2024
3a8a5a8
Refs #21357. Apply suggestions on `versions.md`.
MiguelCompany Jul 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Forthcoming
* Several methods that were meant for internal use have been removed from public API
* All public methods now have `snake_case` names
* All public attributes now have `snake_case` names
* RTPSParticipant:
Mario-DL marked this conversation as resolved.
Show resolved Hide resolved
* Some methods changed to `snake_case`: `register_reader`, `register_writer`, `update_reader`, `update_writer`.
* Register methods take a `TopicDescription` instead of `TopicAttributes`.
MiguelCompany marked this conversation as resolved.
Show resolved Hide resolved
* Discovery callbacks refactor:
* on_participant_discovery now receives a `ParticipantDiscoveryStatus` and a `ParticipantBuiltinTopicData` instead of a `ParticipantDiscoveryInfo`
* on_data_reader_discovery now receives a `ReaderDiscoveryStatus` and a `SubscriptionBuiltinTopicData` instead of a `ReaderDiscoveryInfo`
Expand All @@ -33,6 +36,7 @@ Forthcoming
* RequesterAttributes
* PublisherAttributes
* SubscriberAttributes
* TopicAttributes
* All discovery implementation related API
* ProxyPool
* Semaphore
Expand Down