0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-07 09:15:19 +02:00
construct/include/ircd
2018-01-18 03:55:28 -08:00
..
ctx ircd::ctx: Enforce semantics in mutex / shared_mutex; assertion related. 2018-01-17 03:33:08 -08:00
db ircd::db: Update comment. 2018-01-18 03:55:28 -08:00
fs ircd::fs: Simplify API/AIO by eliminating callback: ctx yield only for now. 2018-01-15 03:12:56 -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: On disconnect, turn an EOF ec into a success. 2018-01-15 19:46:23 -08:00
server ircd::server: Various fixes; error handling; minor cleanup. 2018-01-17 21:38:17 -08:00
util ircd::util: Fix bswap() to not rely on data()/size() et al. 2018-01-14 20:45:30 -08:00
.gitignore
allocator.h
array_view.h
asio.h ircd: Expose utilities for boost errors. 2018-01-12 15:04:30 -08:00
buffer.h ircd::buffer: Allow returning completed() mutable_buffer. 2018-01-14 20:45:30 -08:00
byte_view.h
client.h ircd: Reorg client; add class members; pointer to current request; conf, etc. 2018-01-13 17:58:11 -08:00
color.h ircd: Minor housekeeping fixes. 2018-01-12 03:22:57 -08:00
date.h ircd: Use address of ::gettimeofday to resolve error in g++-7. 2018-01-17 21:38:18 -08:00
ed25519.h
exception.h ircd: Utils for std::system_error related; minor cleanup. 2018-01-10 21:43:49 -08:00
fmt.h
hash.h
http.h ircd::http: Allow default construction on response head. 2018-01-13 18:03:26 -08:00
info.h ircd::info: Add additional line of information in debug log. 2018-01-17 21:38:17 -08:00
ios.h ircd: Expose utilities for boost errors. 2018-01-12 15:04:30 -08:00
iov.h
ircd.h fixup! Pin boost to 1.66.0. 2017-12-29 15:53:39 -07:00
js.h
lex_cast.h
localee.h
logger.h
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
openssl.h ircd::openssl: Add function to print subject of certificate. 2018-01-12 15:31:58 -08:00
params.h ircd::util: Add a count for the params size. 2017-11-30 11:23:44 -08:00
parse.h
rand.h ircd: Minor housekeeping fixes. 2018-01-12 03:22:57 -08:00
README.md doc: Move conventions to STYLE; ircd: Add additional README related. 2018-01-04 17:44:34 -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: Add preliminary RFC1035 support. 2018-01-14 20:45:30 -08:00
rfc1459.h ircd: Minor cleanup of rfc1459 header. 2018-01-12 13:13:37 -08:00
rfc3986.h ircd: Add preliminary RFC3986 grammar; move urlencoding there. 2017-12-12 14:59:40 -07:00
spirit.h
stdinc.h ircd: Use feature test macros here. 2018-01-17 21:38:17 -08:00
string_view.h ircd: Comment on ctype(string_view). 2017-12-24 21:54:59 -07:00
stringops.h
tokens.h
vector_view.h

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.