0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 11:18:51 +02:00
construct/include/ircd
2020-10-16 14:32:06 -07:00
..
buffer ircd: Reorg simd.h / buffer.h interface dependency relationship. 2020-10-10 00:43:59 -07:00
ctx ircd::ctx: Use vg::stack registration in stack allocator. 2020-10-16 14:32:06 -07:00
db ircd::db::database::sst: Add file id integer to info struct. 2020-10-14 02:22:45 -07:00
fs
http2
js
json
m ircd:Ⓜ️:feds: Add prelink loop before request loop w/ options toggle. 2020-10-16 02:40:39 -07:00
mods
net
prof ircd::prof: Fallback to __builtin_readcyclecounter() if available. 2020-10-12 18:07:39 -07:00
resource ircd::resource: Add untokenized params view to request struct. 2020-10-12 18:07:39 -07:00
server ircd::server: Add asynchronous prelink() to interface. 2020-10-16 02:40:39 -07:00
simd ircd::simd: Rename lateral to reduce. 2020-10-11 10:10:50 -07:00
spirit
util ircd: Add assume() convenience wrapping for __builtin_assume(). 2020-10-12 18:07:39 -07:00
.gitignore
allocator.h ircd::vg: Split allocator::vg to vg:: in header. 2020-10-16 10:05:23 -07:00
asio.h
assert.h
b58.h
b64.h
backtrace.h
byte_view.h
cbor.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h
fmt.h ircd::fmt: Use POD array here; avoid member function use out of initialization order. 2020-10-08 20:49:49 -07:00
fpe.h
globular.h
grammar.h
http.h
icu.h
info.h
ios.h
iov.h
ircd.h ircd::vg: Split allocator::vg to vg:: in header. 2020-10-16 10:05:23 -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
portable.h ircd: Ensure typedef'ed 128-bit integers are properly aligned. (#156) 2020-10-08 20:49:49 -07:00
rand.h ircd::rand: Add vector convenience interface. 2020-10-07 03:08:28 -07:00
README.md
rfc1035.h
rfc1459.h
rfc3986.h ircd::rfc3986: Add REMOTE_MAX / REMOTE_BUFSIZE convenience constexprs. 2020-10-16 02:40:39 -07:00
run.h
spirit.h
stats.h
stdinc.h ircd::util: Remove separate header for pair gimmick; move to stdinc.h 2020-10-10 01:16:39 -07:00
string_view.h
stringops.h
strl.h
strn.h
sys.h
time.h
tokens.h
utf.h
vector_view.h
vg.h ircd::vg: Add stack register/deregister to interface. 2020-10-16 14:32:06 -07:00

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().