aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/thread.h
blob: 33f154d5075933fcc8f3e9a21a20ad8ed3b29dba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "runnable.h"
#include <thread>
#include <concepts>

namespace vespalib {

namespace thread {
[[nodiscard]] std::thread start(Runnable &runnable, Runnable::init_fun_t init_fun);
size_t as_zu(std::thread::id id);
}

/**
 * Keeps track of multiple running threads. Calling join will join all
 * currently running threads. All threads must be joined before
 * destructing the pool itself. This class is not thread safe.
 **/
class ThreadPool {
private:
    std::vector<std::thread> _threads;
public:
    ThreadPool() noexcept : _threads() {}
    void start(Runnable &runnable, Runnable::init_fun_t init_fun) {
        reserve(size() + 1);
        _threads.push_back(thread::start(runnable, std::move(init_fun)));
    }
    template<typename F, typename... Args>
    requires std::invocable<F,Args...>
    void start(F &&f, Args && ... args) {
        reserve(size() + 1);
        _threads.emplace_back(std::forward<F>(f), std::forward<Args>(args)...);
    };
    void reserve(size_t capacity) { _threads.reserve(capacity); }
    size_t size() const { return _threads.size(); }
    bool empty() const { return _threads.empty(); }
    void join() {
        for (auto &thread: _threads) {
            thread.join();
        }
        _threads.clear();
    }
};

}