// Matrix Construct // // Copyright (C) Matrix Construct Developers, Authors & Contributors // Copyright (C) 2016-2018 Jason Volk // // 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. #pragma once #define HAVE_IRCD_CTX_POOL_H namespace ircd::ctx { struct pool; const string_view &name(const pool &); } class ircd::ctx::pool { using closure = std::function; string_view name; size_t stack_size; size_t q_max_soft; size_t q_max_hard; size_t running; size_t working; dock q_max; queue q; std::vector ctxs; void work(); void main() noexcept; public: explicit operator const queue &() const; explicit operator const dock &() const; explicit operator queue &(); explicit operator dock &(); // indicators auto size() const { return ctxs.size(); } auto queued() const { return q.size(); } auto active() const { return working; } auto avail() const { return running - working; } auto pending() const { return active() + queued(); } // dispatch to pool template future_void async(F&&, A&&...); template future_value async(F&&, A&&...); void operator()(closure); // control panel void add(const size_t & = 1); void del(const size_t & = 1); void set(const size_t &); void min(const size_t &); void terminate(); void interrupt(); void join(); pool(const string_view &name = ""_sv, const size_t &stack_size = DEFAULT_STACK_SIZE, const size_t &initial_ctxs = 0, const size_t &q_max_soft = -1, const size_t &q_max_hard = -1); pool(pool &&) = delete; pool(const pool &) = delete; pool &operator=(pool &&) = delete; pool &operator=(const pool &) = delete; ~pool() noexcept; friend const string_view &name(const pool &); friend void debug_stats(const pool &); }; template ircd::ctx::future_value ircd::ctx::pool::async(F&& f, A&&... a) { using R = typename std::result_of::type; auto func { std::bind(std::forward(f), std::forward(a)...) }; promise p; future ret{p}; (*this)([p(std::move(p)), func(std::move(func))] () -> void { p.set_value(func()); }); return ret; } template ircd::ctx::future_void ircd::ctx::pool::async(F&& f, A&&... a) { using R = typename std::result_of::type; auto func { std::bind(std::forward(f), std::forward(a)...) }; promise p; future ret{p}; (*this)([p(std::move(p)), func(std::move(func))] () -> void { func(); p.set_value(); }); return ret; } inline ircd::ctx::pool::operator dock &() { dock &d(q); return d; } inline ircd::ctx::pool::operator queue &() { return q; } inline ircd::ctx::pool::operator const dock &() const { const dock &d(q); return d; } inline ircd::ctx::pool::operator const queue &() const { return q; }