Introduction

This is the documentation for Eclipse Cyclone DDS Python, wrapping the Eclipse Cyclone DDS C-API for easy creation of DDS applications.

Prerequisites

CycloneDDS Python requires Python version 3.7 or higher, with 3.11 support provisional. The wheels on PyPi contain a pre-built binary of the CycloneDDS C library and IDL compiler. These have a couple of caveats. The pre-built package:

  • has no support for DDS Security,

  • has no support for shared memory via Iceoryx,

  • comes with generic Cyclone DDS binaries that are not optimized per-platform.

If you need these features or cannot use the binaries for other reasons you can install the Cyclone DDS Python library from source. You will need to set the environment variable CYCLONEDDS_HOME to allow the installer to locate the CycloneDDS C library if it is on a non-standard path. At runtime we leverage several mechanisms to locate the library that are appropriate for the platform. If you get an exception about non-locatable libraries or wish to manage multiple CycloneDDS installations you can use the environment variable CYCLONEDDS_HOME to override the load location.

Installation

Simply install with pip from PyPi.

pip install cyclonedds

You can install from the github link directly:

CYCLONEDDS_HOME="/path/to/cyclonedds" pip install git+https://github.com/eclipse-cyclonedds/cyclonedds-python

If you wish to run the testsuite or build the documentation you will need additional dependencies. These can be installed by means of Python installation optional components:

git clone https://github.com/eclipse-cyclonedds/cyclonedds-python
cd cyclonedds-python

# Testsuite:
pip install .[dev]
pytest

# Documentation
pip install .[docs]
cd docs
sphinx-build ./source ./build
python -m http.server --directory build

If you get permission errors you are using your system python. This is not recommended, we recommend using a virtual environment, poetry, pipenv or pyenv. If you just want to get going, you can add --user to your pip command to install for the current user. See the Installing Python Modules documentation.

Your first Python DDS application

Let’s make our entry into the world of DDS by making our presence known. We will not worry about configuration or what DDS does under the hood but just write a single message. To publish anything to DDS we need to define the type of message first. If you are worried about talking to other applications that are not necessarily running Python you would use the CycloneDDS IDL compiler, but for now we will just manually define our message type directly in Python using the cyclonedds.idl tools:

 1from dataclasses import dataclass
 2from cyclonedds.idl import IdlStruct
 3
 4@dataclass
 5class Message(IdlStruct):
 6    text: str
 7
 8
 9name = input("What is your name? ")
10message = Message(text=f"{name} has started his first DDS Python application!")

With cyclonedds.idl we write typed classes with the standard library module dataclasses <python:dataclasses>. For this simple application we just put in a piece of text, but this system has the same expressive power as the OMG IDL specification, allowing you to use almost any complex datastructure you can think of.

Now to send our message over DDS we need to perform a few steps: * Join the DDS network using a DomainParticipant * Define which datatype and under what name we will publish our message as a Topic * Make the DataWriter that publishes that Topic * And finally publish the message.

1from cyclonedds.domain import DomainParticipant
2from cyclonedds.topic import Topic
3from cyclonedds.pub import DataWriter
4
5participant = DomainParticipant()
6topic = Topic(participant, "Announcements", Message)
7writer = DataWriter(participant, topic)
8
9writer.write(message)

Hurray, we have published are first message! However, it is hard to tell if that actually did anything, since we don’t have anything set up that is listening. Let’s make a second script that takes messages from DDS and prints them to the terminal:

 1from dataclasses import dataclass
 2from cyclonedds.domain import DomainParticipant
 3from cyclonedds.topic import Topic
 4from cyclonedds.sub import DataReader
 5from cyclonedds.util import duration
 6from cyclonedds.idl import IdlStruct
 7
 8@dataclass
 9class Message(IdlStruct):
10    text: str
11
12participant = DomainParticipant()
13topic = Topic(participant, "Announcements", Message)
14reader = DataReader(participant, topic)
15
16# If we don't receive a single announcement for five minutes we want the script to exit.
17for msg in reader.take_iter(timeout=duration(minutes=5)):
18    print(msg.text)

Now with this script running in a secondary terminal you should see the message pop up when you run the first script again.