0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-23 21:33:44 +02:00
construct/include/ircd
2023-04-27 20:41:18 -07:00
..
allocator
buffer ircd::buffer: Add unique_buffer ctor for mutable to const move conversion. 2023-04-04 15:49:24 -07:00
cl
ctx ircd::ctx::future: Add what() exception peeking convenience to interface. 2023-04-27 11:36:31 -07:00
db ircd::db: Inline domain::const_iterator seek(string_view). 2023-04-09 21:48:33 -07:00
fs ircd::fs::dev: Add stats gather struct w/ console cmd. 2023-03-16 12:03:32 -07:00
gpt
http2
ios ircd::ios: ABI simplify; fix double-indirection, AGU load, code size on context switch. 2023-03-20 10:31:09 -07:00
js
json ircd::json::stack::member: Conversion constructions from other member categories. 2023-04-22 21:44:55 -07:00
m ircd:Ⓜ️:user::keys: Implement m.signing_key_update broadcast interface. 2023-04-27 20:41:18 -07:00
math
mods ircd::mapi: Annotate noexcept; non-dynamic alloc; codegen reduction all modules. 2023-03-05 12:05:13 -08:00
net ircd::net::dns::resolver: Fix case sensitivity of the tag host. 2023-04-22 00:21:29 -07:00
prof
resource ircd::resource: Optimize response w/ iov for fused head and content. 2023-03-20 20:56:56 -07:00
server ircd::net: Allow designated and implicit constructions for close_opts. 2023-03-20 14:01:42 -07:00
simd ircd::simd: Remove unused attribute (clang) (38e77c64c6). 2023-04-03 11:47:30 -07:00
simt
spirit ircd::spirit: Fix multiple definitions from phoenix::placeholders (GCC). 2023-03-05 16:49:55 -08:00
util ircd::util::bitset: Make set() invertible to false. 2023-04-03 11:47:32 -07:00
.gitignore
asio.h ircd::asio: Fix missing condition for newer boost systems w/o liburing. 2023-03-21 19:27:23 -07:00
assert.h
b58.h
b64.h ircd::b64: Optimize outer loop vectorized codegen. (clang/AVX512) 2023-03-26 17:47:24 -07:00
backtrace.h
beep.h
byte_view.h
cbor.h
client.h ircd::net: Allow designated and implicit constructions for close_opts. 2023-03-20 14:01:42 -07:00
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h
exec.h
fmt.h
fpe.h
globular.h
grammar.h
http.h
icu.h
info.h ircd::info: Fix leaf for avx2/avx512f; additional tsc related. 2023-03-26 18:23:30 -07:00
iov.h
ircd.h ircd::rest: Add web request interface which isn't orchestrally complicated. 2023-04-09 21:48:33 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am
matrix.h
nacl.h
openssl.h
panic.h
parse.h
pbc.h
png.h
portable.h
rand.h
README.md
rest.h ircd::rest: Add get overload w/ default opts. 2023-04-26 19:27:04 -07:00
rfc1035.h
rfc1459.h
rfc3986.h ircd::rfc3986::uri: Add path+query extractor convenience. 2023-04-04 15:49:24 -07:00
run.h
spirit.h
stats.h
stdinc.h
stduse.h
string_view.h ircd::string_view: Modernize constant evaluation comparisons. 2023-03-11 13:48:07 -08:00
stringops.h
strl.h
strn.h
sys.h
terminate.h
time.h
tokens.h
utf8.h
utf16.h
vector_view.h
versions.h
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().