0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-15 22:41:12 +01:00
construct/include/ircd
2018-09-04 06:35:10 -07:00
..
buffer ircd::buffer: Support release() for unique_buffer. 2018-08-18 17:43:59 -07:00
cbor ircd: Move preliminary cbor into directory. 2018-08-11 00:42:08 -07:00
ctx ircd::ctx: Break down when() templates; fix mutability. 2018-08-30 21:20:43 -07:00
db ircd::db: Use our cache wrapping for block and compressed column caches. 2018-09-02 17:53:24 -07:00
fs ircd::fs: Test if O_DIRECT possible on path target. 2018-09-04 01:43:21 -07:00
js ircd::js: Remove xdr. 2018-08-11 00:42:08 -07:00
json
m ircd:Ⓜ️ Add pretty_msgline() suite. 2018-09-04 06:35:10 -07:00
mods ircd::mods: Minor cleanup. 2018-08-17 12:51:49 -07:00
net ircd::net::listener: Add callback to proffer the connection before handshake. 2018-09-01 22:12:49 -07:00
server
util ircd::util: Add instance_multimap. 2018-09-01 21:04:34 -07:00
.gitignore
allocator.h ircd::allocator: Add state::available(n) query. 2018-08-25 18:46:54 -07:00
asio.h
base.h
byte_view.h
client.h ircd::client: Move client make_shared into ircd/client.cc due to SO issues. 2018-09-01 22:35:01 -07:00
color.h
conf.h ircd::conf: Add item init callback. 2018-09-03 04:41:14 -07:00
date.h
demangle.h
ed25519.h
exception.h ircd: Add make_error_code(std::system_error) for completeness. 2018-08-23 03:23:59 -07:00
fmt.h ircd::fmt: Internalize specifier related; various cleanup. 2018-05-30 09:05:15 -07:00
hash.h
http.h ircd::http: Simplify interface; DRY. 2018-08-30 19:00:07 -07:00
info.h ircd::info: Sample system page size from sysconf(). 2018-08-23 01:09:11 -07:00
ios.h
iov.h
ircd.h construct: Add program option to disable direct IO. 2018-09-03 07:59:05 -07:00
js.h
lex_cast.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
localee.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
logger.h
magics.h ircd::magic: Minor cleanup. 2018-08-11 00:42:08 -07:00
Makefile.am ircd: Consolidate stdinc.h and ircd.h and fix precompiled headers. 2018-06-15 16:13:18 -06:00
nacl.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
openssl.h ircd::openssl/ircd::net: Add presupplied rfc3526 DH parameters. 2018-08-29 16:16:55 -07:00
parse.h
rand.h ircd::rand: Add note to rand::integer(). 2018-08-22 17:19:18 -07:00
README.md
resource.h ircd::resource: Make response head buffer size a named const; fix comment. 2018-08-25 13:58:49 -07:00
rfc1035.h ircd::rfc1035: Provide remaining default construction values. 2018-04-28 18:33:57 -07:00
rfc1459.h
rfc3986.h
spirit.h
stdinc.h ircd: Replace iostream include with iosfwd to elide inits in every unit. 2018-07-01 14:29:52 -07:00
string_view.h ircd: Make some fundamental string_view ADL's constexpr. 2018-06-19 21:30:29 -06:00
stringops.h ircd: Fix bug. 2018-09-04 00:43:54 -07:00
tokens.h
vector_view.h

IRCd Library API

Project Namespaces

  • IRCD_ Preprocessor #define, macro, and environmental variables.
  • 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.

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.