0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 18:18:35 +02:00
construct/include/ircd/ctx/pool.h

117 lines
2.8 KiB
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
2016-09-21 23:15:49 +02:00
#pragma once
#define HAVE_IRCD_CTX_POOL_H
namespace ircd::ctx
{
struct pool;
}
2016-09-21 23:15:49 +02:00
struct ircd::ctx::pool
2016-09-21 23:15:49 +02:00
{
using closure = std::function<void ()>;
private:
2016-11-29 16:23:38 +01:00
const char *name;
2016-09-21 23:15:49 +02:00
size_t stack_size;
2017-11-26 03:21:21 +01:00
size_t running;
size_t working;
2016-09-21 23:15:49 +02:00
struct dock dock;
std::deque<closure> queue;
std::vector<context> ctxs;
void next();
void main();
public:
2016-11-29 16:23:38 +01:00
// indicators
2016-09-21 23:15:49 +02:00
auto size() const { return ctxs.size(); }
auto queued() const { return queue.size(); }
2017-11-26 03:21:21 +01:00
auto active() const { return working; }
auto avail() const { return running - working; }
auto pending() const { return active() + queued(); }
2016-09-21 23:15:49 +02:00
2016-11-29 16:23:38 +01:00
// control panel
2016-09-21 23:15:49 +02:00
void add(const size_t & = 1);
void del(const size_t & = 1);
2016-11-29 16:23:38 +01:00
void interrupt();
void join();
2016-09-21 23:15:49 +02:00
2016-11-29 16:23:38 +01:00
// dispatch function to pool
2016-09-21 23:15:49 +02:00
void operator()(closure);
2016-11-29 16:23:38 +01:00
// dispatch function std async style
template<class F, class... A> future_void<F, A...> async(F&&, A&&...);
template<class F, class... A> future_value<F, A...> async(F&&, A&&...);
2016-09-21 23:15:49 +02:00
2016-11-29 16:23:38 +01:00
pool(const char *const &name = "<unnamed pool>",
const size_t &stack_size = DEFAULT_STACK_SIZE,
const size_t & = 0);
pool(pool &&) = delete;
pool(const pool &) = delete;
pool &operator=(pool &&) = delete;
pool &operator=(const pool &) = delete;
2016-09-21 23:15:49 +02:00
~pool() noexcept;
2017-10-19 09:58:43 +02:00
friend void debug_stats(const pool &);
2016-09-21 23:15:49 +02:00
};
template<class F,
class... A>
ircd::ctx::future_value<F, A...>
ircd::ctx::pool::async(F&& f,
A&&... a)
{
using R = typename std::result_of<F (A...)>::type;
auto func
{
std::bind(std::forward<F>(f), std::forward<A>(a)...)
};
promise<R> p;
future<R> ret{p};
(*this)([p(std::move(p)), func(std::move(func))]
() -> void
{
p.set_value(func());
});
return ret;
}
template<class F,
class... A>
ircd::ctx::future_void<F, A...>
ircd::ctx::pool::async(F&& f,
A&&... a)
{
using R = typename std::result_of<F (A...)>::type;
auto func
{
std::bind(std::forward<F>(f), std::forward<A>(a)...)
};
promise<R> p;
future<R> ret{p};
(*this)([p(std::move(p)), func(std::move(func))]
() -> void
{
func();
p.set_value();
});
return ret;
}