2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* stdinc.h: Pull in all of the necessary system headers
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Aaron Sethman <androsyn@ratbox.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-08-23 22:45:14 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// IRCd's namespacing is as follows:
|
|
|
|
//
|
|
|
|
// IRCD_ #define and macro namespace
|
|
|
|
// RB_ #define and macro namespace (legacy, low-level)
|
|
|
|
// ircd_ C namespace and demangled bindings
|
|
|
|
// ircd:: C++ namespace
|
|
|
|
//
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2017-09-21 04:31:54 +02:00
|
|
|
// * If any project header file requires standard library symbols we try to
|
|
|
|
// list it here, not in our header files.
|
2017-08-23 22:45:14 +02:00
|
|
|
//
|
|
|
|
// * Rare one-off's #includes isolated to a specific .cc file may not always be
|
|
|
|
// listed here but can be.
|
|
|
|
//
|
|
|
|
// * Third party / dependency / non-std includes, are NEVER listed here.
|
|
|
|
// Instead we include those in .cc files, and use forward declarations if
|
|
|
|
// we require a symbol in our API to them.
|
|
|
|
//
|
|
|
|
|
2017-09-21 04:31:54 +02:00
|
|
|
#define HAVE_IRCD_STDINC_H
|
|
|
|
|
2017-08-23 22:45:14 +02:00
|
|
|
// Generated by ./configure
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
#include <RB_INC_ASSERT_H
|
|
|
|
#include <RB_INC_STDARG_H
|
|
|
|
#include <RB_INC_SYS_TIME_H
|
|
|
|
#include <RB_INC_SYS_RESOURCE_H
|
|
|
|
|
|
|
|
} // extern "C"
|
|
|
|
|
|
|
|
#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
|
2016-08-13 04:41:59 +02:00
|
|
|
#endif
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
#include <RB_INC_CSTDDEF
|
|
|
|
#include <RB_INC_CSTDINT
|
|
|
|
#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
|
|
|
|
#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_EXPERIMENTAL_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
|
|
|
|
#include <RB_INC_IOSTREAM
|
|
|
|
#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
|
2017-09-28 09:06:00 +02:00
|
|
|
#include <RB_INC_SHARED_MUTEX
|
2016-11-29 16:23:38 +01:00
|
|
|
#include <RB_INC_CONDITION_VARIABLE
|
2017-08-19 22:27:51 +02:00
|
|
|
#include <RB_INC_RANDOM
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:40:33 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Pollution
|
|
|
|
//
|
|
|
|
// This section lists all of the items introduced outside of our namespace
|
|
|
|
// which may conflict with your project.
|
|
|
|
//
|
|
|
|
|
|
|
|
// Common branch prediction macros
|
|
|
|
#define likely(x) __builtin_expect(!!(x), 1)
|
|
|
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
|
|
|
|
|
|
// Legacy attribute format printf macros
|
|
|
|
#define AFP(a, b) __attribute__((format(printf, a, b)))
|
|
|
|
#define AFGP(a, b) __attribute__((format(gnu_printf, a, b)))
|
|
|
|
|
|
|
|
// Experimental std::string_view
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
using experimental::string_view;
|
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:40:33 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2017-09-20 06:39:53 +02:00
|
|
|
// Some items imported into our namespace.
|
2017-08-23 23:40:33 +02:00
|
|
|
//
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using std::nullptr_t;
|
|
|
|
using std::begin;
|
|
|
|
using std::end;
|
|
|
|
using std::get;
|
|
|
|
using std::static_pointer_cast;
|
|
|
|
using std::dynamic_pointer_cast;
|
|
|
|
using std::const_pointer_cast;
|
|
|
|
using ostream = std::ostream;
|
|
|
|
namespace ph = std::placeholders;
|
|
|
|
using namespace std::string_literals;
|
|
|
|
using namespace std::literals::chrono_literals;
|
2017-09-12 18:28:41 +02:00
|
|
|
template<class... T> using ilist = std::initializer_list<T...>;
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-08-23 23:40:33 +02:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// libircd API
|
|
|
|
//
|
|
|
|
|
|
|
|
// Unsorted section
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
constexpr size_t BUFSIZE { 512 };
|
|
|
|
|
|
|
|
struct client;
|
2017-09-21 04:29:36 +02:00
|
|
|
|
|
|
|
std::string demangle(const std::string &symbol);
|
|
|
|
template<class T> std::string demangle();
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2016-08-23 04:33:36 +02:00
|
|
|
|
2016-08-13 00:21:10 +02:00
|
|
|
#include "util.h"
|
2017-09-22 21:35:01 +02:00
|
|
|
#include "exception.h"
|
2017-09-09 19:38:47 +02:00
|
|
|
#include "string_view.h"
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "allocator.h"
|
2017-09-22 21:35:01 +02:00
|
|
|
#include "buffer.h"
|
2017-10-12 02:40:49 +02:00
|
|
|
#include "date.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "logger.h"
|
2017-10-01 12:05:09 +02:00
|
|
|
#include "nacl.h"
|
2017-09-22 21:35:01 +02:00
|
|
|
#include "rand.h"
|
|
|
|
#include "hash.h"
|
2017-10-01 12:05:09 +02:00
|
|
|
#include "ed25519.h"
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "info.h"
|
|
|
|
#include "localee.h"
|
2016-09-13 21:39:13 +02:00
|
|
|
#include "life_guard.h"
|
2016-09-08 19:49:45 +02:00
|
|
|
#include "color.h"
|
2017-10-02 06:14:34 +02:00
|
|
|
#include "lex_cast.h"
|
|
|
|
#include "stringops.h"
|
|
|
|
#include "tokens.h"
|
2017-03-20 12:31:58 +01:00
|
|
|
#include "params.h"
|
2017-09-11 05:27:54 +02:00
|
|
|
#include "iov.h"
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "parse.h"
|
2016-08-16 11:12:01 +02:00
|
|
|
#include "rfc1459.h"
|
2016-11-29 16:23:38 +01:00
|
|
|
#include "json.h"
|
|
|
|
#include "http.h"
|
2016-09-17 04:48:25 +02:00
|
|
|
#include "fmt.h"
|
2017-03-31 00:46:01 +02:00
|
|
|
#include "fs.h"
|
2017-09-30 08:04:41 +02:00
|
|
|
#include "ios.h"
|
2016-09-05 17:53:36 +02:00
|
|
|
#include "ctx.h"
|
2016-09-25 03:25:57 +02:00
|
|
|
#include "db.h"
|
2016-10-11 06:28:16 +02:00
|
|
|
#include "js.h"
|
2016-11-16 03:41:12 +01:00
|
|
|
#include "mods.h"
|
2017-09-30 08:04:41 +02:00
|
|
|
#include "net.h"
|
2017-09-25 05:47:13 +02:00
|
|
|
#include "m.h"
|
|
|
|
#include "resource.h"
|
2017-09-30 08:04:41 +02:00
|
|
|
#include "client.h"
|
2017-09-21 04:29:36 +02:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
std::string
|
|
|
|
ircd::demangle()
|
|
|
|
{
|
|
|
|
return demangle(typeid(T).name());
|
|
|
|
}
|