0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-02 19:04:17 +01:00
construct/include/ircd
2022-07-08 10:45:33 -07:00
..
buffer ircd::buffer: Add explicit checked convenience type casts. 2022-07-07 16:47:55 -07:00
cl ircd: Define all IRCD_USE_ as integers for constexprs. 2022-06-23 09:36:44 -07:00
ctx ircd::ctx::dock: Eliminate inlined template complex; optimize linkages. 2022-06-29 18:20:46 -07:00
db ircd::db: Simplify options wrappings; eliminate bitflags. 2022-07-02 12:42:09 -07:00
fs ircd: Upgrade to std::filesystem from boost::filesystem. 2022-07-07 16:47:55 -07:00
gpt ircd::gpt::task: Refactor generator interface to member functions. 2022-07-01 20:17:56 -07:00
http2
ios ircd::ios: Consolidate notification interface for now; add atexit related. 2022-06-29 18:20:46 -07:00
js
json ircd::json: Allow literal null for array/object ::empty(); inline. 2022-06-30 14:21:50 -07:00
m Add noexcept to various lambdas (gcc-12). 2022-07-07 16:47:55 -07:00
math
mods ircd::mods: Improve paths encapsulation; fix warning. (gcc-12) 2022-07-04 22:25:18 -07:00
net ircd::net::bpf: Add preliminary epbf support. 2022-07-08 10:45:33 -07:00
prof Revert "ircd: ISO C++ requires template on destructor names out-of-line." (gcc-11/12) 2022-06-20 17:26:39 -07:00
resource
server ircd::server::request: Even more granular log facilities for request/response. 2022-07-02 18:10:38 -07:00
simd
simt
spirit ircd::spirit: Suppress -Wdangling-pointer in spirit::karma (gcc-12). 2022-07-05 13:01:58 -07:00
util ircd::util: Improve bswap template codegen. 2022-07-01 12:08:06 -07:00
.gitignore
allocator.h
asio.h
assert.h
b58.h
b64.h
backtrace.h
beep.h
byte_view.h
cbor.h
client.h
cmp.h
color.h
conf.h
crh.h Convert static member constexprs to non-reference type. 2022-06-28 17:42:49 -07:00
demangle.h
ed25519.h
exception.h Convert static member constexprs to non-reference type. 2022-06-28 17:42:49 -07:00
exec.h
fmt.h
fpe.h
globular.h
grammar.h ircd: Forward declare missing karma::rule; ensure visibility of public rules. 2022-06-28 12:37:14 -07:00
http.h
icu.h
info.h ircd: Split info::versions into header/unit. 2022-06-23 10:50:48 -07:00
iov.h
ircd.h ircd::ios: Consolidate notification interface for now; add atexit related. 2022-06-29 18:20:46 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h ircd: Define all IRCD_USE_ as integers for constexprs. 2022-06-23 09:36:44 -07:00
Makefile.am ircd:Ⓜ️ Tweak symbol related linkflags for library. 2022-06-24 21:31:05 -07:00
matrix.h
nacl.h
openssl.h
panic.h
parse.h
pbc.h
png.h
portable.h
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h ircd: Forward declare missing karma::rule; ensure visibility of public rules. 2022-06-28 12:37:14 -07:00
run.h
spirit.h
stats.h
stdinc.h ircd: Add missing tuple; add concepts. (C++20) 2022-06-20 19:44:32 -07:00
string_view.h ircd: Additional _constexpr_equal utils w/ size args. 2022-06-28 12:37:14 -07:00
stringops.h
strl.h ircd::strl: Simplify strlcat; reuse strlcpy. (related f705df096d). 2022-07-03 15:04:02 -07:00
strn.h
sys.h
terminate.h
time.h
tokens.h Add noexcept to various lambdas (gcc-11). 2022-06-29 14:42:42 -07:00
utf8.h
utf16.h
vector_view.h
versions.h ircd: Split info::versions into header/unit. 2022-06-23 10:50:48 -07:00
vg.h

IRCd Library API

Project Namespaces

  • IRCD_ Preprocessor #define and macros.
  • RB_ Build system related preprocessor #defines and macros (legacy).
  • ircd_ C namespace and demangled bindings.
  • ircd:: C++ namespace scope.
  • X-IRCd- HTTP header key namespace.
  • ircd. Matrix event type namespace.
  • ircd_ Environmental variables (see: conf.h).

What To Include

libircd headers are organized into several aggregates groups

As a C++ project there are a lot of header files. Header files depend on other header files. We don't expect the developer of a compilation unit to figure out an exact list of header files necessary to include for that unit. Instead we have aggregated groups of header files which are then precompiled. These aggregations are mostly oriented around a specific project dependency.

Note: The term 'stack' may be found in place of the preferred term 'group' in other documentation.

  • Standard Include group <ircd/ircd.h> is the main header group. This group involves the standard library and most of libircd. This is what an embedder will be working with. These headers will expose our own interfaces wrapping 3rd party dependencies which are not included there.

    There are actually two files in play here: <ircd/ircd.h> and <ircd/ircd.pic.h>. The latter is generated dynamically and will not exist until make creates it. We have to offer two different pre-compilations: one with -fPIC and one without.

  • Boost ASIO include group <ircd/asio.h> is a header group exposing the boost::asio library. We only involve this header in compilation units working directly with asio for networking et al. Involving this header file slows down compilation compared with the standard group.

  • Boost Spirit include group <ircd/spirit.h> is a header group exposing the spirit parser framework to compilation units which involve formal grammars. Involving this header is a monumental slowdown when compiling.

  • JavaScript include group <ircd/js/js.h> is a header group exposing symbols from the SpiderMonkey JS engine. Alternatively, <ircd/js.h> is part of the standard include group which includes any wrapping to hide SpiderMonkey.

  • MAPI include group <ircd/mapi.h> is the standard header group for modules. This group is an extension to the standard include group but has specific tools for pluggable modules which are not part of the libircd core.

Invocation

libircd is not thread-safe. It does not protect exposed interfaces with locks. Embedders must access libircd from a single thread.

Initialize the library with a call to ircd::init().