0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-07 09:15:19 +02:00
construct/include/ircd
2019-03-27 14:09:40 -07:00
..
buffer
ctx ircd::ctx: Expand the reference cycle counting interface. 2019-03-27 13:04:12 -07:00
db ircd::db::txn: Add a state enum to the txn. 2019-03-19 13:39:15 -07:00
fs ircd::fs::error: Remove fs::error from the ircd::exception hierarchy. 2019-03-16 18:12:38 -07:00
js
json ircd::json::tuple: Tweak the assignment suite to possibly fix issues with nested tuples. 2019-03-06 15:02:43 -08:00
m modules/s_fetch: Add branch for auth chain fetch/eval on missing room state for event. 2019-03-27 14:09:40 -07:00
mods ircd::mods: Support code and data demangled export sections. 2019-03-24 14:06:47 -07:00
net ircd::net: Add conf item to toggle ipv6 for ircd::net::. Auto-detect viability on net::init. 2019-03-25 15:18:06 -07:00
resource
server ircd::server: Add conf item to toggle ipv6 use. 2019-03-25 15:18:06 -07:00
util ircd::util::params: Relax class access. 2019-03-10 14:25:10 -07:00
.gitignore
allocator.h ircd::allocator: Add simple callback allocator. 2019-03-27 13:04:12 -07:00
asio.h
assert.h ircd: Add support for configurable soft-assertions. 2019-03-15 16:19:05 -07:00
base.h
byte_view.h
client.h
color.h
conf.h ircd::conf: Add more elaborate double-fault handling. 2019-03-11 12:53:22 -07:00
crh.h
date.h
demangle.h
ed25519.h
exception.h ircd::exception: Experimental elimination of copy and move semantics. 2019-03-16 17:22:44 -07:00
fmt.h
grammar.h
http.h ircd::http: Remove gratuitous error constructor; fix 505 response content. 2019-03-23 03:13:11 -07:00
info.h ircd::info: Get kernel name and version out of utsname if available. 2019-03-13 16:06:41 -07:00
ios.h ircd::ios: Add interface for user allocation closure at descriptor site. 2019-03-27 13:04:12 -07:00
iov.h
ircd.h ircd: Add support for configurable soft-assertions. 2019-03-15 16:19:05 -07:00
js.h
lex_cast.h
localee.h
logger.h ircd: Add support for configurable soft-assertions. 2019-03-15 16:19:05 -07:00
magics.h
Makefile.am
nacl.h
openssl.h ircd::openssl: Interface to set server name indication for client hello. 2019-03-13 13:32:56 -07:00
parse.h
rand.h
README.md
rfc1035.h ircd::rfc1035: Add json::stack serializations for record types. 2019-03-19 10:11:29 -07:00
rfc1459.h
rfc3986.h ircd::rfc3986: Reorg grammar stack; add variable valid() tool. 2019-03-25 12:25:25 -07:00
run.h
spirit.h
stats.h ircd::stats: Start a preliminary stats system. 2019-03-12 18:41:05 -07:00
stdinc.h ircd: Start a 128bit conditional typedef section in stdinc.h. 2019-03-21 16:46:04 -07:00
string_view.h
stringops.h
tokens.h ircd::tokens: Add token_exists() set membership test. 2019-03-09 17:03:52 -08:00
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().