2016-03-29 15:29:50 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "sync.hh"
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
#include <queue>
|
|
|
|
#include <functional>
|
|
|
|
#include <thread>
|
2016-04-22 21:50:06 +03:00
|
|
|
#include <map>
|
2017-09-08 16:31:24 +03:00
|
|
|
#include <atomic>
|
2016-03-29 15:29:50 +03:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-11-10 18:14:26 +02:00
|
|
|
MakeError(ThreadPoolShutDown, Error);
|
2016-07-21 19:14:16 +03:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* A simple thread pool that executes a queue of work items
|
|
|
|
* (lambdas).
|
|
|
|
*/
|
2016-03-29 15:29:50 +03:00
|
|
|
class ThreadPool
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-04-22 19:19:17 +03:00
|
|
|
ThreadPool(size_t maxThreads = 0);
|
|
|
|
|
|
|
|
~ThreadPool();
|
2016-03-29 15:29:50 +03:00
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* An individual work item.
|
|
|
|
*
|
|
|
|
* \todo use std::packaged_task?
|
|
|
|
*/
|
2016-03-29 15:29:50 +03:00
|
|
|
typedef std::function<void()> work_t;
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Enqueue a function to be executed by the thread pool.
|
|
|
|
*/
|
2016-03-29 15:29:50 +03:00
|
|
|
void enqueue(const work_t & t);
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Execute work items until the queue is empty.
|
|
|
|
*
|
|
|
|
* \note Note that work items are allowed to add new items to the
|
|
|
|
* queue; this is handled correctly.
|
|
|
|
*
|
|
|
|
* Queue processing stops prematurely if any work item throws an
|
|
|
|
* exception. This exception is propagated to the calling thread. If
|
|
|
|
* multiple work items throw an exception concurrently, only one
|
|
|
|
* item is propagated; the others are printed on stderr and
|
|
|
|
* otherwise ignored.
|
|
|
|
*/
|
2016-03-29 15:29:50 +03:00
|
|
|
void process();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-04-22 19:19:17 +03:00
|
|
|
size_t maxThreads;
|
2016-03-29 15:29:50 +03:00
|
|
|
|
|
|
|
struct State
|
|
|
|
{
|
2017-10-09 16:07:07 +03:00
|
|
|
std::queue<work_t> pending;
|
2017-09-08 15:40:27 +03:00
|
|
|
size_t active = 0;
|
2016-03-29 15:29:50 +03:00
|
|
|
std::exception_ptr exception;
|
2016-04-22 19:19:17 +03:00
|
|
|
std::vector<std::thread> workers;
|
2017-10-09 16:07:07 +03:00
|
|
|
bool draining = false;
|
2016-03-29 15:29:50 +03:00
|
|
|
};
|
|
|
|
|
2017-09-08 16:31:24 +03:00
|
|
|
std::atomic_bool quit{false};
|
|
|
|
|
2016-04-22 19:19:17 +03:00
|
|
|
Sync<State> state_;
|
2016-03-29 15:29:50 +03:00
|
|
|
|
2017-10-09 16:07:07 +03:00
|
|
|
std::condition_variable work;
|
2016-03-29 15:29:50 +03:00
|
|
|
|
2017-10-09 16:07:07 +03:00
|
|
|
void doWork(bool mainThread);
|
|
|
|
|
|
|
|
void shutdown();
|
2016-03-29 15:29:50 +03:00
|
|
|
};
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
|
|
|
* Process in parallel a set of items of type T that have a partial
|
|
|
|
* ordering between them. Thus, any item is only processed after all
|
|
|
|
* its dependencies have been processed.
|
|
|
|
*/
|
2016-04-22 21:50:06 +03:00
|
|
|
template<typename T>
|
|
|
|
void processGraph(
|
|
|
|
ThreadPool & pool,
|
|
|
|
const std::set<T> & nodes,
|
|
|
|
std::function<std::set<T>(const T &)> getEdges,
|
|
|
|
std::function<void(const T &)> processNode)
|
|
|
|
{
|
|
|
|
struct Graph {
|
|
|
|
std::set<T> left;
|
|
|
|
std::map<T, std::set<T>> refs, rrefs;
|
|
|
|
};
|
|
|
|
|
2017-06-28 17:38:02 +03:00
|
|
|
Sync<Graph> graph_(Graph{nodes, {}, {}});
|
2016-04-22 21:50:06 +03:00
|
|
|
|
2017-06-28 17:38:02 +03:00
|
|
|
std::function<void(const T &)> worker;
|
|
|
|
|
|
|
|
worker = [&](const T & node) {
|
|
|
|
|
|
|
|
{
|
|
|
|
auto graph(graph_.lock());
|
|
|
|
auto i = graph->refs.find(node);
|
|
|
|
if (i == graph->refs.end())
|
|
|
|
goto getRefs;
|
|
|
|
goto doWork;
|
|
|
|
}
|
|
|
|
|
|
|
|
getRefs:
|
|
|
|
{
|
|
|
|
auto refs = getEdges(node);
|
|
|
|
refs.erase(node);
|
|
|
|
|
|
|
|
{
|
|
|
|
auto graph(graph_.lock());
|
|
|
|
for (auto & ref : refs)
|
|
|
|
if (graph->left.count(ref)) {
|
|
|
|
graph->refs[node].insert(ref);
|
|
|
|
graph->rrefs[ref].insert(node);
|
|
|
|
}
|
|
|
|
if (graph->refs[node].empty())
|
|
|
|
goto doWork;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
doWork:
|
2016-04-22 21:50:06 +03:00
|
|
|
processNode(node);
|
|
|
|
|
2017-06-28 17:38:02 +03:00
|
|
|
/* Enqueue work for all nodes that were waiting on this one
|
|
|
|
and have no unprocessed dependencies. */
|
2016-04-22 21:50:06 +03:00
|
|
|
{
|
2017-06-28 17:38:02 +03:00
|
|
|
auto graph(graph_.lock());
|
2016-04-22 21:50:06 +03:00
|
|
|
for (auto & rref : graph->rrefs[node]) {
|
|
|
|
auto & refs(graph->refs[rref]);
|
|
|
|
auto i = refs.find(node);
|
|
|
|
assert(i != refs.end());
|
|
|
|
refs.erase(i);
|
|
|
|
if (refs.empty())
|
2017-06-28 17:38:02 +03:00
|
|
|
pool.enqueue(std::bind(worker, rref));
|
2016-04-22 21:50:06 +03:00
|
|
|
}
|
2017-06-28 17:38:02 +03:00
|
|
|
graph->left.erase(node);
|
|
|
|
graph->refs.erase(node);
|
|
|
|
graph->rrefs.erase(node);
|
2016-04-22 21:50:06 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-28 17:38:02 +03:00
|
|
|
for (auto & node : nodes)
|
|
|
|
pool.enqueue(std::bind(worker, std::ref(node)));
|
|
|
|
|
|
|
|
pool.process();
|
|
|
|
|
|
|
|
if (!graph_.lock()->left.empty())
|
|
|
|
throw Error("graph processing incomplete (cyclic reference?)");
|
2016-04-22 21:50:06 +03:00
|
|
|
}
|
|
|
|
|
2016-03-29 15:29:50 +03:00
|
|
|
}
|