Move interprocess examples to zeromq subdirectory and add UDPM basic publisher/subscriber examples#34
Merged
tsaubergine merged 4 commits intomainfrom Apr 8, 2026
Conversation
…/sub examples Agent-Logs-Url: https://github.com/GobySoft/goby3-examples/sessions/f9aac7d3-f8c6-4f6a-8265-e5d34be82ba2 Co-authored-by: tsaubergine <732276+tsaubergine@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
tsaubergine
April 8, 2026 05:22
View session
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR reorganizes the interprocess examples and adds new UDP Multicast (UDPM) transport examples.
Changes
Reorganization:
src/interprocess/tosrc/interprocess/zeromq/(basic_publisher, basic_subscriber, gps_driver, hold, json, log_control, mavlink, state_machine)launch/interprocess/tolaunch/interprocess/zeromq/CMakeLists.txtdeployment figure paths accordinglyNew UDPM Examples:
src/interprocess/udpm/basic_publisher/— equivalent to the zeromq basic publisher but usesgoby::udpm::SingleThreadApplication(no centralgobyddaemon needed)src/interprocess/udpm/basic_subscriber/— equivalent to the zeromq basic subscriberlaunch/interprocess/udpm/basic_publisher_subscriber.launch— nogobydentry needed for UDPMlaunch/interprocess/udpm/basic_publisher_subscriber_deployment.ymlCMake:
src/interprocess/CMakeLists.txtalways builds thezeromqsubdirectory and conditionally buildsudpmifgoby/udpm/protobuf/interprocess_config.protois found (requires goby >= 3.3.1+49 with UDPM transport merged)Documentation:
README.mdto document both the zeromq and udpm basic pub/sub examples with updated pathsNotes
The UDPM examples require the goby3 UDPM transport headers (merged into goby3 master at commit
0cbdf6f0on 2026-03-25). The build will emit a cmake warning and skip the udpm examples if these headers are not yet available in the installedlibgoby3-devpackage; the CI usesdist-upgradefrom the continuous PPA which will pick up the new package once it's built.