0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 08:24:08 +01:00
construct/include/ircd
2020-07-30 10:24:10 -07:00
..
buffer ircd: Fix inlining attributes for clang-10. 2020-07-10 20:04:39 -07:00
cbor
ctx ircd::ctx::list: Reduce out-of-line accessor surface. 2020-07-11 18:51:19 -07:00
db ircd::db: Elide std::function wrapping for equal comparator (related 6c2736f592). 2020-07-28 01:24:27 -07:00
fs ircd::fs::dev: Fix device size calculation; cleanup constants; improve cmd output. 2020-06-10 22:36:28 -07:00
http2
js
json ircd::json: Replace char generator w/ new vectorized string streaming. (fixes #158) (fixes #159) 2020-07-03 16:35:28 -07:00
m ircd:Ⓜ️:groups: Start namespace, central lib; preliminary client resource module. 2020-07-30 10:24:10 -07:00
mods
net ircd::stats: Refactor subsystem template hierarchy and approach. (#31) 2020-06-17 18:12:19 -07:00
prof ircd::prof: Remove unnecessary attribute for gcc. 2020-07-11 15:53:58 -07:00
resource ircd::resource: Split mime and content length nego branches into functions. 2020-06-08 16:13:00 -07:00
server ircd::server: Add tag completed counters on link and peer w/ report. 2020-06-07 07:53:37 -07:00
simd ircd::simd: Split bit manipulations suites to headers; renames. 2020-07-17 16:46:43 -07:00
util ircd: Fix inlining attributes for clang-10. 2020-07-10 20:04:39 -07:00
.gitignore
allocator.h ircd::allocator: Add a graceful getter/setter for RLIMIT_MEMLOCK. 2020-05-29 23:40:24 -07:00
asio.h
assert.h ircd::portable: Optimize redefined macro if conditions are favorable. 2020-06-05 04:32:57 -07:00
backtrace.h
base.h
byte_view.h
client.h
cmp.h
color.h
conf.h ircd::conf: Fix interface argument inconsistency. 2020-06-08 17:16:07 -07:00
crh.h
demangle.h
ed25519.h
exception.h
fmt.h
fpe.h ircd::fpe: Inline errors_handle; minor include reorder. 2020-06-18 01:23:01 -07:00
globular.h
grammar.h
http.h ircd::ctx: Specify inline linkage for various templates to prevent any dynsyms. 2020-07-11 15:41:57 -07:00
icu.h ircd::utf: Start an inline utf toolset. 2020-06-27 16:31:57 -07:00
info.h ircd::info: Remove cruft. 2020-07-22 02:00:05 -07:00
ios.h ircd::db: Minor remove cruft. (related 942e8330e6) 2020-06-18 20:07:40 -07:00
iov.h
ircd.h ircd::utf: Start an inline utf toolset. 2020-06-27 16:31:57 -07:00
js.h
leb128.h
lex_cast.h
logger.h
magic.h
magick.h
Makefile.am Reserve EXTRA_* flag sets for user. 2020-07-30 06:38:51 -07:00
matrix.h
nacl.h
openssl.h ircd::openssl: Add interface wrapping get/set app_data. 2020-05-30 22:17:11 -07:00
panic.h
parse.h
pbc.h
portable.h ircd::portable: Remove fenced assert for GCC due to error when used in constexprs. 2020-06-09 05:14:43 -07:00
rand.h
README.md
rfc1035.h
rfc1459.h
rfc3986.h
run.h ircd::run: Add additional UNLOAD runlevel on shutdown after QUIT. 2020-06-12 18:41:30 -07:00
spirit.h ircd::spirit: Isolate aggressive inlining; remove unit-level setting. 2020-07-24 23:47:08 -07:00
stats.h ircd::stats: Add buffer-based stringifier to interface; simplify. 2020-06-17 20:28:05 -07:00
stdinc.h ircd::simd: Expose SIMD utils to standard include group; split header into dir. 2020-06-27 16:31:57 -07:00
string_view.h
stringops.h ircd: Use strip(n=1) for unquote() tool. 2020-07-23 13:08:30 -07:00
strl.h ircd::strlcpy: Use character copy; remove branch. 2020-06-04 19:19:06 -07:00
strn.h
sys.h ircd::util: Move syscall() templates out of util; minor reorg includes. 2020-06-11 09:49:33 -07:00
time.h
tokens.h ircd::tokens: Modernize all remaining interface delims to string_view. 2020-05-11 16:31:48 -07:00
utf.h ircd::utf16: Remove cruft. 2020-07-14 18:20:08 -07: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().