0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-12 03:29:15 +02:00
construct/include/ircd
2019-06-26 01:52:42 -07:00
..
buffer ircd: Fix attributes for clang. 2019-06-23 07:37:23 -06:00
ctx ircd::prof: Add extern keyword for c89 semantics via gnu_inline in clang for odr. 2019-06-24 01:33:41 -07:00
db ircd: Fix cast-conversion based reference-constructions. 2019-06-22 17:36:42 -06:00
fs ircd::fs::path: Use scoped enum for fs::path::base paths. 2019-06-23 07:37:23 -06:00
http2 ircd::http2: Start an RFC7540 implementation. 2019-06-21 16:54:22 -07:00
js
json Misc fixes for clang. 2019-06-24 01:34:14 -07:00
m ircd:Ⓜ️:keys: Add pretty()/pretty_oneline() output diagnostics. 2019-06-25 07:42:13 -07:00
mods Misc fixes for clang. 2019-06-24 01:34:14 -07:00
net ircd: Misc fixes for clang. 2019-06-23 16:22:06 -06:00
resource
server
util ircd: Misc fixes for clang. 2019-06-23 16:22:06 -06:00
.gitignore include/ircd: Handle *.gch.tmp files from clang. 2019-06-23 01:27:49 -06:00
allocator.h ircd: Misc fixes for clang. 2019-06-23 16:22:06 -06:00
asio.h
assert.h
base.h ircd: Add RFC4648 base64url conversion suite. 2019-06-26 01:52:42 -07:00
byte_view.h
client.h
color.h
conf.h
crh.h
date.h
demangle.h ircd::util: Fix inline namespace reopening for clang. 2019-06-23 07:37:23 -06:00
ed25519.h
exception.h ircd: Add plain string terminate. 2019-06-23 16:16:39 -06:00
fmt.h
grammar.h
http.h
info.h ircd: Explicit instance_list destructor template instantiations for clang. 2019-06-24 01:33:00 -06:00
ios.h ircd: Fix main thread assertion. 2019-06-24 03:55:11 -07:00
iov.h
ircd.h ircd::http2: Start an RFC7540 implementation. 2019-06-21 16:54:22 -07:00
js.h ircd: Misc fixes for clang. 2019-06-23 16:22:06 -06:00
lex_cast.h ircd: Fix attributes for clang. 2019-06-23 07:37:23 -06:00
localee.h
logger.h ircd: Explicit instance_list destructor template instantiations for clang. 2019-06-24 01:33:00 -06:00
magick.h
magics.h
Makefile.am include/ircd: Handle *.gch.tmp files from clang. 2019-06-23 01:27:49 -06:00
nacl.h
openssl.h
parse.h
prof.h ircd::prof: Add extern keyword for c89 semantics via gnu_inline in clang for odr. 2019-06-24 01:33:41 -07:00
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h
spirit.h
stats.h
stdinc.h ircd: Misc fixes for clang. 2019-06-23 16:22:06 -06:00
string_view.h ircd: Mark recommended noexcept on inline constructors. 2019-06-22 17:36:42 -06:00
stringops.h ircd: Add mutable_buffer based replace_copy stringop. 2019-06-26 01:44:23 -07:00
tokens.h
vector_view.h

IRCd Library API

Project Namespaces

  • IRCD_ Preprocessor #define and macros.
  • 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.
  • ircd_ Environmental variables (see: conf.h).

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.

Invocation

libircd is not thread-safe. It does not protect exposed interfaces with locks. Embedders must access libircd from a single thread.

Initialize the library with a call to ircd::init().