0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-28 17:38:53 +01:00
construct/include/ircd
2020-10-14 22:04:04 -07:00
..
buffer ircd: Reorg simd.h / buffer.h interface dependency relationship. 2020-10-10 00:43:59 -07:00
ctx ircd::ctx: Support user-supplied stacks. 2020-10-14 02:22:45 -07:00
db ircd::db::database::sst: Add file id integer to info struct. 2020-10-14 02:22:45 -07:00
fs ircd::fs: Add support for O_EXCL; add exclusive to fd::opts. 2020-09-28 22:33:46 -07:00
http2
js
json
m ircd:Ⓜ️:fed: Move head fetch convenience to room::head interface. 2020-10-14 22:04:04 -07:00
mods
net ircd::net::socket: Hoist function-static instances of ios::descriptor. 2020-10-03 02:31:20 -07:00
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
simd ircd::simd: Rename lateral to reduce. 2020-10-11 10:10:50 -07:00
spirit ircd::spirit: Add template id to custom_parser; add three specializations per unit for now. 2020-09-27 14:57:07 -07:00
util ircd: Add assume() convenience wrapping for __builtin_assume(). 2020-10-12 18:07:39 -07:00
.gitignore
allocator.h
asio.h
assert.h
b58.h
b64.h
backtrace.h
byte_view.h ircd: Add template option to skip runtime conditional in byte_view conversion. 2020-09-17 10:49:41 -07:00
cbor.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h ircd::ed25519: Add create option to ctor; remove reference to global. 2020-09-15 18:46:28 -07:00
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 ircd::http: Fix buffer alignment. 2020-09-18 18:47:15 -07:00
icu.h
info.h ircd::info: Gather basic idents on aarch64. (closes #132) 2020-10-02 03:18:06 -07:00
ios.h
iov.h
ircd.h ircd: Add assume() convenience wrapping for __builtin_assume(). 2020-10-12 18:07:39 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am include/ircd/Makefile: Additional PCH options for various clangs; minor cleanup. 2020-09-15 04:33:28 -07:00
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
run.h
spirit.h ircd::spirit: Split boost includes for separate pragma clang system_header. 2020-09-18 23:40:34 -07:00
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

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