0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-10 15:03:54 +01:00
construct/include/ircd
2022-07-31 02:46:05 -07:00
..
buffer
cl ircd::util: Fix undefined-var-template linkage related warning. 2022-07-20 12:31:49 -07:00
ctx
db ircd::db: Add descriptor field for level0 compaction trigger. 2022-07-29 22:30:09 -07:00
fs
gpt ircd::gpt: Cache pipe::code instance in shared_ptr for task reuse. 2022-07-31 02:46:05 -07:00
http2
ios
js
json ircd::json: Add prepend/append tools for arrays. 2022-07-13 22:48:14 -07:00
m ircd:Ⓜ️:room::events::missing: Dedup inner loop; optimize w/ parallel query. 2022-07-30 20:58:59 -07:00
math
mods
net
prof
resource ircd::resource: Implement more complex path routing. 2022-07-20 09:56:22 -07:00
server ircd::server: Remove problematic tag move assignment operator. 2022-07-08 15:21:47 -07:00
simd
simt
spirit ircd::spirit: Replace deprecated phoenix header. 2022-07-25 12:31:18 -07:00
util ircd::util: Fix unsafe instance_list emplace; assert for allocator state. 2022-07-20 18:32:38 -07:00
.gitignore
allocator.h
asio.h ircd::asio: Fix undefined-var-template error; enable -fpch-instantiate-templates. 2022-07-20 18:32:38 -07:00
assert.h ircd: Add branchless optimistic assertion instrument --with-assert=opt 2022-07-18 16:58:02 -07:00
b58.h
b64.h
backtrace.h
beep.h
byte_view.h
cbor.h
client.h
cmp.h
color.h
conf.h ircd::conf: Add environ() to interface; minor cleanup/reorg. 2022-07-11 12:53:25 -07:00
crh.h
demangle.h
ed25519.h
exception.h ircd::exception: Move throwing errno+system_category out-of-line. 2022-07-08 11:39:45 -07:00
exec.h
fmt.h
fpe.h
globular.h
grammar.h
http.h
icu.h
info.h ircd: Split info::versions into header/unit. 2022-06-23 10:50:48 -07:00
iov.h
ircd.h
js.h
leb128.h
lex_cast.h
logger.h ircd::log: Cold section log::critical constructions. 2022-07-26 15:46:09 -07:00
magic.h
magick.h
Makefile.am Makefiles: Fix bashisms. (#88) 2022-07-25 14:08:26 -07:00
matrix.h
nacl.h
openssl.h
panic.h
parse.h
pbc.h
png.h
portable.h
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h ircd::util: Fix undefined-var-template linkage related warning. 2022-07-20 12:31:49 -07:00
spirit.h
stats.h
stdinc.h
stduse.h
string_view.h ircd::string_view: Attribute noreturn on insert() stub under proper conditions. 2022-07-20 18:32:38 -07:00
stringops.h ircd::string_view: Add noexcept substr(); optimize codegen for split()/rsplit(). 2022-07-18 16:58:02 -07:00
strl.h
strn.h
sys.h ircd::exception: Move throwing errno+system_category out-of-line. 2022-07-08 11:39:45 -07:00
terminate.h
time.h
tokens.h ircd: Add tokens_split() tool w/ skip feature. 2022-07-19 14:26:23 -07:00
utf8.h
utf16.h
vector_view.h ircd::vector_view: Add constexpr constructions. 2022-07-12 22:36:50 -07:00
versions.h ircd::versions: Declare list specialization; noexcept ctors; minor cleanup. 2022-07-20 18:32:38 -07:00
vg.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().