mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 12:58:53 +01:00
204 lines
4.7 KiB
C++
204 lines
4.7 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_CTX_SHARED_STATE_H
|
|
|
|
namespace ircd::ctx
|
|
{
|
|
struct shared_state_base;
|
|
template<class T = void> struct shared_state;
|
|
template<> struct shared_state<void>;
|
|
template<class T> struct promise;
|
|
template<> struct promise<void>;
|
|
enum class future_state :uintptr_t;
|
|
|
|
template<class T> future_state state(const shared_state<T> &);
|
|
template<class T> bool is(const shared_state<T> &, const future_state &);
|
|
template<class T> void set(shared_state<T> &, const future_state &);
|
|
template<> void set(shared_state<void> &, const future_state &);
|
|
template<class T> void notify(shared_state<T> &);
|
|
}
|
|
|
|
/// Internal state enumeration for the promise / future / related. These can
|
|
/// all be observed through state() or is(); only some can be set(). This is
|
|
/// not for public manipulation.
|
|
enum class ircd::ctx::future_state
|
|
:uintptr_t
|
|
{
|
|
INVALID = 0, ///< Null.
|
|
PENDING, ///< Promise is attached and busy.
|
|
READY, ///< Result ready; promise is gone.
|
|
OBSERVED, ///< Special case for when_*(); not a state; promise is gone.
|
|
RETRIEVED, ///< User retrieved future value; promise is gone.
|
|
};
|
|
|
|
/// Internal Non-template base of the state object shared by promise and
|
|
/// future. It is extended by the appropriate template, and usually resides
|
|
/// in the future's instance, where the promise finds it.
|
|
struct ircd::ctx::shared_state_base
|
|
{
|
|
mutable dock cond;
|
|
std::exception_ptr eptr;
|
|
std::function<void (shared_state_base &)> then;
|
|
|
|
shared_state_base();
|
|
shared_state_base(shared_state_base &&) = default;
|
|
shared_state_base(const shared_state_base &) = delete;
|
|
shared_state_base &operator=(shared_state_base &&) = default;
|
|
shared_state_base &operator=(const shared_state_base &) = delete;
|
|
~shared_state_base() noexcept;
|
|
};
|
|
|
|
/// Internal shared state between future and promise appropos a future value.
|
|
template<class T>
|
|
struct ircd::ctx::shared_state
|
|
:shared_state_base
|
|
{
|
|
using value_type = T;
|
|
using pointer_type = T *;
|
|
using reference_type = T &;
|
|
|
|
union
|
|
{
|
|
promise<T> *p {nullptr};
|
|
future_state st;
|
|
};
|
|
T val;
|
|
|
|
shared_state(promise<T> &p)
|
|
:p{&p}
|
|
{}
|
|
|
|
shared_state() = default;
|
|
};
|
|
|
|
/// Internal shared state between future and promise when there is no future
|
|
/// value, only a notification of completion or exception.
|
|
template<>
|
|
struct ircd::ctx::shared_state<void>
|
|
:shared_state_base
|
|
{
|
|
using value_type = void;
|
|
|
|
union
|
|
{
|
|
promise<void> *p {nullptr};
|
|
future_state st;
|
|
};
|
|
|
|
shared_state(promise<void> &p)
|
|
:p{&p}
|
|
{}
|
|
|
|
shared_state() = default;
|
|
};
|
|
|
|
/// Internal use
|
|
template<class T>
|
|
void
|
|
ircd::ctx::notify(shared_state<T> &st)
|
|
{
|
|
if(!st.then)
|
|
{
|
|
st.cond.notify_all();
|
|
return;
|
|
}
|
|
|
|
if(!current)
|
|
{
|
|
st.cond.notify_all();
|
|
assert(bool(st.then));
|
|
st.then(st);
|
|
return;
|
|
}
|
|
|
|
const stack_usage_assertion sua;
|
|
st.cond.notify_all();
|
|
assert(bool(st.then));
|
|
st.then(st);
|
|
}
|
|
|
|
/// Internal use
|
|
template<class T>
|
|
void
|
|
ircd::ctx::set(shared_state<T> &st,
|
|
const future_state &state)
|
|
{
|
|
switch(state)
|
|
{
|
|
case future_state::INVALID: assert(0); return;
|
|
case future_state::PENDING: assert(0); return;
|
|
case future_state::OBSERVED:
|
|
case future_state::READY:
|
|
case future_state::RETRIEVED:
|
|
default:
|
|
st.st = state;
|
|
return;
|
|
}
|
|
}
|
|
|
|
/// Internal use
|
|
template<>
|
|
inline void
|
|
ircd::ctx::set(shared_state<void> &st,
|
|
const future_state &state)
|
|
{
|
|
switch(state)
|
|
{
|
|
case future_state::INVALID: assert(0); return;
|
|
case future_state::PENDING: assert(0); return;
|
|
case future_state::READY:
|
|
case future_state::OBSERVED:
|
|
case future_state::RETRIEVED:
|
|
default:
|
|
st.st = state;
|
|
return;
|
|
}
|
|
}
|
|
|
|
/// Internal; check if the current state is something; safe but unnecessary
|
|
/// for public use.
|
|
template<class T>
|
|
bool
|
|
ircd::ctx::is(const shared_state<T> &st,
|
|
const future_state &state_)
|
|
{
|
|
switch(st.st)
|
|
{
|
|
case future_state::READY:
|
|
case future_state::OBSERVED:
|
|
case future_state::RETRIEVED:
|
|
return state_ == st.st;
|
|
|
|
default: switch(state_)
|
|
{
|
|
case future_state::INVALID:
|
|
return st.p == nullptr;
|
|
|
|
case future_state::PENDING:
|
|
return uintptr_t(st.p) >= 0x1000;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Internal; get the current state of the shared_state; safe but unnecessary
|
|
/// for public use.
|
|
template<class T>
|
|
ircd::ctx::future_state
|
|
ircd::ctx::state(const shared_state<T> &st)
|
|
{
|
|
return uintptr_t(st.p) >= 0x1000?
|
|
future_state::PENDING:
|
|
st.st;
|
|
}
|