0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-08-13 13:14:45 +02:00
construct/include/ircd/ctx/concurrent.h

201 lines
3.7 KiB
C
Raw Normal View History

2018-12-25 02:58:57 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
2018-12-25 02:58:57 +01:00
//
// 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_CONCURRENT_H
2018-12-25 02:58:57 +01:00
namespace ircd::ctx
{
template<class arg> class concurrent;
2018-12-25 02:58:57 +01:00
}
template<class arg>
struct ircd::ctx::concurrent
2018-12-25 02:58:57 +01:00
{
using closure = std::function<void (arg &)>;
2018-12-25 02:58:57 +01:00
pool *p {nullptr};
vector_view<arg> a;
std::vector<bool> b;
2018-12-25 02:58:57 +01:00
closure c;
dock d;
std::exception_ptr eptr;
uint64_t snd {0}; // sends to pool
uint64_t rcv {0}; // receives by worker
uint64_t fin {0}; // finished by worker
bool done() const;
bool avail() const;
void wait_done();
void wait_avail();
void rethrow_any_exception();
void receiver(const size_t pos) noexcept;
void sender(const size_t pos) noexcept;
2018-12-25 02:58:57 +01:00
public:
size_t nextpos() const;
2018-12-25 02:58:57 +01:00
void operator()(const arg &a);
concurrent(pool &, const vector_view<arg> &, closure);
concurrent(concurrent &&) = delete;
concurrent(const concurrent &) = delete;
~concurrent() noexcept;
2018-12-25 02:58:57 +01:00
};
template<class arg>
ircd::ctx::concurrent<arg>::concurrent(pool &p,
const vector_view<arg> &a,
closure c)
2018-12-25 02:58:57 +01:00
:p{&p}
,a{a}
,b(this->a.size(), false)
2018-12-25 02:58:57 +01:00
,c{std::move(c)}
{
p.min(this->a.size());
}
template<class arg>
ircd::ctx::concurrent<arg>::~concurrent()
2018-12-25 02:58:57 +01:00
noexcept
{
const uninterruptible::nothrow ui;
wait_done();
}
template<class arg>
void
ircd::ctx::concurrent<arg>::operator()(const arg &a)
2018-12-25 02:58:57 +01:00
{
const uninterruptible ui;
rethrow_any_exception();
assert(avail());
const auto nextpos(this->nextpos());
assert(nextpos < b.size());
this->a.at(nextpos) = a;
assert(this->b.at(nextpos) == false);
this->b.at(nextpos) = true;
sender(nextpos);
wait_avail();
}
template<class arg>
size_t
ircd::ctx::concurrent<arg>::nextpos()
const
{
const auto it
{
std::find(begin(b), end(b), false)
};
return std::distance(begin(b), it);
}
template<class arg>
void
ircd::ctx::concurrent<arg>::sender(const size_t pos)
noexcept
{
assert(pos < b.size());
auto &p(*this->p);
auto func
{
std::bind(&concurrent::receiver, this, pos) //TODO: alloc
};
++snd;
assert(snd > rcv);
if(likely(p.size()))
p(std::move(func));
else
func();
}
template<class arg>
void
ircd::ctx::concurrent<arg>::receiver(const size_t pos)
noexcept
{
++rcv;
assert(snd >= rcv);
if(!this->eptr) try
{
c(this->a.at(pos));
}
catch(...)
{
this->eptr = std::current_exception();
}
assert(pos < b.size());
assert(this->b.at(pos) == true);
this->b.at(pos) = false;
assert(rcv > fin);
++fin;
d.notify_one();
2018-12-25 02:58:57 +01:00
}
template<class arg>
void
ircd::ctx::concurrent<arg>::rethrow_any_exception()
{
if(likely(!this->eptr))
return;
wait_done();
const auto eptr(this->eptr);
this->eptr = {};
std::rethrow_exception(eptr);
}
2018-12-25 02:58:57 +01:00
template<class arg>
void
ircd::ctx::concurrent<arg>::wait_avail()
2018-12-25 02:58:57 +01:00
{
d.wait([this]
{
return avail();
2018-12-25 02:58:57 +01:00
});
}
template<class arg>
void
ircd::ctx::concurrent<arg>::wait_done()
2018-12-25 02:58:57 +01:00
{
d.wait([this]
{
return done();
2018-12-25 02:58:57 +01:00
});
}
template<class arg>
bool
ircd::ctx::concurrent<arg>::avail()
const
{
assert(snd >= rcv);
assert(rcv >= fin);
assert(snd - rcv <= a.size());
assert(snd - fin <= a.size());
return snd - fin < a.size() && nextpos() < a.size();
}
template<class arg>
bool
ircd::ctx::concurrent<arg>::done()
const
{
assert(snd >= rcv);
assert(rcv >= fin);
assert(snd - rcv <= a.size());
return snd - fin == 0 && nextpos() == 0;
}