0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 00:14:07 +01:00
construct/include/ircd
2018-02-05 18:54:55 -08:00
..
ctx ircd::ctx: Minor formatting. 2018-01-22 00:54:52 -08:00
db ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
fs ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
js
json ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
m ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
net ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
server ircd: These should be rvalue refs. 2018-01-30 23:13:27 -08:00
util ircd::util: Add string construction buffer closures over a common pattern. 2018-01-29 08:19:14 -08:00
.gitignore
allocator.h ircd: Minor comment cleanup. 2018-01-25 12:15:40 -08:00
array_view.h
asio.h ircd::net: Reorg DNS related; move resolver into header. 2018-01-28 14:28:33 -08:00
base.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
buffer.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
byte_view.h
client.h ircd: Final hints for devirtualization opportunities. 2018-01-26 21:58:52 -08:00
color.h ircd: Minor housekeeping fixes. 2018-01-12 03:22:57 -08:00
date.h ircd: Simplify various string generations. 2018-01-29 08:39:06 -08:00
ed25519.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
exception.h ircd: Exception macros need complete scope to be used outside ircd:: 2018-02-03 14:10:49 -08:00
fmt.h ircd::fmt: Add this overdue conversion. 2018-01-20 02:28:03 -08:00
hash.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
http.h ircd::http: Parse the server string into the response head. 2018-01-24 09:15:16 -08:00
info.h ircd::info: Involve utsname on supported; improve startup information. 2018-01-22 00:54:52 -08:00
ios.h ircd: Expose utilities for boost errors. 2018-01-12 15:04:30 -08:00
iov.h ircd: Condition the removal of the node on destruction. 2018-01-24 09:27:01 -08:00
ircd.h fixup! Pin boost to 1.66.0. 2017-12-29 15:53:39 -07:00
js.h
lex_cast.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
localee.h
logger.h ircd::log: Bring balance to the syntax (global logger only). 2018-01-22 00:54:51 -08:00
Makefile.am
mapi.h
mods.h
nacl.h
openssl.h ircd: Eliminate the raw_buffer concept. 2018-02-05 18:54:55 -08:00
parse.h
rand.h ircd: Minor housekeeping fixes. 2018-01-12 03:22:57 -08:00
README.md ircd: Clarify namespaces in include README. 2018-01-23 15:07:05 -08:00
resource.h ircd: Reorg client; add class members; pointer to current request; conf, etc. 2018-01-13 17:58:11 -08:00
rfc1035.h ircd::rfc1035: Dynamic abstraction for resource records; minor comments. 2018-02-05 18:54:55 -08:00
rfc1459.h ircd: Minor cleanup; comments; spacing. 2018-01-26 19:27:12 -08:00
rfc3986.h
spirit.h ircd::json: Add recursion depth checking. 2018-01-18 06:05:56 -08:00
stdinc.h ircd: Move params.h out to construct/ 2018-02-03 14:10:49 -08:00
string_view.h
stringops.h ircd: Use intuitive semantics for the strip() suite. 2018-01-22 00:54:51 -08: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/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.