0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-22 11:58:21 +02:00
construct/include/ircd
2019-04-23 01:30:36 -07:00
..
buffer ircd::buffer: Tweak unique_buffer semantics. 2019-04-18 00:59:56 -07:00
ctx ircd::ctx: Use iteration closure rather than exposing ctx::list. 2019-04-19 20:50:22 -07:00
db ircd::db: Add write-ahead-log recovery callback surface. 2019-04-20 14:30:42 -07:00
fs ircd::fs: Make ~fd() noexcept. 2019-04-22 09:16:11 -07:00
js ircd: Remove the legacy AFP() / AFGP() macros. 2018-12-08 13:51:33 -08:00
json ircd::json::stack: Improve active checkpoint invalidation related. 2019-03-30 14:58:34 -07:00
m ircd:Ⓜ️ Unsplit event/event.h room/room.h. 2019-04-22 21:38:27 -07:00
mods ircd::mapi: Force the header inline so the module contains the constants. 2019-04-18 17:36:33 -07:00
net ircd::net: Addition assertions; use constrefs in handler cbs. 2019-04-16 21:39:43 -07:00
resource ircd::resource: Add conditional method list generator. 2019-03-31 19:15:45 -07:00
server ircd::server: Use a uniform log prefix for link related. 2019-04-22 12:13:27 -07:00
util ircd::util: Null the instance_list allocator ptr after use. 2019-04-19 17:42:34 -07:00
.gitignore
allocator.h ircd::allocator: Renamespace the vg utils. 2019-04-19 05:26:51 -07:00
asio.h ircd: Various quietudes. 2019-02-16 15:25:36 -08:00
assert.h ircd: Add support for configurable soft-assertions. 2019-03-15 16:19:05 -07:00
base.h
byte_view.h
client.h Eliminate friend-injection. 2019-02-15 18:48:59 -08:00
color.h
conf.h ircd::conf: Add more elaborate double-fault handling. 2019-03-11 12:53:22 -07:00
crh.h ircd::crh: Add HMAC support. 2019-01-19 13:20:58 -08:00
date.h ircd: Move smalldate() to date.h from logger unit. 2019-04-17 19:27:26 -07:00
demangle.h
ed25519.h
exception.h ircd: Additional system_error translation utils. 2019-04-03 21:05:39 -07:00
fmt.h ircd::fmt: Minor simplify; cleanup. 2018-12-14 15:51:12 -08:00
grammar.h ircd: Start a stdinc grammar header as a front to spirit.h. 2019-02-26 12:57:43 -08:00
http.h ircd::http: Remove gratuitous error constructor; fix 505 response content. 2019-03-23 03:13:11 -07:00
info.h ircd::info: Remove ununused; minor reorg. 2019-04-23 01:30:36 -07:00
ios.h ircd::ios: Fix overzealous universal construction of handler. 2019-04-16 18:33:01 -07:00
iov.h
ircd.h ircd: Precompile the spirit.h header. 2019-04-20 19:24:18 -07:00
js.h ircd: Disperse accumulated global options as conf items in namespaces. 2018-12-08 15:36:34 -08:00
lex_cast.h ircd: Reduce the size of the lex_cast ringbuffer; deinline the sizes. 2019-03-01 11:47:13 -08:00
localee.h
logger.h ircd: Move smalldate() to date.h from logger unit. 2019-04-17 19:27:26 -07:00
magics.h
Makefile.am ircd: Apply low-memory compile flags to spirit.h.gch. 2019-04-20 19:24:18 -07:00
nacl.h
openssl.h ircd::openssl: Interface to set server name indication for client hello. 2019-03-13 13:32:56 -07:00
parse.h ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
prof.h ircd::prof: Add callgrind hypercall suite. 2019-04-19 05:53:54 -07:00
rand.h
README.md ircd::conf: Update doc related to conf item env vars and the related namespace. 2018-12-28 13:36:23 -08:00
rfc1035.h ircd::rfc1035: Add json::stack serializations for record types. 2019-03-19 10:11:29 -07:00
rfc1459.h
rfc3986.h ircd::spirit: Apply hidden visibility to all headers + our internal grammar namespaces. 2019-04-16 18:33:01 -07:00
run.h ircd: Add restart support w/ console cmd. 2019-03-02 14:20:52 -08:00
spirit.h ircd: Precompile the spirit.h header. 2019-04-20 19:24:18 -07:00
stats.h ircd::stats: Add value; add operator/access suite. 2019-04-18 17:56:09 -07:00
stdinc.h ircd: Start a 128bit conditional typedef section in stdinc.h. 2019-03-21 16:46:04 -07:00
string_view.h
stringops.h ircd: Cleanup/simplify case-insensitive comparisons. 2018-12-31 12:28:28 -08:00
tokens.h ircd::tokens: Add token_exists() set membership test. 2019-03-09 17:03:52 -08:00
vector_view.h ircd: Tweak vector_view construction semantics. 2018-12-26 17:19:03 -08: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().