0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 11:08:34 +02:00
construct/include/ircd/ios.h

199 lines
4.4 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.
2017-09-30 08:04:41 +02:00
#pragma once
#define HAVE_IRCD_IOS_H
// Boost headers are not exposed to our users unless explicitly included by a
// definition file. Other libircd headers may extend this namespace with more
// forward declarations.
2017-09-30 08:04:41 +02:00
/// Forward declarations for boost::asio because it is not included here.
namespace boost::asio
{
2017-12-29 23:53:39 +01:00
struct io_context;
struct signal_set;
template<class function>
void asio_handler_invoke(function&, ...);
}
2017-09-30 08:04:41 +02:00
namespace ircd
{
namespace asio = boost::asio; ///< Alias so that asio:: can be used.
extern const uint boost_version[3];
extern const string_view boost_version_str;
}
namespace ircd::ios
{
struct handler;
struct descriptor;
template<class function> struct handle;
extern const std::thread::id static_thread_id;
extern std::thread::id main_thread_id;
extern asio::io_context *user;
bool is_main_thread();
bool is_static_thread();
void assert_main_thread();
bool available();
asio::io_context &get();
void dispatch(descriptor &, std::function<void ()>);
void post(descriptor &, std::function<void ()>);
void dispatch(std::function<void ()>);
void post(std::function<void ()>);
void init(asio::io_context &user);
}
namespace ircd
{
using ios::assert_main_thread;
using ios::is_main_thread;
using ios::dispatch;
using ios::post;
}
struct ircd::ios::descriptor
:instance_list<descriptor>
{
static uint64_t ids;
string_view name;
uint64_t id {++ids};
uint64_t calls {0};
uint64_t faults {0};
2019-03-27 05:22:22 +01:00
uint64_t allocs {0};
uint64_t alloc_bytes{0};
uint64_t frees {0};
uint64_t free_bytes{0};
uint64_t slice_total {0};
uint64_t slice_last {0};
descriptor(const string_view &name);
descriptor(descriptor &&) = delete;
descriptor(const descriptor &) = delete;
~descriptor() noexcept;
};
struct ircd::ios::handler
{
static thread_local handler *current;
2019-03-27 05:22:22 +01:00
static void *allocate(handler *const &, const size_t &);
static void deallocate(handler *const &, void *const &, const size_t &);
static void enter(handler *const &);
static void leave(handler *const &);
static bool fault(handler *const &);
ios::descriptor *descriptor;
uint64_t slice_start {0};
};
template<class function>
struct ircd::ios::handle
:handler
{
function f;
template<class... args>
void operator()(args&&... a) const;
handle(ios::descriptor &d, function&& f);
};
namespace ircd::ios
{
2019-03-27 05:22:22 +01:00
template<class function>
void asio_handler_deallocate(void *, size_t, handle<function> *);
template<class function>
void *asio_handler_allocate(size_t, handle<function> *);
template<class callable,
class function>
void asio_handler_invoke(callable &f, handle<function> *);
}
template<class function>
ircd::ios::handle<function>::handle(ios::descriptor &d,
function&& f)
:handler{&d}
,f{std::forward<function>(f)}
{}
template<class function>
template<class... args>
void
ircd::ios::handle<function>::operator()(args&&... a)
const
{
f(std::forward<args>(a)...);
}
2019-03-27 05:22:22 +01:00
template<class function>
void
ircd::ios::asio_handler_deallocate(void *const ptr,
size_t size,
handle<function> *const h)
{
handler::deallocate(h, ptr, size);
}
template<class function>
void *
__attribute__((malloc, returns_nonnull, warn_unused_result, alloc_size(1)))
ircd::ios::asio_handler_allocate(size_t size,
handle<function> *const h)
{
return handler::allocate(h, size);
}
template<class callable,
class function>
void
ircd::ios::asio_handler_invoke(callable &f,
handle<function> *const h)
try
{
handler::enter(h);
boost::asio::asio_handler_invoke(f, &h);
handler::leave(h);
}
catch(...)
{
if(handler::fault(h))
handler::leave(h);
else
throw;
}
inline void
ircd::ios::assert_main_thread()
{
assert(is_main_thread());
}
inline bool
ircd::ios::is_main_thread()
{
return std::this_thread::get_id() == main_thread_id;
2017-09-30 08:04:41 +02:00
}
inline bool
ircd::ios::is_static_thread()
{
return std::this_thread::get_id() == static_thread_id;
}