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
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.gitThe --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 --recursiveRequirements:
- Connext DDS 7.3.0 or newer
- See below for more details on version compatibility.
- cmake 3.10+
- Python 3.8+ (only required to run tests).
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 . -- installBy 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>/rtiroutingserviceappdIf you want to build them as 'release', you should add the following flag when calling CMake:
-DCMAKE_BUILD_TYPE=ReleaseWindows® 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 installThe 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 x64For multi-configuration generator, such as Visual Studio solutions, we need to specify the configuration mode when building it:
--config Debug|ReleaseThe 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 |
The documentation can be found online in the following link: https://community.rti.com/static/documentation/gateway/current/index.html
Requirements:
-
graphviz: this might be required to run the
dotcommand. -
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=ONThe 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.