0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 12:18:54 +02:00
construct/include/ircd
2020-06-27 14:24:50 -07:00
..
buffer
cbor
ctx ircd::ctx: Inline various codepaths leading to flags(ctx). 2020-06-18 03:56:09 -07:00
db ircd::db: Add fwd decl and accoutrements for rocksdb::PinnableSlice. 2020-06-18 20:07:40 -07:00
fs
http2
js
json ircd::json: Add stats items counting calls and cycles on input and output. 2020-06-24 11:00:11 -07:00
m ircd:Ⓜ️:event: Minor rename; additional diagnostic arguments. 2020-06-19 22:53:01 -07:00
mods
net ircd::stats: Refactor subsystem template hierarchy and approach. (#31) 2020-06-17 18:12:19 -07:00
prof ircd::prof: Add template options to constexpr-condition fence instructions. 2020-06-24 08:50:31 -07:00
resource
server
util ircd: Move fpe out of util. 2020-06-17 23:01:23 -07:00
.gitignore
allocator.h
asio.h
assert.h
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
fpe.h ircd::fpe: Inline errors_handle; minor include reorder. 2020-06-18 01:23:01 -07:00
globular.h
grammar.h
http.h ircd::http: Add status category enum; move static grammars out of function; minor reorg enums. 2020-06-12 17:01:09 -07:00
icu.h ircd::icu: Add encoding transform to suite; minor rename. 2020-06-25 18:36:18 -07:00
info.h ircd::info: Query for various clock characteristics of the runtime. 2020-06-11 17:09:56 -07:00
ios.h ircd::db: Minor remove cruft. (related 942e8330e6) 2020-06-18 20:07:40 -07:00
iov.h
ircd.h ircd: Remove legacy locale header / unit. 2020-06-20 05:41:14 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am ircd: Add ircd.h to matrix.h target deps list. 2020-06-27 14:24:50 -07:00
matrix.h
nacl.h
openssl.h
panic.h
parse.h
pbc.h
portable.h
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h ircd::run: Add additional UNLOAD runlevel on shutdown after QUIT. 2020-06-12 18:41:30 -07:00
simd.h ircd::simd: Add ymmx shifter specializations. 2020-06-25 12:55:22 -07:00
spirit.h ircd::spirit: Import alias for boost::fusion namespace; minor reorg. 2020-06-24 08:51:09 -07:00
stats.h ircd::stats: Add buffer-based stringifier to interface; simplify. 2020-06-17 20:28:05 -07:00
stdinc.h ircd: Cleanup/reorg of stdinc contents; remove experimental. 2020-06-27 14:24:34 -07:00
string_view.h
stringops.h
strl.h
strn.h
sys.h
time.h
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().