0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-27 07:54:05 +01:00
construct/include/ircd
2020-11-11 12:54:32 -08:00
..
buffer ircd::buffer: Fix missing align_up() result wrapping. 2020-11-05 22:10:53 -08:00
ctx ircd::buffer: Fix template name conflicts for clang-11; apply inline linkages. 2020-10-29 04:06:59 -07:00
db construct: Remove -checkdb flag; replace w/ -diagnostic checkdb. 2020-11-05 22:10:53 -08:00
fs ircd::allocator: Add incore(); replace as fs::fincore() impl. 2020-11-05 22:10:53 -08:00
http2
js
json ircd::buffer: Fix template name conflicts for clang-11; apply inline linkages. 2020-10-29 04:06:59 -07:00
m ircd:Ⓜ️:room::head::fetch: Add opts for result limitations. 2020-11-05 22:10:54 -08:00
mods
net ircd::net::dns::resolver: Improve timeout cycle; avoid false positives under load. 2020-11-06 22:06:16 -08:00
prof ircd::prof: Fallback to __builtin_readcyclecounter() if available. 2020-10-12 18:07:39 -07:00
resource ircd::resource: Add untokenized params view to request struct. 2020-10-12 18:07:39 -07:00
server ircd::server: Add DNS expiration TTL state to peer. 2020-11-05 22:10:54 -08:00
simd ircd:Ⓜ️:room: Fix stale comment. [ci skip] 2020-10-29 03:00:48 -07:00
spirit ircd::spirit: Increase expectation rule buffer size. 2020-11-05 22:10:53 -08:00
util ircd: Replace callsites w/ template deduced mutable_cast. 2020-11-05 22:10:53 -08:00
.gitignore
allocator.h ircd::allocator: Add incore(); replace as fs::fincore() impl. 2020-11-05 22:10:53 -08:00
asio.h ircd: Replace callsites w/ template deduced mutable_cast. 2020-11-05 22:10:53 -08:00
assert.h
b58.h
b64.h
backtrace.h
byte_view.h
cbor.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h
exec.h ircd::exec: Implement callback handler suite; async wait(). 2020-10-24 05:41:46 -07:00
fmt.h
fpe.h
globular.h
grammar.h
http.h
icu.h
info.h
ios.h
iov.h
ircd.h ircd::proc: Add basic subprocess interface; ios integration. 2020-10-20 23:20:41 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am include/ircd/Makefile: Set clang equiv of -fmax-errors. 2020-10-29 03:00:48 -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 ircd::rfc3986: Add REMOTE_MAX / REMOTE_BUFSIZE convenience constexprs. 2020-10-16 02:40:39 -07:00
run.h ircd::buffer: Fix template name conflicts for clang-11; apply inline linkages. 2020-10-29 04:06:59 -07:00
spirit.h
stats.h
stdinc.h ircd: Remove std execution header. 2020-11-11 12:54:32 -08:00
string_view.h ircd: Instrument against string_view(string&&) impossible construction.. 2020-10-28 03:31:55 -07:00
stringops.h
strl.h
strn.h
sys.h
time.h
tokens.h
utf.h
vector_view.h
vg.h ircd::vg: Add stack register/deregister to interface. 2020-10-16 14:32:06 -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().