Skip to content

zenoh client library written in C and targeting micro-controllers

License

Notifications You must be signed in to change notification settings

ZettaScaleLabs/zenoh-c

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI Documentation Status Discussion Discord License License

Eclipse Zenoh

The Eclipse Zenoh: Zero Overhead Pub/sub, Store/Query and Compute.

Zenoh (pronounce /zeno/) unifies data in motion, data at rest and computations. It carefully blends traditional pub/sub with geo-distributed storages, queries and computations, while retaining a level of time and space efficiency that is well beyond any of the mainstream stacks.

Check the website zenoh.io and the roadmap for more detailed information.


C API

This repository provides a C binding based on the main Zenoh implementation written in Rust.


How to build it

⚠️ WARNING ⚠️ : Zenoh and its ecosystem are under active development. When you build from git, make sure you also build from git any other Zenoh repository you plan to use (e.g. binding, plugin, backend, etc.). It may happen that some changes in git are not compatible with the most recent packaged Zenoh release (e.g. deb, docker, pip). We put particular effort in maintaining compatibility between the various git repositories in the Zenoh project.

  1. Make sure that Rust is available on your platform. Please check here to learn how to install it. If you already have the Rust toolchain installed, make sure it is up-to-date with:

    rustup update
  2. Clone the source with git:

    git clone https://github.com/eclipse-zenoh/zenoh-c.git
  3. Build:

    Good CMake practice is to perform build outside of source directory, leaving source tree untouched. The examples below demonstrates this mode of building. On the other hand VScode by default creates build directory named 'build' inside source tree. In this case build script slightly changes its behavior. See more about it in section 'VScode'.

    By default build configuration is set to Release, it's not necessary to add -DCMAKE_BUILD_TYPE=Release option on configuration step. But if your platform uses multi-config generator by default (this is the case on Windows), you may need to add option --config Release on build step. See more in CMake build-configurations documentation. Option--config Release is skipped in further examples for brewity. It's actually necessary for Visual Studio generators only. For Ninja Multi-Config the build script is able to select Release as the default configuration.

    mkdir -p build && cd build 
    cmake ../zenoh-c
    cmake --build . --config Release

    The generator to use is selected with option -G. If Ninja is installed on your system, adding -GNinja to cmake command can greatly speed up the build time:

    cmake ../zenoh-c -GNinja
    cmake --build .

    Unstable api and/or shared memory support can be enabled by setting repectively ZENOHC_BUILD_WITH_UNSTABLE_API and ZENOHC_BUILD_WITH_SHARED_MEMORY Cmake flags to true during configuration step.

    cmake -DZENOHC_BUILD_WITH_UNSTABLE_API=true -DZENOHC_BUILD_WITH_SHARED_MEMORY=true ../zenoh-c
    cmake --build . --config Release
  4. Install:

    To install zenoh-c library into system just build target install. You need root privileges to do it, as the default install location is /usr/local.

    cmake --build . --target install

    If you want to install zenoh-c libraries locally, you can set the installation directory with CMAKE_INSTALL_PREFIX

    cmake ../zenoh-c -DCMAKE_INSTALL_PREFIX=~/.local
    cmake --build . --target install

    By default only dynamic library is built and installed. Set BUILD_SHARED_LIBS variable to false to build and install static library:

    cmake ../zenoh-c -DCMAKE_INSTALL_PREFIX=~/.local -DBUILD_SHARED_LIBS=FALSE
    cmake --build . --target install

    The result of installation is the header files in include directory, the library files in lib directory and cmake package configuration files for package zenohc in lib/cmake directory. The library later can be loaded with CMake command find_package(zenohc). Add dependency in CMakeLists.txt on target

    • zenohc::shared for linking dynamic library
    • zenohc::static for linking static library
    • zenohc::lib for linking static or dynamic library depending on boolean variable BUILD_SHARED_LIBS

    For Debug configuration suffix d is added to names of library files (libzenohcd.so).

  5. VScode

    When zenoh-c project is opened in VSCode the build directory is set to build inside source tree (this is default behavior of Microsoft CMake Tools). The project build script detects this situation. In this case it places build files in target directory and Cargo.toml file (which is generated from Cargo.toml.in) into the root of source tree, as the rust developers used to and as the rust build tools expects by default. This behavior also can be explicitly enabled by setting ZENOHC_BUILD_IN_SOURCE_TREE variable to TRUE.

Building the Examples

The examples can be built in two ways. One is to select examples as a build target of zenoh-c project (assuming here that the current directory is side-by-side with zenoh-c directory):

cmake ../zenoh-c
cmake --build . --target examples

You may also use --target <example_name> if you wish to only build a specific example.

All build artifacts will be in the target/release/examples directory in this case.

The second way is to directly build examples as a root project:

cmake ../zenoh-c/examples
cmake --build .

