0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-08 17:55:47 +02:00
construct/include/ircd
2018-01-10 00:57:43 -08:00
..
ctx ircd::ctx: Add use_future_t; minor cleanup. 2018-01-08 12:40:09 -08:00
db ircd::db: Update README; remove old cruft. 2017-12-03 13:34:42 -08:00
js
json ircd: Add some abstract (non json::) tuple related. 2017-12-24 19:26:05 -07:00
m ircd: We don't need this here; RocksDB has interface. 2018-01-04 17:44:34 -08:00
net ircd::net: Improve wait related; fix issues with bad behavior. 2018-01-08 18:33:05 -08:00
.gitignore
allocator.h ircd: Truncate comment. 2017-11-30 11:23:42 -08:00
array_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00
asio.h ircd::net: Move some string() / various cleanup. 2018-01-04 17:44:34 -08:00
buffer.h ircd: buffer/net: Minor cleanup. 2018-01-04 17:44:34 -08:00
byte_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00
client.h ircd: Various fixes and elaborations to client/net. 2018-01-08 21:49:00 -08:00
color.h
date.h ircd: Wrap call to gettimeofday() with posix exception generator. 2017-10-17 00:43:25 -07:00
ed25519.h ircd::ed25519: Add exception hierarchy here; add bad_sig exception. 2017-10-15 21:14:38 -07:00
exception.h ircd: Add ircd::assertion and exception suite for assertive errors. 2018-01-08 13:42:54 -08:00
fmt.h ircd: Add additional comments / documentation. 2017-10-15 21:40:10 -07:00
fs.h ircd::fs: Use direct kernel interface rather than glibc aio nonsense. 2018-01-10 00:55:08 -08:00
hash.h ircd: Remove the $() for hashes. This will make for a better $(event_id) device... 2017-11-30 11:23:43 -08:00
http.h ircd: Various fixes to net related call points. 2018-01-06 23:27:02 -08:00
info.h
ios.h ircd: Add fwd decl of boost::system::errc namespace. 2018-01-08 13:42:54 -08:00
iov.h ircd: Evade type-punning the iov list node. 2017-10-11 18:18:18 -07:00
ircd.h fixup! Pin boost to 1.66.0. 2017-12-29 15:53:39 -07:00
js.h
lex_cast.h ircd: Add std::chrono lex_cast; cleanup lex_cast buffer argument related. 2017-10-17 00:41:51 -07:00
life_guard.h
localee.h
logger.h ircd::log: Address any logger reentrancy; various cleanup. 2017-10-17 00:41:10 -07:00
Makefile.am Checkpoint reorganization. 2017-11-30 12:30:19 -08:00
mapi.h
mods.h ircd::mods: Add remangling to module system (pre dll::smart_lib); cleanup. 2017-12-02 13:07:55 -08:00
nacl.h ircd: Add ed25519 dsa; reorg sodium related. 2017-10-03 04:27:13 -07:00
openssl.h ircd::openssl: Add convenience to copy out certificate CN. 2018-01-05 16:59:26 -08:00
params.h ircd::util: Add a count for the params size. 2017-11-30 11:23:44 -08:00
parse.h ircd: Add mutable_buffer ctor to parse::buffer; cleanup parse related. 2017-10-11 18:18:17 -07:00
rand.h
README.md doc: Move conventions to STYLE; ircd: Add additional README related. 2018-01-04 17:44:34 -08:00
resource.h ircd::http: Massage additional header related into response interface/stack. 2017-12-24 21:54:59 -07:00
rfc1459.h ircd: Update various comments / documentation. 2017-12-12 14:59:40 -07:00
rfc3986.h ircd: Add preliminary RFC3986 grammar; move urlencoding there. 2017-12-12 14:59:40 -07:00
server.h ircd: Add interrupt for server dtor. 2017-11-30 11:23:46 -08:00
spirit.h
stdinc.h ircd: Import std::nothrow_t. 2018-01-10 00:57:43 -08:00
string_view.h ircd: Comment on ctype(string_view). 2017-12-24 21:54:59 -07:00
stringops.h ircd: Maintain data pointer of string_view's through various ops. 2017-11-30 11:23:43 -08:00
timer.h
tokens.h fixup! ircd: Add std::chrono lex_cast; cleanup lex_cast buffer argument related. 2017-10-17 00:46:09 -07:00
tuple.h ircd: Add some abstract (non json::) tuple related. 2017-12-24 19:26:05 -07:00
util.h ircd::util: Extend return value in syscall() suite. 2018-01-09 16:24:42 -08:00
vector_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00

IRCd Library API

Project Namespaces

  • IRCD_ Preprocessor #define and macro namespace.
  • RB_ Preprocessor #define and macro namespace (legacy / low-level).
  • ircd_ C namespace and demangled bindings.
  • ircd:: C++ namespace scope.

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.