0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 01:58:35 +02:00
construct/include/ircd
2018-04-14 17:15:06 -07:00
..
buffer ircd::buffer: Add a data shifter for window_buffer. 2018-04-10 19:32:56 -07:00
ctx ircd::ctx: Fix bitrot in when_all() template. 2018-04-10 20:09:17 -07:00
db ircd::db: Update gopts; add seqnum option; fix missing readahead. 2018-04-13 22:46:31 -07:00
fs ircd::fs: Support the yielding stdin readline in libircd. 2018-03-23 22:52:36 -07:00
js
json ircd::json::stack: Handle and properly propagate flusher exception out of stack. 2018-04-13 16:03:34 -07:00
m ircd:Ⓜ️:vm: Properly propagate a context interruption to the evaluator. 2018-04-12 23:07:46 -07:00
mods ircd::mods: Fix reference cast initialization. 2018-03-26 02:28:02 -07:00
net ircd::net::dns: Add static fire-and-forget callbacks for prefetching. 2018-04-14 17:15:06 -07:00
server ircd::server: Use system time for error time state. 2018-04-13 20:02:48 -07:00
util ircd::util: Fix conditions for is_zero template test. 2018-04-11 23:40:30 -07:00
.gitignore
allocator.h ircd::allocate: Use std::aligned_storage for fixed allocator space. 2018-04-08 12:35:27 -07:00
asio.h
base.h
byte_view.h ircd: Add default construction for byte_view<string_view>. 2018-03-24 22:49:45 -07:00
client.h ircd::client: Add unique client id monotonic counter. 2018-04-14 17:15:06 -07:00
color.h
conf.h
date.h ircd: Support the chrono types in the timef() date suite. 2018-04-13 20:02:47 -07:00
demangle.h ircd: Consolidate demangle related into interface / unit. 2018-03-23 22:17:09 -07:00
ed25519.h
exception.h
fmt.h
hash.h ircd::openssl: Eliminate allocation of hashing ctx for oneshot ctor. 2018-04-08 12:29:55 -07:00
http.h ircd::http: Allow default constructed sentinel error. 2018-03-24 16:42:42 -07:00
info.h ircd::info: Gather information from rlimit if available. 2018-04-02 17:03:05 -07:00
ios.h
iov.h
ircd.h ircd: Add function to return daemon's uptime. 2018-04-14 17:15:06 -07:00
js.h
lex_cast.h
localee.h
logger.h ircd::log: Fix DCE not eliminating template parameter packs. 2018-03-24 14:55:53 -07:00
magics.h
Makefile.am
mapi.h ircd::mods: Provide a reference to the module's own handle inside the module. 2018-03-23 22:52:36 -07:00
nacl.h
openssl.h
parse.h
rand.h
README.md
resource.h ircd::resource: Add chunked encoding response suite. 2018-04-13 23:19:43 -07:00
rfc1035.h
rfc1459.h
rfc3986.h
spirit.h ircd::spirit: Missing typedefs. 2018-03-18 21:18:00 -07:00
stdinc.h ircd::mods: Split up; clean up; reorg. 2018-03-23 22:52:36 -07:00
string_view.h
stringops.h ircd: Simplify some stringops. 2018-04-06 22:23:18 -07:00
tokens.h ircd: Add tokens_before() to suite. 2018-03-25 17:32:57 -07:00
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.