0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 05:08:59 +02:00
construct/include/ircd
2020-04-24 21:58:57 -07:00
..
buffer ircd::buffer: Branchfree copy overload for single character. 2020-04-13 23:58:33 -07:00
cbor
ctx ircd::ctx: Profile peak stack usage at slice leave event. 2020-04-23 12:41:39 -07:00
db
fs ircd::fs: Refactor base paths into conf::items. 2020-04-19 06:13:23 -07:00
http2
js
json ircd::json::tuple: Fix type=NUMBER serial=true tuple assignment. 2020-04-22 05:34:12 -07:00
m ircd:Ⓜ️ Split init::backfill into acquire interface. 2020-04-24 15:24:37 -07:00
mods
net
prof
resource
server ircd::server: Add avail() convenience to interface. 2020-04-21 23:05:28 -07:00
util ircd::util: Add overload for what() on std::exception value-type. 2020-04-23 04:19:53 -07:00
.gitignore
allocator.h
asio.h
assert.h configure: Disable all __assert_fail() overrides unless explicit --with-assert option. 2020-04-11 15:11:43 -07:00
backtrace.h
base.h
byte_view.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h
fmt.h
globular.h
grammar.h
http.h ircd::http: Add X-Forwarded-For support to request header. 2020-04-22 23:39:56 -07:00
info.h
ios.h
iov.h
ircd.h ircd::magic: Add conf item for magic file path; default to $MAGIC from environment. #138 2020-04-19 18:29:08 -07:00
js.h
leb128.h
lex_cast.h
locale.h ircd: Rename formerly conflicting header files. 2020-04-19 16:45:30 -07:00
logger.h ircd::logger: Remove noreturn attribute. 2020-04-22 01:51:55 -07:00
magic.h ircd::fs::base: Make all items have persist=false behavior. 2020-04-19 17:53:22 -07:00
magick.h
Makefile.am
matrix.h
nacl.h
openssl.h
panic.h
parse.h
pbc.h
portable.h ircd: Add portable macro for __has_builtin(). 2020-04-24 21:58:57 -07:00
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h
simd.h
spirit.h ircd::spirit: Import the expect parser directive. 2020-04-17 18:58:17 -07:00
stats.h
stdinc.h
string_view.h
stringops.h ircd::stringops: Minor cleanup; formatting/consistency. 2020-04-05 13:02:20 -07:00
strl.h
strn.h
time.h ircd: Rename formerly conflicting header files. 2020-04-19 16:45:30 -07:00
tokens.h
vector_view.h ircd::vector_view: Add constructor for reasonable implicit const conversion of value_type. 2020-04-21 23:05:28 -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().