2018-02-03 18:22:01 -08: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-03-24 16:45:26 -07:00
|
|
|
|
2017-09-29 23:04:41 -07:00
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_IOS_H
|
|
|
|
|
2018-01-08 03:01:33 -08:00
|
|
|
// 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-29 23:04:41 -07:00
|
|
|
/// Forward declarations for boost::asio because it is not included here.
|
|
|
|
namespace boost::asio
|
2017-08-28 14:51:22 -07:00
|
|
|
{
|
2017-12-29 15:53:39 -07:00
|
|
|
struct io_context;
|
2018-12-11 14:55:10 -08:00
|
|
|
struct signal_set;
|
2017-08-28 14:51:22 -07:00
|
|
|
}
|
2017-03-24 16:45:26 -07:00
|
|
|
|
2017-09-29 23:04:41 -07:00
|
|
|
namespace ircd
|
2017-03-24 16:45:26 -07:00
|
|
|
{
|
2018-10-17 05:12:10 -07:00
|
|
|
namespace asio = boost::asio; ///< Alias so that asio:: can be used.
|
2018-11-01 20:14:00 -07:00
|
|
|
|
|
|
|
extern const uint boost_version[3];
|
|
|
|
extern const string_view boost_version_str;
|
2018-10-17 05:12:10 -07:00
|
|
|
}
|
2017-03-24 16:45:26 -07:00
|
|
|
|
2018-10-17 05:12:10 -07:00
|
|
|
namespace ircd::ios
|
|
|
|
{
|
2017-10-11 17:38:24 -07:00
|
|
|
extern const std::thread::id static_thread_id;
|
2018-10-17 05:12:10 -07:00
|
|
|
extern std::thread::id main_thread_id;
|
|
|
|
extern asio::io_context *user;
|
2017-10-11 17:38:24 -07:00
|
|
|
|
|
|
|
bool is_main_thread();
|
2018-12-28 13:17:28 -08:00
|
|
|
bool is_static_thread();
|
2017-10-11 17:38:24 -07:00
|
|
|
void assert_main_thread();
|
|
|
|
|
2018-12-28 13:05:03 -08:00
|
|
|
bool available();
|
2018-10-17 05:12:10 -07:00
|
|
|
asio::io_context &get();
|
2018-12-28 13:05:03 -08:00
|
|
|
|
2017-10-11 17:38:24 -07:00
|
|
|
void dispatch(std::function<void ()>);
|
2018-10-17 05:12:10 -07:00
|
|
|
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;
|
2017-10-11 17:38:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
2018-10-17 05:12:10 -07:00
|
|
|
ircd::ios::assert_main_thread()
|
2017-10-11 17:38:24 -07:00
|
|
|
{
|
|
|
|
assert(is_main_thread());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
2018-10-17 05:12:10 -07:00
|
|
|
ircd::ios::is_main_thread()
|
2017-10-11 17:38:24 -07:00
|
|
|
{
|
2018-10-17 05:12:10 -07:00
|
|
|
return std::this_thread::get_id() == main_thread_id;
|
2017-09-29 23:04:41 -07:00
|
|
|
}
|
2018-12-28 13:17:28 -08:00
|
|
|
|
|
|
|
inline bool
|
|
|
|
ircd::ios::is_static_thread()
|
|
|
|
{
|
|
|
|
return std::this_thread::get_id() == static_thread_id;
|
|
|
|
}
|