0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-08-22 17:44:45 +02:00
construct/include/ircd
2018-09-22 15:04:38 -07:00
..
buffer ircd::buffer: Deconflict buffers templates in separate namespace. 2018-09-13 05:12:10 -07:00
cbor
ctx ircd::ctx::queue: Remove exception assertion on pops. 2018-09-19 01:44:13 -07:00
db ircd::db: Add sst dump writer; move sst tool. 2018-09-22 15:04:38 -07:00
fs Add datadir (share) configure, Makefile and ircd::fs related. 2018-09-13 22:02:52 -07:00
js
json ircd: Various fixes for resolution of constexpr string_view & hash related; cleanup. 2018-09-16 21:28:46 -07:00
m ircd:Ⓜ️ Reorg init/fini sequence. 2018-09-21 15:07:28 -07:00
mods ircd: Move m::import to mods::import where it is more appropriate. 2018-09-13 18:19:27 -07:00
net ircd::net::listener: Add callback to proffer the connection before handshake. 2018-09-01 22:12:49 -07:00
server ircd: Simplify/cleanup the coarse controls for client/server subsystems. 2018-09-17 16:47:36 -07:00
util ircd::util: Fix comment. 2018-09-15 10:15:02 -07:00
.gitignore
allocator.h
asio.h
base.h
byte_view.h ircd: Relax assertion. 2018-05-19 18:49:03 -07:00
client.h ircd: Simplify/cleanup the coarse controls for client/server subsystems. 2018-09-17 16:47:36 -07:00
color.h
conf.h ircd::conf: Enforce a max length on name strings. 2018-09-15 02:20:48 -07:00
date.h
demangle.h
ed25519.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
exception.h ircd::exception: Update comment. 2018-09-04 21:09:12 -07:00
fmt.h
hash.h ircd: Various fixes for resolution of constexpr string_view & hash related; cleanup. 2018-09-16 21:28:46 -07:00
http.h
info.h ircd::info: Fix some informational timestamps. 2018-09-05 23:32:52 -07:00
ios.h
iov.h
ircd.h construct: Add program option to disable direct IO. 2018-09-03 07:59:05 -07:00
js.h
lex_cast.h ircd: Rename; use precision for pretty_iec(). 2018-09-20 23:30:50 -07:00
localee.h
logger.h
magics.h
Makefile.am include/Makefile: Add other flags vars. 2018-09-17 18:52:26 -07:00
nacl.h
openssl.h
parse.h
rand.h
README.md
resource.h ircd::resource: Internalize the buffering boilerplate used with json::stack. 2018-09-04 22:03:12 -07:00
rfc1035.h
rfc1459.h
rfc3986.h
spirit.h
stdinc.h ircd: Add missing minutes chrono import. 2018-09-16 18:19:23 -07:00
string_view.h ircd: Various fixes for resolution of constexpr string_view & hash related; cleanup. 2018-09-16 21:28:46 -07:00
stringops.h ircd: Add ihas() case insensitive string searching. 2018-09-14 07:44:44 -07: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/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.