0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-08-28 20:35:16 +02:00
construct/include/ircd
2018-02-19 16:51:28 -08:00
..
ctx Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
db ircd::db: minor cleanup: move this here. 2018-02-07 23:15:17 -08:00
fs ircd: Move magic out of fs::. 2018-02-18 22:54:54 -08:00
js Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
json ircd::json: Ensure rvalue-reference ownership transfer for these ctors. 2018-02-18 22:38:23 -08:00
m ircd:Ⓜ️ Expose m::modules / m::listeners externs. 2018-02-19 00:36:45 -08:00
net ircd::net: Remove unused/erroneous has_timeout(). 2018-02-18 22:38:23 -08:00
server ircd::server: Fix error; fix regression. 2018-02-07 00:24:54 -08:00
util ircd::util: Ensure null termination after all direct writes into string. 2018-02-18 22:38:23 -08:00
.gitignore What is the Matrix? Control. 2017-03-10 17:51:18 -08:00
allocator.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
asio.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
base.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
buffer.h ircd::buffer: Improve typography/conversions related issues. 2018-02-19 16:51:28 -08:00
byte_view.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
client.h ircd: Move resource::request related off the stack into client. 2018-02-17 16:17:59 -08:00
color.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
date.h ircd:📅 Add ostream participants for time_points printing epoch seconds. 2018-02-12 19:30:44 -08:00
ed25519.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
exception.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
fmt.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
hash.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
http.h ircd: Rename the stream_buffer to window_buffer. 2018-02-07 21:54:41 -08:00
info.h ircd::info: Minor reorg / cleanup. 2018-02-19 13:32:34 -08:00
ios.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
iov.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
ircd.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
js.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
lex_cast.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
localee.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
logger.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
magics.h ircd: Move magic out of fs::. 2018-02-18 22:54:54 -08:00
Makefile.am Checkpoint reorganization. 2017-11-30 12:30:19 -08:00
mapi.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
mods.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
nacl.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
openssl.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
parse.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
rand.h ircd::rand: Modernize interface. 2018-02-15 12:53:00 -08:00
README.md ircd: Clarify namespaces in include README. 2018-01-23 15:07:05 -08:00
resource.h ircd: Move resource::request related off the stack into client. 2018-02-17 16:17:59 -08:00
rfc1035.h ircd::rfc1035: Comments; minor rearrange. 2018-02-05 21:24:35 -08:00
rfc1459.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
rfc3986.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
spirit.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
stdinc.h ircd: Move magic out of fs::. 2018-02-18 22:54:54 -08:00
string_view.h ircd: Move ctype<> into util::; add valid(string_view) boolean convenience. 2018-02-14 14:11:18 -08:00
stringops.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
tokens.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
vector_view.h Update Copyrastafaris. 2018-02-05 21:24:34 -08:00

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.