Desktop application to log and visualize data received from data acquisition systems in form of stream of Google Protocol Buffer Messages. The currently supported stream format is size-id-data. The project aims to provide logging and visualization solution for data acquisition systems with very high data rate.
- Windows x64
- GNU/Linux x64
logpb can be distributed under LGPL v3.0 license.
The project uses Qt 6.3.2 framework. However, non-GUI part of the project does not depend on it.
The Protobuf 3.21.12 is built from source as part of the project. The application is tightly coupled with the Protobuf. For examples, everywhere in the project, for the file IOs Protobuf's FileInputStream, and FileOutputStream are used.
The project uses Qwt to generate plots. The Qwt 6.2.0 is also built from source as part of the project. It currently doesn't support CMake, and hence this patch of Qwt 6.2.0 is used instead.
- Qt 6.3.2 for GCC x64
- Qt 6.3.2 for MSVC-2019 x64
The Project uses GCC on GNU/Linux, and MSVC-2019 on Windows. MinGW support for Windows is currently not considered.
The project uses CMake build system and Conan package manager. Create a build directory, run Conan, generate build files using CMake, and build the project.
mkdir build-dir
cd build-dir
conan install ..
cmake -S .. . -DCMAKE_BUILD_TYPE=Debug -DPROJECT_BUILD_TESTS=True -G Ninja
ninja