0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 16:52:44 +01:00
construct/include/ircd
2019-01-15 19:03:52 -08:00
..
buffer ircd::buffer: Export buffers:: down to ircd::. 2018-12-18 14:44:25 -08:00
ctx ircd::ctx: Partial de-inline of dock methods. 2019-01-13 13:57:34 -08:00
db ircd::db: Maintain our own names for caches. 2019-01-11 16:21:04 -08:00
fs ircd::fs: Minor comment clarification. 2019-01-05 17:18:43 -08:00
js
json ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
m ircd:Ⓜ️:event::fetch: Add options to seek(); add event_json query branch. 2019-01-15 19:03:52 -08:00
mods ircd::mods: Various cleanup. 2019-01-05 17:18:08 -08:00
net ircd::ctx: Use closure for continuation. 2018-12-22 21:03:14 -08:00
server
util ircd::util: Use a long double nanoseconds template rep. 2019-01-09 17:05:58 -08:00
.gitignore
allocator.h
asio.h configure: Move boost deprecation warning suppression to asio.h. 2018-12-28 14:35:10 -08:00
base.h
byte_view.h
client.h ircd::ctx: Create and use an options structure for ctx::pool. 2018-12-28 12:57:32 -08:00
color.h
conf.h ircd::conf: Update doc related to conf item env vars and the related namespace. 2018-12-28 13:36:23 -08:00
crh.h
date.h
demangle.h
ed25519.h
exception.h ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
fmt.h ircd::fmt: Minor simplify; cleanup. 2018-12-14 15:51:12 -08:00
fpe.h
http.h ircd::http: Add string views to make the raw head data available. 2019-01-12 11:56:00 -08:00
info.h ircd::info: Reorganize info. 2018-12-19 12:35:21 -08:00
ios.h ircd::ios: Add convenience function to check if this thread is same as static. 2018-12-28 13:24:33 -08:00
iov.h
ircd.h ircd: Remove unused ap/cbor on this branch. 2019-01-02 12:27:17 -08:00
js.h
lex_cast.h
localee.h
logger.h ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
magics.h
Makefile.am
nacl.h
openssl.h
parse.h ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
rand.h
README.md ircd::conf: Update doc related to conf item env vars and the related namespace. 2018-12-28 13:36:23 -08:00
resource.h
rfc1035.h
rfc1459.h
rfc3986.h
runlevel.h
spirit.h
stdinc.h
string_view.h
stringops.h ircd: Cleanup/simplify case-insensitive comparisons. 2018-12-31 12:28:28 -08:00
tokens.h
vector_view.h ircd: Tweak vector_view construction semantics. 2018-12-26 17:19:03 -08:00

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().