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-06-06 19:41:48 -07:00
..
buffer configure: Define HAVE_SODIUM in config.h on pkg found. 2019-06-06 03:54:37 -07:00
ctx ircd::ctx: Rename function; add overload for total value. 2019-05-26 02:49:24 -07:00
db ircd::db: Expose subroutines from db::init. 2019-06-06 18:47:44 -07:00
fs ircd::fs: Add ability to change basepath values at runtime. 2019-06-06 17:38:12 -07:00
js
json ircd::json: Fix cause of STB_GNU_UNIQUE emission after use of at() template. 2019-05-16 22:36:19 -07:00
m ircd:Ⓜ️:init: Improve exception propagation and abortive shutdown. 2019-06-06 19:41:48 -07:00
mods ircd::mods::ldso: Add a DT_NEEDED iterator. 2019-06-04 03:18:03 -07:00
net ircd::net::acceptor: Elide the accepting list for single-accept [revertible]. 2019-06-01 17:10:49 -07:00
resource ircd::resource: Reduce m:: type dependency in request structure. 2019-05-06 11:16:44 -07:00
server ircd::server:🔗 Add noexcept on handlers. 2019-05-02 15:35:26 -07:00
util ircd::util: Add a weak interface for the test trigger stub. 2019-05-24 18:24:33 -07:00
.gitignore
allocator.h ircd: Add interface for core valgrind hypercalls. 2019-05-28 20:46:40 -07:00
asio.h ircd: Add visibility pragma in stdinc.h 2019-05-02 16:45:27 -07:00
assert.h ircd: Add conditioned debugtrap() utility in assert suite. 2019-05-28 16:55:41 -07:00
base.h
byte_view.h
client.h
color.h
conf.h
crh.h
date.h ircd: Tweak smalldate fmt. 2019-05-05 20:00:52 -07:00
demangle.h
ed25519.h
exception.h ircd: Deinline exception::what(). 2019-05-27 03:07:59 -07:00
fmt.h
grammar.h ircd: Add comment in spirit header. 2019-05-06 10:42:11 -07:00
http.h ircd::http: Parse the HTTP/1.1 Upgrade header. 2019-05-30 21:48:40 -07:00
info.h ircd::info: Get more extended feature bits; various cleanup. 2019-06-05 14:27:36 -07:00
ios.h ircd: Apply uniform info::versions for all dependency version identification. 2019-05-31 16:15:01 -07:00
iov.h
ircd.h ircd: Add infrastructure to handle continuation notification after suspending. 2019-06-05 15:06:16 -07:00
js.h
lex_cast.h
localee.h
logger.h
magick.h ircd: Apply uniform info::versions for all dependency version identification. 2019-05-31 16:15:01 -07:00
magics.h ircd: Apply uniform info::versions for all dependency version identification. 2019-05-31 16:15:01 -07:00
Makefile.am include/ircd: Add header file installer. 2019-05-06 13:18:51 -07:00
nacl.h ircd: Apply uniform info::versions for all dependency version identification. 2019-05-31 16:15:01 -07:00
openssl.h ircd::openssl: Add conditional LibreSSL versions instance. 2019-06-04 14:01:33 -07:00
parse.h
prof.h ircd::prof: Various optimizations. 2019-05-08 05:19:04 -07:00
rand.h
README.md
rfc1035.h ircd::rfc1035: Rename constant. 2019-05-26 18:37:40 -07:00
rfc1459.h
rfc3986.h ircd::rfc1035: Rename constant. 2019-05-26 18:37:40 -07:00
run.h
spirit.h ircd: Add comment in spirit header. 2019-05-06 10:42:11 -07:00
stats.h ircd::stats: Additional arithmetic/access operators on item. 2019-05-05 19:12:54 -07:00
stdinc.h ircd: Add ulong typedef on FreeBSD. 2019-06-05 23:54:02 -07:00
string_view.h ircd::buffer: Always inline fundamental buffer template utils. 2019-05-08 05:19:04 -07:00
stringops.h ircd: Add #ifdefs around potentially conflicting BSD stringops. 2019-06-06 02:59:57 -07:00
tokens.h
vector_view.h ircd::vector_view: Add front() and back() convenience accessors. 2019-06-06 17:02:39 -07: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().