Simplx is a C++ development framework for building reliable cache-friendly distributed and concurrent multicore software.
Simplx was developed by Tredzone SAS. We provide software technology solutions and services dedicated to high-performance real-time processing. Our technology enables low and predictable latency, scalability, and high throughput. We also offer support contracts and enterprise tools for monitoring, profiling, debugging, server clustering under commercial licenses.
Simplx is used at the Paris stock exchange by Euronext's market exchange platform, called "Optiq", and has been successfully deployed since November 2016.
Tredzone was founded in 2013 and operates in France, the UK and US.
This code has been built and unit-tested on Linux with:
- Linux kernel 2.6+
- g++ versions 4.9.4, 5.5, 6.4, 7.3 and 8.2
- clang++ 3.9.1 and 4.0 with the libstdc++ runtime
It requires either C++ 11, 14 or 17 and the pthreads library. Support for Windows/VisualC++ will be announced soon.
Simplx is open-sourced under the Apache 2.0 license, please see the accompanying License.
About a dozen tutorials are included here, please see the Tutorials README.
To build the first tutorial, open a terminal at the root of the repository and type:
cd tutorials/01_hello_actor
mkdir build && cd build
cmake ..
make -j8
To build and run the unit tests, which depend on the Google Test submodule, open a terminal at the root of the repository and type:
git submodule update --init thirdparty/googletest
cd test/engine
mkdir tbuild && cd tbuild
cmake ..
make -j8
to then run the unit tests type:
make test
There's a Bash that'll compile the tutorials and run the unit tests under all above-mentionned versions of gcc and clang under Docker:
./test/docker_test.sh
If a compilation or unit test failure occurs, the script will stop and report the error.
The 1st run takes a while to download the Docker images, as per usual with Docker.
To generate the documentation, open a terminal at the repository root and type
doxygen doc/Doxyfile
If you have a commercial enterprise license with us, including appropriate github access credentials, you may fetch those components with:
git submodule update --init enterprise
for compilation you should also #define the following:
TREDZONE_ENTREPRISE
At the root of the repository and type:
git submodule update --init thirdparty/googletest
mkdir tbuild && cd tbuild
cmake -DENTERPRISE=1 -DBUILD_TEST=1 ..
make -j8
make test
To run the unit tests under Docker:
./test/docker_test.sh -DENTERPRISE=1