0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-06 00:35:34 +02:00
construct/include/ircd
2019-09-14 17:44:49 -07:00
..
buffer ircd::buffer: Add boolean operators. 2019-09-14 17:15:56 -07:00
ctx ircd::ctx::mutex: Add deadlock assertion on lock. 2019-09-10 12:12:10 -07:00
db ircd::db: Update defaults. 2019-08-26 22:40:13 -07:00
fs
http2
js
json ircd::json: Deinline member ctor. 2019-09-13 16:32:26 -07:00
m ircd:Ⓜ️:rooms: Split rooms::summary header. 2019-09-14 17:44:49 -07:00
mods
net ircd::net::socket: Minor cleanup; move warning into unlikely branch. 2019-09-14 12:17:07 -07:00
prof ircd::prof: Remove cruft; minor cleanup. 2019-09-12 10:18:51 -07:00
resource
server ircd::server::tag: Use explicit move assignment operations. 2019-09-14 16:55:57 -07:00
util ircd::util: Add maybe() exception tool. 2019-09-03 12:15:44 -07:00
.gitignore
allocator.h
asio.h
assert.h ircd: Add comment in debugtrap asm. 2019-09-03 10:07:07 -07:00
base.h
byte_view.h
client.h
cmp.h
color.h
conf.h
crh.h
demangle.h
ed25519.h
exception.h ircd::exception: Add hide_name construction overload to macro. 2019-08-26 11:10:30 -07:00
fmt.h
globular.h
grammar.h
http.h ircd::http: Add code 410 Gone. 2019-09-08 19:58:58 -07:00
info.h ircd::info: Add section label comment. [skip ci] 2019-09-14 12:17:07 -07:00
ios.h ircd::ctx: Additional internal wrappers in hot section. 2019-09-10 15:23:44 -07:00
iov.h
ircd.h ircd: Add info::versions instances for self API and ABI. 2019-09-07 14:10:01 -07:00
js.h
lex_cast.h
localee.h
logger.h
magick.h
magics.h
Makefile.am
nacl.h
openssl.h
parse.h
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h ircd::rfc3986: Use a namespace rather than struct here. 2019-08-22 01:25:43 -07:00
run.h
spirit.h
stats.h
stdinc.h
string_view.h
stringops.h ircd::stringops: Mark the has() template inline to avoid plt. 2019-08-24 16:49:01 -07:00
strl.h
timedate.h ircd: Add some timepoint convenience macros. 2019-08-29 17:12:15 -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().