0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-08 03:28:40 +02:00
construct/include/ircd
2018-02-27 01:00:12 -08:00
..
ctx ircd::ctx: Relax noinline attribute on prof::stack_usage_here() wrapper. 2018-02-20 15:40:40 -08:00
db
fs ircd::fs: Add remove() / rename() support. 2018-02-26 20:45:14 -08:00
js
json ircd::json: Add back support for tuple string reference indexing overloads. 2018-02-24 19:45:57 -08:00
m ircd:Ⓜ️:v1: Remove all the static default_opts. 2018-02-26 21:43:02 -08:00
net ircd::net/ircd::server: Rename misleading functions. 2018-02-26 22:49:44 -08:00
server ircd::server: Add more state for async ops; adjust post points. 2018-02-27 01:00:12 -08:00
util ircd::util: Retype ctype<> for const_buffer; fix return type; simplify loop. 2018-02-20 15:40:40 -08:00
.gitignore
allocator.h
asio.h
base.h
buffer.h ircd::buffer: Compiler errors when copy source may be string literal. 2018-02-19 19:45:44 -08:00
byte_view.h
client.h
color.h
date.h
ed25519.h
exception.h
fmt.h
hash.h
http.h ircd::http: Parse content_type convenience reference in response::head. 2018-02-26 04:00:36 -08:00
info.h ircd::info: Add name string / agency strings. 2018-02-19 16:51:28 -08:00
ios.h
iov.h
ircd.h
js.h
lex_cast.h
localee.h
logger.h ircd::log: Add interface to toggle facility to console. 2018-02-21 16:13:49 -08:00
magics.h ircd::magic: Add namespace \brief. 2018-02-22 20:32:10 -08:00
Makefile.am
mapi.h
mods.h ircd::mods: Add default constructions to sym_ptr et al. 2018-02-22 14:30:11 -08:00
nacl.h
openssl.h
parse.h ircd::parse: Add assertive information rather than throwing bad_function_call. 2018-02-19 19:45:44 -08:00
rand.h
README.md
resource.h ircd: Condition client timeout for longpoll; fix resource request reference. 2018-02-21 17:43:29 -08:00
rfc1035.h
rfc1459.h
rfc3986.h
spirit.h
stdinc.h
string_view.h
stringops.h
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/stdinc.h> and <ircd/ircd.h>. We have to offer two different pre-compilations: one with -fPIC and one without. Therefor the contents are in <ircd/stdinc.h> and the preprocessor determination for which is in <ircd/ircd.h>.

  • 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.