0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-20 11:53:46 +02:00
construct/include/ircd
2021-01-04 08:47:21 -08:00
..
buffer
ctx ircd::ctx::posix: Trapdoor complex allowing real pthreads to work again. 2021-01-04 01:12:49 -08:00
db ircd::db: Add conf item to disable file deletion on open; add to -safe mode diagnostic. 2021-01-04 01:12:49 -08:00
fs ircd::fs::aio: Integrate stats structure into ircd::stats system. 2020-12-18 02:42:07 -08:00
http2
ios ircd::ios: Add comments on dispatch related. [ci skip] 2020-12-23 22:28:41 -08:00
js
json ircd::json: Inline trivial array::empty(); label branch expect. 2020-12-10 08:34:22 -08:00
m ircd:Ⓜ️ Structure for CrossSignKey. 2021-01-04 08:47:21 -08:00
mods
net ircd::net: Add interface to TCP_QUICKACK if supported. 2020-12-25 05:33:59 -08:00
prof
resource ircd::resource::response::chunked: Add convenience amalgam w/ json::stack, top json::object. 2021-01-04 01:12:49 -08:00
server ircd::server: Add conf items for peer socket options. 2020-12-25 07:30:10 -08:00
simd ircd::simd: Fix AVX512 devectorization on clang w/ uninitialized across loops. 2020-12-23 22:28:41 -08:00
spirit
util ircd::util: Add a non-atomic compare_exchange(). 2020-12-21 00:44:14 -08:00
.gitignore
allocator.h
asio.h
assert.h
b58.h
b64.h
backtrace.h
byte_view.h
cbor.h
client.h ircd::client: Add write overload for iov arguments. 2020-12-25 07:30:10 -08:00
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h
exec.h
fmt.h ircd::fmt: Use trapping exceptions for developer error types. 2020-12-17 20:23:50 -08:00
fpe.h
globular.h
grammar.h
http.h
icu.h
info.h
iov.h
ircd.h ircd: Simplify the async main init fiasco w/ continuation callback. 2020-12-18 17:41:26 -08:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am
matrix.h
nacl.h
openssl.h
panic.h ircd: Improve terminate interface; simplify impl. 2020-12-13 10:45:34 -08:00
parse.h
pbc.h
portable.h
rand.h ircd::rand: Improve xoshiro256p default values; improve interface consistency. 2020-12-11 22:50:57 -08:00
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h ircd: Simplify the async main init fiasco w/ continuation callback. 2020-12-18 17:41:26 -08:00
spirit.h
stats.h ircd::stats: Add signed integer, chrono specializations; use panic exception. 2020-12-23 03:56:43 -08:00
stdinc.h
string_view.h
stringops.h
strl.h
strn.h
sys.h
terminate.h ircd: Improve terminate interface; simplify impl. 2020-12-13 10:45:34 -08:00
time.h
tokens.h
utf.h
vector_view.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().