In this case, the examples executables will be built in the current directory.

As a root project the examples project links zenoh-c with CMake's add_subdirectory command by default. There are also other ways to link zenoh-c - with find_package or FetchContent:

Link with zenoh-c installed into default location in the system (with find_package):

cmake ../zenoh-c/examples -DZENOHC_SOURCE=PACKAGE

Link with zenoh-c installed in ~/.local directory:

cmake ../zenoh-c/examples -DZENOHC_SOURCE=PACKAGE -DCMAKE_INSTALL_PREFIX=~/.local

Download specific zenoh-c version from git with FetchContent:

cmake ../zenoh-c/examples -DZENOHC_SOURCE=GIT_URL -DZENOHC_GIT_TAG=0.11.0-rc

See also configure_include_project function in helpers.cmake for more information

Running the Examples

Basic Pub/Sub Example

./target/release/examples/z_sub
./target/release/examples/z_pub

Queryable and Query Example

./target/release/examples/z_queryable
./target/release/examples/z_get

Running the Throughput Examples

./target/release/examples/z_sub_thr
./target/release/examples/z_pub_thr

Documentation

Zenoh-c API documentation is available on Read the Docs.

It can be built manually by performing the following steps:

cd docs
doxygen
sphinx-build -b html . _build/html

Cross-Compilation

The following alternative options have been introduced to facilitate cross-compilation.

⚠️ WARNING ⚠️ : Perhaps additional efforts are necessary, that will depend of your environment.

  • -DZENOHC_CARGO_CHANNEL="+nightly"|"+beta"|"+stable": refers to a specific rust toolchain release [rust-channels]
  • -DZENOHC_CARGO_FLAGS: several optional flags can be used for compilation. [cargo flags]
  • -DZENOHC_CUSTOM_TARGET: specifies a crosscompilation target. Currently rust support several Tire-1, Tire-2 and Tire-3 targets [targets]. But keep in mind that zenoh-c only have support for following targets: aarch64-unknown-linux-gnu, x86_64-unknown-linux-gnu, arm-unknown-linux-gnueabi

Let's put all together in an example: Assuming you want to crosscompile for aarch64-unknown-linux-gnu.

  1. Install required packages

    • sudo apt install gcc-aarch64-linux-gnu
  2. *(Only if you're using nightly)

    • rustup component add rust-src --toolchain nightly
  3. Compile Zenoh-C. Assume that it's in zenoh-c directory. Notice that build in this sample is performed outside of source directory

    export RUSTFLAGS="-Clinker=aarch64-linux-gnu-gcc -Car=aarch64-linux-gnu-ar"
    mkdir -p build && cd build
    cmake ../zenoh-c  -DZENOHC_CARGO_CHANNEL="+nightly" -DZENOHC_CARGO_FLAGS="-Zbuild-std=std,panic_abort" -DZENOHC_CUSTOM_TARGET="aarch64-unknown-linux-gnu" -DCMAKE_INSTALL_PREFIX=../aarch64/stage
    cmake --build . --target install

Additionally you can use RUSTFLAGS environment variable for lead the compilation.

If all goes right the building files will be located at: /path/to/zenoh-c/target/aarch64-unknown-linux-gnu/release and release files will be located at /path/to/zenoh-c/target/aarch64-unknown-linux-gnu/release

Rust Version

The Rust version we use is defined in rust-toolchain.toml, which is 1.72.0. There might be some memory mapping issue if you use the later version.

You can also specify the Rust version.

cmake ../zenoh-c -DZENOHC_CARGO_CHANNEL="+1.72.0"

Zenoh features support (enabling/disabling protocols, etc)

It's necessary sometimes to build zenoh-c library with set of features different from default. For example: enable TCP and UDP only. This can be done by changing ZENOHC_CARGO_FLAGS parameter for cmake (notice ";" instead of space due to cmake peculiarities)

Available features can be found in Cargo.toml

cmake ../zenoh-c -DZENOHC_CARGO_FLAGS="--no-default-features;--features=transport_tcp,transport_udp"

Versioning

Being a CMake project, zenoh-c is limited to the MAJOR.MINOR.PATCH.TWEAK version scheme inherent to CMake. However, zenoh-c also incorporates a Cargo package which cannot be versionned with the MAJOR.MINOR.PATCH.TWEAK version scheme (not SemVer compatible). Hence zenoh-c uses a one-to-one mapping between CMake versions and SemVer versions:

CMake version SemVer equivalent Meaning
1.2.3 1.2.3 Release version
1.2.3.0 1.2.3-dev Developement version
1.2.3.x if x >= 1 1.2.3-pre.x Pre-release version

About

zenoh client library written in C and targeting micro-controllers

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 53.0%
  • C 42.6%
  • CMake 4.0%
  • Shell 0.4%