Skip to content

The RTI Gateway is a software component that allows integrating different types of connectivity protocols with DDS. Integration in this context means that data flows from different protocols are adapted to interface with DDS, establishing communication from and to DDS.

License

Notifications You must be signed in to change notification settings

rticommunity/rticonnextdds-gateway

Repository files navigation

RTI Connext Gateway

The RTI Connext® Gateway is a software component that allows integrating different types of connectivity protocols with DDS. Integration in this context means that data flows from different protocols are adapted to interface with DDS, establishing communication from and to DDS.

RTI Connext Gateway provides an open framework based on the RTI Routing Service SDK that enables users to easily add communication protocols as needed, in addition to any other protocol implementations that may be included as part of the framework.

NOTE: A Routing Service adapter between DDS and DNP3 can be found in this repository: https://github.com/rticommunity/rticonnextdds-dnp3

Installation

RTI Connext Gateway is distributed in source format. You can clone the source repository using git:

git clone --recurse-submodule https://github.com/rticommunity/rticonnextdds-gateway.git

The --recurse-submodule option is required to clone additional third-party repositories as submodules.

If you forget to clone the repository with --recurse-submodule, simply run the following command to pull all the dependencies:

git submodule update --init --recursive

Building

Requirements:

In order to build the RTI Connext Gateway components you have to run the following command:

Linux® and macOS® systems

mkdir build
cd build
cmake .. -DCONNEXTDDS_DIR=/path/to/connextdds/installation/dir \
    -DCMAKE_INSTALL_PREFIX=../install
cmake --build . -- install

By default CMake builds debug artifacts. Debug libraries should be loaded and run with the debug version of Routing Service debug, which is located at:

$NDDSHOME/resource/app/bin/<architecture>/rtiroutingserviceappd

If you want to build them as 'release', you should add the following flag when calling CMake:

-DCMAKE_BUILD_TYPE=Release

Windows® systems

mkdir build
cd build
cmake .. -DCONNEXTDDS_DIR=/path/to/connextdds/installation/dir \
    -DCMAKE_INSTALL_PREFIX=../install \
    -DCMAKE_BUILD_TYPE=Debug|Release \
    -G <generator name>
cmake --build . --config Debug|Release --target install

The generator name comes from CMake, you can see a list of the Visual Studio® generators here: https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#id13

In case the architecture is 64 bits, we should also add -A x64. For example, the following option will generate a solution for Visual Studio 2015 64 bits:

-G "Visual Studio 14 2015" -A x64

For multi-configuration generator, such as Visual Studio solutions, we need to specify the configuration mode when building it:

--config Debug|Release

Compatibility with RTI Connext

The RTI Connext Gateway is an experimental, source-based, add-on compatible with the most recent versions of RTI Connext.

The repository will always support the most recently released version of Connext, and the most recent LTS version.

A dedicated branch will be created whenever support for an LTS version is dropped from the main development branch. These version-specific branches will receive bug fixes as long as the associated Connext version is still within its planned support window.

The following table summarizes the versions of Connext currently supported by the RTI Connext Gateway:

Connext Version Repository Branch Status
7.6.0 develop Active
7.5.0 develop EOL
7.3.0 (LTS) develop Active
6.1.2 (LTS) release/6.1.2 EOL
6.1.1 (LTS) release/6.1.1 EOL
6.0.1 (LTS) release/6.0.1 EOL

Documentation

The documentation can be found online in the following link: https://community.rti.com/static/documentation/gateway/current/index.html

Building Documentation Locally

Requirements:

  • doxygen

  • sphinx

  • graphviz: this might be required to run the dot command.

  • docutils 0.14+

  • You can used the included manifest to install all Python dependencies:

    pip install -r doc/requirements.txt

In order to build the RTI Connext Gateway documentation, you have to add the RTIGATEWAY_ENABLE_DOCS flag when calling CMake:

mkdir build
cd build
cmake .. -DCONNEXTDDS_DIR=/path/to/connextdds/installation/dir \
    -DCMAKE_INSTALL_PREFIX=../install \
    -DRTIGATEWAY_ENABLE_DOCS=ON

The documentation will be generated under the install directory. The following file contains the RTI Connext Gateway documentation:

  • <RTI Connext Gateway folder>/install/doc/index.html

Specific documentation for the plugins can be found in the section 1.4. RTI Connext Gateway Plugins.

Further information about how to customize the build can be found in the section 4. Building from source.

Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.

About

The RTI Gateway is a software component that allows integrating different types of connectivity protocols with DDS. Integration in this context means that data flows from different protocols are adapted to interface with DDS, establishing communication from and to DDS.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 7