0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-08 09:45:41 +02:00
construct/include/ircd
2020-09-17 10:49:41 -07:00
..
buffer ircd::buffer: Export align related suite to ircd::. 2020-09-15 04:33:28 -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: Add preliminary custom rate limiter drop-in. 2020-09-15 04:33:28 -07:00
fs ircd::fs: Add prefetch convenience to interface. 2020-09-13 08:42:34 -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: Add specific option to toggle initial backfill jobs after startup. 2020-09-16 23:00:58 -07:00
mods
net ircd::stats: Refactor subsystem template hierarchy and approach. (#31) 2020-06-17 18:12:19 -07:00
prof ircd::prof::arm: Port rdtsc for aarch64. #132 2020-08-23 01:56:37 -07:00
resource
server
simd ircd::simd: Ensure return counts are bound to max values. 2020-09-13 08:42:34 -07:00
spirit ircd::spirit: Add comments documenting generator_state; assertions; minor cleanup. 2020-09-03 21:14:43 -07:00
util ircd::util: Improvements to timer tool; fix accumulator semantics; comments. 2020-09-10 23:50:47 -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
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 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 ircd::ed25519: Add create option to ctor; remove reference to global. 2020-09-15 18:46:28 -07:00
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 ircd::ctx: Specify inline linkage for various templates to prevent any dynsyms. 2020-07-11 15:41:57 -07:00
icu.h ircd::utf: Start an inline utf toolset. 2020-06-27 16:31:57 -07:00
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: Add distinct maintenance mode; chain write-avoid/read-only and net listen modes. 2020-09-15 22:16:11 -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 configure: Add configure-time libmagick indication. 2020-09-05 15:55:24 -07:00
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 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 ircd::run: Add additional UNLOAD runlevel on shutdown after QUIT. 2020-06-12 18:41:30 -07:00
spirit.h ircd::spirit: Hoist ad155e169d for full namespace. 2020-09-07 17:01:44 -07:00
stats.h ircd::stats: Add buffer-based stringifier to interface; simplify. 2020-06-17 20:28:05 -07:00
stdinc.h ircd: Check and include standard execution policies header. 2020-07-31 22:12:14 -07:00
string_view.h ircd: Add three-way comparison for string_view. 2020-09-10 23:50:47 -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 ircd::utf: Simplify interfaces with weak specializations for vector widths; template inline. 2020-09-03 21:14:43 -07:00
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().