Grand Central Dispatch like C++ threading library built around queues, thread pools and flexible backends.
Go to file
Marius Zwicker eaae52d20e
Fix building tests without Qt
The dummy target is only available when Qt is enabled so
guard it accordingly.
2024-05-07 07:25:04 +02:00
.gitea/workflows ci: Fix build issues 2023-11-26 18:51:56 +01:00
build@f44b45b2f0 build: Bump submodule 2024-05-03 20:39:08 +00:00
include/xdispatch Fix formatting 2024-04-19 06:57:35 +02:00
src libdispatch: Define NSEC_PER_MSEC if missing 2024-05-07 07:20:26 +02:00
test_package ci: Fix build issues 2023-11-26 18:51:56 +01:00
tests Fix formatting 2024-04-19 06:57:35 +02:00
.clang-format Bump clang-tools-extra to v15 2023-11-26 16:26:55 +01:00
.clang-tidy Replace uses of "new" with "make_unique" 2024-02-22 20:47:05 +01:00
.gitignore conan: Adapt to modern conanfile 2023-11-26 16:36:06 +01:00
.gitmodules 3rdparty: Switch to using conan 2022-08-12 17:18:14 +02:00
.license-tools-config.json Add README preparing for publish 2022-06-20 22:28:57 +02:00
.pre-commit-config.yaml Bump license-tools 2024-02-17 09:46:08 +01:00
CMakeLists.txt Fix building tests without Qt 2024-05-07 07:25:04 +02:00
conanfile.py conan: Optionally use libdispatch on Linux 2024-02-18 18:13:06 +01:00
config.h.in Implement fallback for SYS_gettid on macOS 2024-04-19 06:57:39 +02:00
LICENSE Add README preparing for publish 2022-06-20 22:28:57 +02:00
README.md README: Explain optional use of Conan 2024-05-03 20:39:27 +00:00
xdispatch2.sublime-project Initial project structure 2020-06-19 20:44:21 +02:00

xdispatch2

This is the successor to the original xdispatch project.

Table of Contents

Background

A bit on history

I started the original xdispatch project back in 2011 with an attempt to bring the then new concept of Grand Central Dispatch to more platforms than just iOS and macOS.

The project aimed to provide three deliverables:

  1. Porting the original libdispatch to Linux and Win32 by using as much of the original code as possible which also implied using ported versions of the libkqueue and libpthread_workqueue interfaces used by libdispatch originally.
  2. Offering an object oriented C++ interface to allow use of lambda functions which only started to get supported back then as a result of the new C++11 standard. This was in order to offer a cross platform alternative to the blocks feature added by Apple to their clang compiler.
  3. Providing a wrapper which tried to fit naturally into other Qt components like QtConcurrent.

These goals were accomplished with the latest feature version 0.7.2 published in January 2013 and development focusing on maintenance and bug fixes ever since.

Back to present

Dial forward to June 2020 when I had gathered several lessons learned from using xdispatch in multiple projects from little university projects to full media servers sold on the app store:

  1. The concept of queues really makes things easier not only for scaling on multiple cores but also for efficient serialization of acccess to resources like an OpenGL render context.

  2. A lot of systems still have thread affinities assuming that certain tasks will always run on the same threads (again such as OpenGL render contexts).

The latter does not fit very well with a concept using a thread pool. Pooling of threads implies there must never be any assumptions on thread affinities.

This is when the idea of xdispatch v2 was born. It would continue to maintain close compatibility with the original xdispatch v1 C++ interface. However instead of trying to chase porting the latest features of the original libdispatch (and hence depending on faking Darwin specific interfaces) it would focus on providing a consistent interface for different thread pool concepts available on the respective platforms and programming environment.

This resulted in setting up the following rules:

  1. The xdipsatch2 core featureset must not depend on anything but a C++11 compliant compiler and STL.
  2. The entire interface is abstracted such that serial or parallel queues as well as timers and notifiers can be implemented by different backends all while maintaining feature consistency and allowing to mix xdispatch objects powered by different backends as required.
  3. Support a minimal, self hosted "naive" implementation as feature reference which might be less efficient but can always be supported within the limits set up in rule 1.

All further decisions are based on these rules. Backends need to implement the xdispatch::ibackend interface when they want to provide the full feature set on their own or may alternatively hook into the xdispatch::naive::ithread and xdispatch::naive::ithread_pool interfaces to augment the naive implementation with more efficient threading primitives.

Backends

The following backends have been implemented so far:

Backend Wrapped Library Conditions
naive std::thread Always available
dispatch libdispatch dispatch.h header and interface found when building xdispatch2
qt Qt5 Qt5 found when building xdispatch2

Benchmarks

Numbers have been collected on an AMD Ryzen 3900x 12 core processor. They try to quantify the overhead induced by enqueuing and executing preallocated xdispatch::operation objects. The operation is dispatched 100 000 times using the respective primitive. Times describe the overhead for a single invocation. Sources can be found in tests/cxx_benchmark.cpp.

Backend Serial Queue Parallel Queue Group
naive 187 nsec 295 nsec 644 nsec
dispatch 585 nsec 448 nsec 780 nsec
qt 544 nsec 411 nsec 693 nsec

Usage

xdispatch2 is provided as conan v1 package through the registry at https://mirrors.emzeat.de.

Simply add this as a remote and install the package including all dependencies:

conan remote add emzeat https://codeberg.org/api/packages/emzeat/conan/
conan install --build=missing xdispatch/2.1.3@emzeat/oss

Available options to configure enabled backends can be found by looking at the conanfile.py. Refer to the conan documentation for further details on consuming the package in your project.

Building from source

As in v1 CMake is used as the build system wrapped with my mz-cmaketools for convenience. These get pulled as git submodule so make sure to run git submodule update --init before trying to build.

Make sure you have cmake, g++ and ninja installed and available in your path. Use cmake to configure and build the project:

mkdir build/release
cd build/release
cmake -G Ninja -D CMAKE_BUILD_TYPE=Release -S ../.. -B .
cmake --build .

In case you want to use Conan 1.x available in your path to pull dependencies run as:

MZ_USE_CONAN=true cmake -G Ninja -D CMAKE_BUILD_TYPE=Release -S ../.. -B .
cmake --build .

The resulting binaries can be found in the bin directory of the build folder created above. You simply need to pull the include directory in your compiler's include path and link the xdispatch library with your program.

Example

A (very) minimal example might look like this:

#include <xdispatch/dispatch>
#include <iostream>

int main(int, char**)
{
    xdispatch::global_queue().async([]
    {
        std::cout << "PING" << std::endl;

        xdispatch::main_queue().async([]{
            std::cout << "PONG" << std::endl;
            exit(0);
        });
    });

    xdispatch::exec();
    return 0;
}

Have a look at the implemented tests for more elaborated examples.

Contributing

We welcome any contributions.

We use GitHub to handle bug reports, feature requests and questions - please use "issues" for any of these. Code changes and documentation improvements get handled via pull requests.

In order to foster open exchange, all communication should happen using the English language.

Any changes to this repository get done via GitHub's standard workflow. See GitHub's First Contributions document for an introduction.

Acknowledgements

See the list of contributors generated by Github.

License

This project is licensed under the Apache 2.0 License.