0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-01 22:35:20 +02:00
construct/include/ircd
2020-02-26 14:17:43 -08:00
..
buffer ircd::buffer: Add constructors which limit requested size to input buffer. 2019-12-31 11:23:20 -08:00
cbor ircd::cbor: Reconstitute head reader and utils. 2019-12-26 11:43:01 -08:00
ctx ircd::ctx: Relax member access. 2020-02-24 16:44:15 -08:00
db ircd::db: Inline pointer-conditional overloads for cache interface. 2020-02-19 08:50:36 -08:00
fs ircd::db::database::env: Fix linkage of fs::evict() options argument related. 2019-10-05 18:02:15 -07:00
http2
js
json ircd::json: Move exception construction branch to unlikely seg; minor cleanup. 2020-02-12 14:34:26 -08:00
m ircd:Ⓜ️:event: Fix signature interface regression; optimize call path. 2020-02-24 11:01:52 -08:00
mods ircd::mods: Add comparison operator suite for module instance. 2019-10-01 17:56:01 -07:00
net ircd::net::socket: Switch to deadline timer. 2019-10-08 19:30:48 -07:00
prof ircd::prof: Fix gnu_inline extern emission from clang. 2020-02-01 22:18:49 -08:00
resource ircd::resource: Add doxygen brief for suite; also note abstraction leak. 2019-12-02 17:50:11 -08:00
server ircd::server: Fix bug when overrun discarded in cancellation buffer. 2020-02-13 16:33:44 -08:00
util ircd::util: Disable undefined-var-template warning for clang. 2020-02-02 17:35:33 -08:00
.gitignore Abstract ircd::resource from ircd:Ⓜ️:resource; fix header stack. 2019-09-29 14:00:02 -07:00
allocator.h
asio.h ircd: Make exception.o as an asio unit for system_error interop; minor comments. 2020-02-26 11:50:10 -08:00
assert.h ircd: Use universal reference argument for always_assert(). 2020-02-23 20:53:27 -08:00
backtrace.h ircd: Add interface to backtrace(3). 2019-09-19 22:07:41 -07:00
base.h
byte_view.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h ircd: Move demangle() out of util. 2019-09-19 16:37:45 -07:00
ed25519.h ircd::ed25519: Use string_view for path ctor. 2019-10-02 18:16:55 -07:00
exception.h ircd: Split panic/terminate exception related into header. 2020-02-26 14:17:43 -08:00
fmt.h ircd::fmt: Introduce the format string literal operator. 2019-10-02 18:16:55 -07:00
globular.h
grammar.h
http.h ircd::http: Add format string error ctor template. 2019-09-28 14:12:53 -07:00
info.h ircd::info: Add section label comment. [skip ci] 2019-09-14 12:17:07 -07:00
ios.h ircd::ios: Remove unused fwddecl related 737d9dd1626. 2020-02-25 20:04:17 -08:00
iov.h
ircd.h ircd: Split panic/terminate exception related into header. 2020-02-26 14:17:43 -08:00
js.h
leb128.h ircd::leb128: Add RB_GENERIC condition on platform intrinsics. 2019-12-21 14:37:41 -08:00
lex_cast.h ircd: Support explicit float lex_cast. 2019-10-08 16:59:31 -07:00
localee.h
logger.h ircd::log: Remove duplicate condition for __assert_fail. 2020-02-10 18:54:59 -08:00
magick.h
magics.h
Makefile.am include/ircd/Makefile: Use expression for gch removal. 2019-10-14 10:27:19 -07:00
matrix.h Abstract ircd::resource from ircd:Ⓜ️:resource; fix header stack. 2019-09-29 14:00:02 -07:00
nacl.h
openssl.h ircd::openssl: Add getters for X509 from SSL_CTX. 2019-09-30 14:23:28 -07:00
panic.h ircd: Split panic/terminate exception related into header. 2020-02-26 14:17:43 -08:00
parse.h
pbc.h ircd: Add PBC stub. 2020-02-11 15:47:18 -08:00
portable.h ircd: Split stdinc into additional macros header. 2020-02-21 12:22:56 -08:00
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h ircd::rfc3986: Increase visibility of grammar namespace for clang. 2020-02-01 22:18:49 -08:00
run.h ircd::run: Add another runlevel; eliminate main callback; simplify. 2019-10-02 16:49:30 -07:00
spirit.h ircd::spirit: Fix upstream visibility related 737d9dd162. 2020-02-25 20:04:17 -08:00
stats.h
stdinc.h ircd: Split stdinc into additional macros header. 2020-02-21 12:22:56 -08:00
string_view.h
stringops.h ircd: Add overloads for counted character leading/trailing strip. 2020-01-23 20:55:13 -08:00
strl.h
strn.h ircd: Add strncpy++ tool. 2019-09-18 09:50:14 -07:00
timedate.h ircd: Inline single jump without LTO for now. 2019-09-21 12:14:01 -07:00
tokens.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().