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-19 08:31:56 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_CTX_SHARED_STATE_H
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::ctx
|
|
|
|
{
|
|
|
|
struct shared_state_base;
|
|
|
|
template<class T = void> struct shared_state;
|
|
|
|
template<> struct shared_state<void>;
|
|
|
|
}
|
2016-09-19 08:31:56 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::ctx::shared_state_base
|
2016-09-19 08:31:56 +02:00
|
|
|
{
|
|
|
|
dock cond;
|
|
|
|
std::exception_ptr eptr;
|
2017-12-29 23:32:08 +01:00
|
|
|
uint promise_refcnt {0};
|
|
|
|
bool finished {false};
|
2016-09-19 08:31:56 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
template<class T>
|
|
|
|
struct ircd::ctx::shared_state
|
2016-09-19 08:31:56 +02:00
|
|
|
:shared_state_base
|
|
|
|
,std::enable_shared_from_this<shared_state<T>>
|
|
|
|
{
|
|
|
|
using value_type = T;
|
|
|
|
using pointer_type = T *;
|
|
|
|
using reference_type = T &;
|
|
|
|
|
|
|
|
T val;
|
2018-03-07 18:08:16 +01:00
|
|
|
std::function<void (std::exception_ptr, T) noexcept> callback;
|
2016-09-19 08:31:56 +02:00
|
|
|
|
|
|
|
std::shared_ptr<const shared_state<T>> share() const;
|
|
|
|
std::shared_ptr<shared_state<T>> share();
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::ctx::shared_state<void>
|
2016-09-19 08:31:56 +02:00
|
|
|
:shared_state_base
|
|
|
|
,std::enable_shared_from_this<shared_state<void>>
|
|
|
|
{
|
|
|
|
using value_type = void;
|
|
|
|
|
2018-03-07 18:08:16 +01:00
|
|
|
std::function<void (std::exception_ptr) noexcept> callback;
|
|
|
|
|
2016-09-19 08:31:56 +02:00
|
|
|
std::shared_ptr<const shared_state<void>> share() const;
|
|
|
|
std::shared_ptr<shared_state<void>> share();
|
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
inline std::shared_ptr<ircd::ctx::shared_state<void>>
|
|
|
|
ircd::ctx::shared_state<void>::share()
|
2016-09-19 08:31:56 +02:00
|
|
|
{
|
|
|
|
return this->shared_from_this();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
2017-08-28 23:51:22 +02:00
|
|
|
std::shared_ptr<ircd::ctx::shared_state<T>>
|
|
|
|
ircd::ctx::shared_state<T>::share()
|
2016-09-19 08:31:56 +02:00
|
|
|
{
|
|
|
|
return this->shared_from_this();
|
|
|
|
}
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
inline std::shared_ptr<const ircd::ctx::shared_state<void>>
|
|
|
|
ircd::ctx::shared_state<void>::share()
|
2016-09-19 08:31:56 +02:00
|
|
|
const
|
|
|
|
{
|
|
|
|
return this->shared_from_this();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
2017-08-28 23:51:22 +02:00
|
|
|
std::shared_ptr<const ircd::ctx::shared_state<T>>
|
|
|
|
ircd::ctx::shared_state<T>::share()
|
2016-09-19 08:31:56 +02:00
|
|
|
const
|
|
|
|
{
|
|
|
|
return this->shared_from_this();
|
|
|
|
}
|