0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 10:12:39 +01:00
construct/include/ircd
2018-10-30 12:18:16 -07:00
..
buffer ircd::buffer: Enable the templated value for unique_buffer alignment. 2018-10-18 09:01:25 -07:00
cbor
ctx ircd::ctx: Reorg / abstract / deinline promise related. 2018-10-30 12:18:16 -07:00
db ircd::db: Refactor column indexing and state to handle dropped columns. 2018-10-22 07:09:55 -07:00
fs
js
json ircd: Various fixes for resolution of constexpr string_view & hash related; cleanup. 2018-09-16 21:28:46 -07:00
m ircd:Ⓜ️:room::power: Simplify level_event / level_state interface related. 2018-10-27 14:27:53 -07:00
mods ircd::mods: Improve MAPI header layout; various cleanup. 2018-10-25 13:03:07 -07:00
net ircd: Add ios unit to provide a more central control point for asio. 2018-10-17 05:12:10 -07:00
server ircd::server: deinline peer::err ctor. 2018-10-21 05:35:02 -07:00
util ircd::util: Deinline various utils; minor cleanup. 2018-10-25 13:39:41 -07:00
.gitignore
allocator.h
asio.h
base.h
byte_view.h
client.h ircd::client: Add snomask'ed log facility. 2018-10-24 12:44:00 -07:00
color.h
conf.h ircd::conf: Disambiguate string item access via cast conversion. 2018-10-02 15:58:03 -07:00
date.h ircd: Add missing using std::chrono::duration in stdinc main imports. 2018-10-21 00:55:33 -07:00
demangle.h
ed25519.h
exception.h ircd: Add assertion() overload taking message string. 2018-10-15 22:31:28 -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 ircd::http: Support 524 "A Timeout Occurred" 2018-10-01 11:30:34 -07:00
info.h
ios.h ircd: Add ios unit to provide a more central control point for asio. 2018-10-17 05:12:10 -07:00
iov.h
ircd.h
js.h
lex_cast.h ircd: Move a2u / pretty() suites from lex_cast to util::; start util.cc unit. 2018-10-21 01:00:41 -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: Add snomask'ed log facility. 2018-10-24 12:44:13 -07:00
rfc1035.h ircd::rfc1035: Add reverse qtype mapping. 2018-09-30 20:18:32 -07:00
rfc1459.h
rfc3986.h ircd::rfc3986: Add validation suite for hostname strings related. 2018-10-02 18:11:50 -07:00
spirit.h ircd::spirit: Add a template for the common expectation failure rethrow integration. 2018-10-02 18:11:50 -07:00
stdinc.h ircd: Add missing using std::chrono::duration in stdinc main imports. 2018-10-21 00:55:33 -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
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.