0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 00:14:07 +01:00
construct/include/ircd
2020-08-29 17:38:54 -07:00
..
buffer ircd::buffer: Minor cleanup; operator stack reuse. 2020-08-29 17:38:54 -07:00
ctx ircd::ctx: Remove leaf attribute; use hot section attribute in unit. 2020-08-23 02:32:54 -07:00
db ircd:Ⓜ️:db: Additional debug for txn contents. 2020-08-28 05:18:57 -07:00
fs ircd::fs: Add interface to mmap fd. 2020-08-28 05:18:57 -07:00
http2
js
json ircd::json::tuple: Use inline linkage for key() suite related. 2020-08-05 18:42:24 -07:00
m ircd:Ⓜ️:homeserver: Split bootstrap related into unit. 2020-08-28 05:18:57 -07:00
mods
net
prof ircd::prof::arm: Port rdtsc for aarch64. #132 2020-08-23 01:56:37 -07:00
resource
server
simd ircd::simd: Use explicit instantiations w/ optimal conversions for lzcnt/tzcnt generation. 2020-08-23 02:32:54 -07:00
util ircd::util: Move _constexpr_equal() out of util for now. 2020-08-04 16:50:56 -07:00
.gitignore
allocator.h
asio.h
assert.h
b58.h ircd: Split base64 and base58 into separate namespaces. 2020-08-10 04:56:28 -07:00
b64.h ircd::b64: Fixes for size computing constexprs. 2020-08-21 06:21:49 -07:00
backtrace.h ircd::backtrace: Add array template construction overload. 2020-05-02 23:57:53 -07:00
byte_view.h
cbor.h ircd::cbor: Remove cruft; collapse directory for now. 2020-07-31 21:34:45 -07:00
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h ircd: Tweak exception stack linkages for optimal code generation. 2020-08-05 19:52:48 -07:00
fmt.h
fpe.h ircd::fpe: Add scope_round tool. 2020-08-09 02:39:31 -07:00
globular.h
grammar.h
http.h
icu.h
info.h Revert _SC_CLK_TCK removal for convenience and exotic systems. 2020-07-31 19:17:06 -07:00
ios.h ircd::ios: Add epoch history in circular buffer for profiling w/ console cmd. 2020-08-02 05:45:35 -07:00
iov.h
ircd.h ircd::b64: Improve loop control and range constraints. 2020-08-11 16:15:53 -07:00
js.h
leb128.h
lex_cast.h ircd: Delete unspecialized template for lex_castable. 2020-08-05 19:16:04 -07:00
logger.h
magic.h
magick.h ircd: Move magick support to core lib. (#109) 2020-08-24 03:04:05 -07:00
Makefile.am Reserve EXTRA_* flag sets for user. 2020-07-30 06:38:51 -07:00
matrix.h
nacl.h
openssl.h
panic.h ircd: Tweak exception stack linkages for optimal code generation. 2020-08-05 19:52:48 -07:00
parse.h
pbc.h
portable.h
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h ircd::rfc3986: Consolidate visibility attributions; additional comments. 2020-08-21 06:20:26 -07:00
run.h
spirit.h ircd::spirit: Assert buffer depth; fix constness; simplify condition; optimize types. 2020-08-29 17:38:54 -07:00
stats.h
stdinc.h ircd: Check and include standard execution policies header. 2020-07-31 22:12:14 -07:00
string_view.h ircd: Add template for constexpr literal overloads. 2020-08-04 18:50:55 -07:00
stringops.h ircd: Replace inefficient std::replace(). 2020-08-10 04:56:28 -07:00
strl.h
strn.h
sys.h
time.h
tokens.h
utf.h
vector_view.h ircd::vector_view: Apply noexcept specifier. 2020-08-21 06:20:26 -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().