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-08-14 15:51:57 -07:00
..
buffer ircd::buffer: Export begin()/end() ADL's down to ircd::. 2018-07-04 21:48:15 -07:00
cbor ircd: Move preliminary cbor into directory. 2018-08-11 00:42:08 -07:00
ctx ircd::ctx: Fix future_state test grate. 2018-07-06 16:33:53 -07:00
db ircd::db: Checkpoint skeleton state structure for env. 2018-06-09 13:40:21 -07:00
fs ircd::fs: Update/fix syspaths related. 2018-08-12 16:46:52 -07:00
js ircd::js: Remove xdr. 2018-08-11 00:42:08 -07:00
json ircd::json: Perform unquote() in json::string ctor as described... 2018-06-12 01:00:15 -07:00
m ircd:Ⓜ️ Rename modules map to imports. 2018-08-14 15:51:57 -07:00
mods ircd::mods: Replace allocated string metadata with string_view based on common usage. 2018-07-01 14:42:28 -07:00
net ircd::net: Unionize datagram for bidirections. 2018-07-07 22:10:29 -07:00
server ircd::server: Clarify comment. 2018-07-06 19:29:49 -07:00
util ircd::util: Add specific endian bswaps e.g arpa/inet.h; minor cleanup. 2018-07-01 16:39:43 -07:00
.gitignore ircd: Consolidate stdinc.h and ircd.h and fix precompiled headers. 2018-06-15 16:13:18 -06:00
allocator.h ircd::allocator: Additional doc comment on profiler. 2018-06-09 14:37:31 -07:00
asio.h ircd: Remove ircd::strand related. 2018-07-06 00:44:24 -07:00
base.h
byte_view.h
client.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
color.h
conf.h ircd::conf: Simplify conf related; add \brief blerb. 2018-08-13 14:51:06 -07:00
date.h ircd:📅 Use the standard snprintf() here. 2018-06-01 14:24:45 -07:00
demangle.h
ed25519.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
exception.h
fmt.h ircd::fmt: Internalize specifier related; various cleanup. 2018-05-30 09:05:15 -07:00
hash.h
http.h ircd::http: Add 504 Gateway Timeout status. 2018-05-21 15:56:13 -07:00
info.h ircd::info: Add glibc related to info. 2018-06-09 13:42:35 -07:00
ios.h ircd: Remove ircd::strand related. 2018-07-06 00:44:24 -07:00
iov.h ircd::iov: Make node emplacement conditional. 2018-06-05 10:34:30 -07:00
ircd.h construct/ircd: Use hostname-based init from command line params. 2018-08-13 14:36:50 -07:00
js.h
lex_cast.h
localee.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
logger.h configure.ac/ircd: Add granular configure-time log level control. 2018-05-21 16:59:28 -07:00
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
parse.h ircd::parse: Add deprecation notice to this subsystem. 2018-05-30 09:09:48 -07:00
rand.h
README.md ircd: Consolidate stdinc.h and ircd.h and fix precompiled headers. 2018-06-15 16:13:18 -06:00
resource.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
rfc1035.h
rfc1459.h
rfc3986.h
spirit.h ircd::spirit: Import locals into namespace; minor cleanup. 2018-07-01 19:11:13 -07:00
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: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
tokens.h
vector_view.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07: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/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.