2018-06-16 00:19:29 +02: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.
|
|
|
|
|
2019-02-05 13:58:38 +01:00
|
|
|
#define HAVE_IRCD_STDINC_H
|
|
|
|
|
2018-06-16 00:19:29 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Standard includes
|
|
|
|
//
|
|
|
|
// This header includes almost everything we use out of the standard library.
|
|
|
|
// This is a pre-compiled header. Project build time is significantly reduced
|
|
|
|
// by doing things this way and C++ std headers have very little namespace
|
|
|
|
// pollution and risk of conflicts.
|
|
|
|
//
|
|
|
|
|
2019-05-02 23:13:27 +02:00
|
|
|
// It is advised that all standard library symbols are declared with default
|
|
|
|
// visibility. This pragma overrides any -fvisibility option on any unit.
|
|
|
|
#pragma GCC visibility push(default)
|
|
|
|
|
2018-06-16 00:19:29 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <RB_INC_ASSERT_H
|
|
|
|
#include <RB_INC_STDARG_H
|
2018-09-15 09:14:22 +02:00
|
|
|
#include <RB_INC_UNISTD_H
|
2019-06-04 22:49:33 +02:00
|
|
|
#include <RB_INC_SYS_TYPES_H
|
2018-06-16 00:19:29 +02:00
|
|
|
#include <RB_INC_SYS_UTSNAME_H
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#include <RB_INC_WINDOWS_H
|
|
|
|
#include <RB_INC_WINSOCK2_H
|
|
|
|
#include <RB_INC_WS2TCPIP_H
|
|
|
|
#include <RB_INC_IPHLPAPI_H
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <RB_INC_CSTDDEF
|
|
|
|
#include <RB_INC_CSTDINT
|
2019-03-15 21:01:26 +01:00
|
|
|
#include <RB_INC_CSTDLIB
|
2018-06-16 00:19:29 +02:00
|
|
|
#include <RB_INC_LIMITS
|
|
|
|
#include <RB_INC_TYPE_TRAITS
|
|
|
|
#include <RB_INC_TYPEINDEX
|
|
|
|
#include <RB_INC_VARIANT
|
|
|
|
#include <RB_INC_CERRNO
|
|
|
|
#include <RB_INC_UTILITY
|
|
|
|
#include <RB_INC_FUNCTIONAL
|
|
|
|
#include <RB_INC_ALGORITHM
|
|
|
|
#include <RB_INC_NUMERIC
|
|
|
|
#include <RB_INC_CMATH
|
2018-11-12 00:53:25 +01:00
|
|
|
#include <RB_INC_CFENV
|
2018-06-16 00:19:29 +02:00
|
|
|
#include <RB_INC_MEMORY
|
|
|
|
#include <RB_INC_EXCEPTION
|
|
|
|
#include <RB_INC_SYSTEM_ERROR
|
|
|
|
#include <RB_INC_ARRAY
|
|
|
|
#include <RB_INC_VECTOR
|
|
|
|
#include <RB_INC_STACK
|
|
|
|
#include <RB_INC_STRING
|
|
|
|
#include <RB_INC_CSTRING
|
|
|
|
#include <RB_INC_STRING_VIEW
|
|
|
|
#include <RB_INC_LOCALE
|
|
|
|
#include <RB_INC_CODECVT
|
|
|
|
#include <RB_INC_MAP
|
|
|
|
#include <RB_INC_SET
|
|
|
|
#include <RB_INC_LIST
|
|
|
|
#include <RB_INC_FORWARD_LIST
|
|
|
|
#include <RB_INC_UNORDERED_MAP
|
|
|
|
#include <RB_INC_DEQUE
|
|
|
|
#include <RB_INC_QUEUE
|
|
|
|
#include <RB_INC_SSTREAM
|
|
|
|
#include <RB_INC_FSTREAM
|
2018-07-01 23:10:20 +02:00
|
|
|
#include <RB_INC_IOSFWD
|
2018-06-16 00:19:29 +02:00
|
|
|
#include <RB_INC_IOMANIP
|
|
|
|
#include <RB_INC_CSTDIO
|
|
|
|
#include <RB_INC_CHRONO
|
|
|
|
#include <RB_INC_CTIME
|
|
|
|
#include <RB_INC_ATOMIC
|
|
|
|
#include <RB_INC_THREAD
|
|
|
|
#include <RB_INC_MUTEX
|
|
|
|
#include <RB_INC_SHARED_MUTEX
|
|
|
|
#include <RB_INC_CONDITION_VARIABLE
|
|
|
|
#include <RB_INC_RANDOM
|
|
|
|
#include <RB_INC_BITSET
|
|
|
|
#include <RB_INC_OPTIONAL
|
|
|
|
#include <RB_INC_NEW
|
2019-03-02 20:40:12 +01:00
|
|
|
#include <RB_INC_FILESYSTEM
|
2018-06-16 00:19:29 +02:00
|
|
|
|
|
|
|
#include <RB_INC_EXPERIMENTAL_STRING_VIEW
|
|
|
|
#include <RB_INC_EXPERIMENTAL_OPTIONAL
|
|
|
|
|
2019-06-04 22:49:33 +02:00
|
|
|
// These are #defined in stdio.h. If the system includes it indirectly we have
|
|
|
|
// to undef those here or there will be trouble.
|
|
|
|
#undef stdin
|
|
|
|
#undef stdout
|
|
|
|
#undef stderr
|
|
|
|
|
2019-12-31 22:41:45 +01:00
|
|
|
// Historical macros from types.h
|
|
|
|
#undef major
|
|
|
|
#undef minor
|
|
|
|
|
2018-06-16 00:19:29 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////////>
|
|
|
|
//
|
|
|
|
// Pollution
|
|
|
|
//
|
|
|
|
// This section lists all of the items introduced outside of our namespace
|
|
|
|
// which may conflict with your project.
|
|
|
|
//
|
|
|
|
|
|
|
|
// Experimental std::string_view
|
|
|
|
#if !defined(__cpp_lib_string_view) && defined(__cpp_lib_experimental_string_view)
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
using experimental::string_view;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Experimental std::optional
|
|
|
|
#if !defined(__cpp_lib_optional) && defined(__cpp_lib_experimental_optional)
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
using experimental::optional;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-01 23:10:20 +02:00
|
|
|
// Forward declare the existence of these in std:: to allow their immediate
|
|
|
|
// use throughout the project as a developer convenience. <iostream> is not
|
|
|
|
// included here because it generates naive initialization code in every unit,
|
|
|
|
// whereas we conduct it once for libircd in the right place.
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
extern istream cin;
|
|
|
|
extern ostream cout;
|
|
|
|
extern ostream cerr;
|
|
|
|
}
|
|
|
|
|
2018-06-16 00:19:29 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// libircd API
|
|
|
|
//
|
|
|
|
// Some items imported into our namespace.
|
2019-03-22 00:23:40 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
2020-04-27 22:58:39 +02:00
|
|
|
using longlong = long long;
|
|
|
|
using ulonglong = unsigned long long;
|
|
|
|
|
2018-06-16 00:19:29 +02:00
|
|
|
using std::get;
|
|
|
|
using std::end;
|
|
|
|
using std::begin;
|
|
|
|
|
|
|
|
using std::nullptr_t;
|
|
|
|
using std::nothrow_t;
|
|
|
|
|
|
|
|
using std::const_pointer_cast;
|
|
|
|
using std::static_pointer_cast;
|
|
|
|
using std::dynamic_pointer_cast;
|
|
|
|
|
|
|
|
using std::chrono::hours;
|
2018-09-17 03:19:23 +02:00
|
|
|
using std::chrono::minutes;
|
2018-06-16 00:19:29 +02:00
|
|
|
using std::chrono::seconds;
|
|
|
|
using std::chrono::milliseconds;
|
|
|
|
using std::chrono::microseconds;
|
|
|
|
using std::chrono::nanoseconds;
|
2018-10-21 09:54:06 +02:00
|
|
|
using std::chrono::duration;
|
2018-06-16 00:19:29 +02:00
|
|
|
using std::chrono::duration_cast;
|
|
|
|
using std::chrono::system_clock;
|
|
|
|
using std::chrono::steady_clock;
|
|
|
|
using std::chrono::high_resolution_clock;
|
|
|
|
using std::chrono::time_point;
|
|
|
|
|
|
|
|
using namespace std::string_literals;
|
2019-06-23 08:28:48 +02:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
using namespace std::literals::chrono_literals;
|
|
|
|
using std::string_literals::operator""s;
|
|
|
|
using std::chrono_literals::operator""s;
|
2018-06-16 00:19:29 +02:00
|
|
|
|
|
|
|
namespace ph = std::placeholders;
|
|
|
|
|
|
|
|
template<class... T> using ilist = std::initializer_list<T...>;
|
2018-11-09 06:18:39 +01:00
|
|
|
|
|
|
|
using std::error_code;
|
2018-06-16 00:19:29 +02:00
|
|
|
}
|
2019-05-02 23:13:27 +02:00
|
|
|
|
|
|
|
#pragma GCC visibility pop // default
|