mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
159 lines
4.1 KiB
C++
159 lines
4.1 KiB
C++
// The Construct
|
|
//
|
|
// Copyright (C) Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2020 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.
|
|
|
|
#ifndef HAVE_IRCD_IRCD_H
|
|
#define HAVE_IRCD_IRCD_H
|
|
|
|
//////////////////////////////////////////////////////////////////////////////>
|
|
//
|
|
// This is an aggregate header which ties together the general public
|
|
// interfaces for IRCd. Include this header to operate and embed the library in
|
|
// your application; no other includes from the project should be required.
|
|
//
|
|
// This header only includes standard library headers; we may forward declare
|
|
// third-party symbols, but only if their headers are not required.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////>
|
|
|
|
//
|
|
// Project configuration
|
|
//
|
|
|
|
#include "config.h" // Generated by ./configure; do not edit
|
|
#include "assert.h" // Custom assert (during debug builds)
|
|
#include "portable.h" // Additional developer config pre-std
|
|
#include "stdinc.h" // Standard library includes.
|
|
#include "stduse.h" // Additional developer config post-std
|
|
|
|
//
|
|
// Project library interfaces
|
|
//
|
|
|
|
#include "util/mask.h"
|
|
#include "util/align.h"
|
|
#include "string_view.h"
|
|
#include "vector_view.h"
|
|
#include "byte_view.h"
|
|
#include "buffer/buffer.h"
|
|
#include "vg.h"
|
|
#include "util/popcount.h"
|
|
#include "simd/simd.h"
|
|
#include "simt/simt.h"
|
|
#include "allocator/allocator.h"
|
|
#include "util/util.h"
|
|
#include "exception.h"
|
|
#include "panic.h"
|
|
#include "terminate.h"
|
|
#include "run.h"
|
|
#include "demangle.h"
|
|
#include "backtrace.h"
|
|
#include "versions.h"
|
|
#include "info.h"
|
|
#include "logger.h"
|
|
#include "stringops.h"
|
|
#include "lex_cast.h"
|
|
#include "strl.h"
|
|
#include "strn.h"
|
|
#include "cmp.h"
|
|
#include "tokens.h"
|
|
#include "globular.h"
|
|
#include "leb128.h"
|
|
#include "sys.h"
|
|
#include "rand.h"
|
|
#include "crh.h"
|
|
#include "fpe.h"
|
|
#include "icu.h"
|
|
#include "utf8.h"
|
|
#include "utf16.h"
|
|
#include "b64.h"
|
|
#include "b58.h"
|
|
#include "iov.h"
|
|
#include "time.h"
|
|
#include "math/math.h"
|
|
#include "grammar.h"
|
|
#include "parse.h"
|
|
#include "fmt.h"
|
|
#include "json/json.h"
|
|
#include "cbor.h"
|
|
#include "color.h"
|
|
#include "rfc1459.h"
|
|
#include "rfc1035.h"
|
|
#include "rfc3986.h"
|
|
#include "nacl.h"
|
|
#include "ed25519.h"
|
|
#include "openssl.h"
|
|
#include "pbc.h"
|
|
#include "http.h"
|
|
#include "http2/http2.h"
|
|
#include "conf.h"
|
|
#include "magic.h"
|
|
#include "stats.h"
|
|
#include "prof/prof.h"
|
|
#include "fs/fs.h"
|
|
#include "ios/ios.h"
|
|
#include "ctx/ctx.h"
|
|
#include "cl/cl.h"
|
|
#include "gpt/gpt.h"
|
|
#include "exec.h"
|
|
#include "db/db.h"
|
|
#include "js.h"
|
|
#include "mods/mods.h"
|
|
#include "net/net.h"
|
|
#include "server/server.h"
|
|
#include "rest.h"
|
|
#include "png.h"
|
|
#include "beep.h"
|
|
#include "magick.h"
|
|
#include "resource/resource.h"
|
|
#include "client.h"
|
|
|
|
/// \brief Internet Relay Chat daemon. This is the principal namespace for IRCd.
|
|
///
|
|
namespace ircd
|
|
{
|
|
// Library version information (also see info.h for more version related)
|
|
extern const info::versions version_api;
|
|
extern const info::versions version_abi;
|
|
|
|
// Diagnostic Mode Options
|
|
extern conf::item<std::string> diagnostic;
|
|
|
|
// Restart-Assist
|
|
extern conf::item<std::string> restart;
|
|
|
|
// Operating Mode Selectors
|
|
extern conf::item<bool> debugmode;
|
|
extern conf::item<bool> soft_assert;
|
|
extern conf::item<bool> maintenance;
|
|
extern conf::item<bool> slave;
|
|
extern conf::item<bool> read_only;
|
|
extern conf::item<bool> defaults;
|
|
}
|
|
|
|
namespace ircd
|
|
{
|
|
/// Prototype of the continuation supplied to the user's main function.
|
|
using main_continuation = void (*)();
|
|
|
|
/// Prototype of the user's main function.
|
|
using user_function = void (main_continuation);
|
|
|
|
/// User's main function
|
|
using user_main = std::function<user_function>;
|
|
|
|
// Informational
|
|
seconds uptime();
|
|
|
|
// Control panel
|
|
bool quit() noexcept;
|
|
void init(boost::asio::executor &&, user_main);
|
|
}
|
|
|
|
#endif // HAVE_IRCD_IRCD_H
|