0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-03 17:28:18 +02:00
construct/include/ircd
2018-05-30 04:59:04 -07:00
..
buffer ircd::buffer: Minor cleanup/simplify. 2018-05-29 09:33:07 -07:00
ctx ircd::ctx: Remove argument from continuation ctor. 2018-05-25 23:50:20 -07:00
db ircd::db: Add experimental port linktime override suite. 2018-05-30 04:59:04 -07:00
fs ircd::fs: Refactor fs::write stack for fs::fd. 2018-05-30 04:59:04 -07:00
js
json ircd::json: Add non-const iov::at(); minor cleanup. 2018-05-25 17:45:49 -07:00
m ircd:Ⓜ️:vm: Move eval entry related into modules/vm; convert phase to struct. 2018-05-29 04:05:50 -07:00
mods ircd::mods: Fix sym_ptr boolean test. 2018-05-25 23:47:59 -07:00
net ircd::net: Use specific canon service/port variables. 2018-05-19 18:49:08 -07:00
server ircd::server: Rename peer::interrupt() to peer::cancel(). 2018-05-29 11:53:37 -07:00
util
.gitignore
allocator.h ircd::allocator: Minor remove unused declaration. 2018-05-29 02:52:47 -07:00
asio.h
base.h
byte_view.h
client.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
color.h
conf.h ircd::conf: Add conf::exists(key); minor cleanup. 2018-05-25 20:45:30 -07:00
date.h ircd: Make timestr()'s buffer default a template param; reorg; add comments. 2018-05-23 18:14:42 -07:00
demangle.h
ed25519.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
exception.h
fmt.h ircd::fmt: Fix copying / nulling / assertions. 2018-05-19 20:53:40 -07:00
hash.h
http.h ircd::http: Add 504 Gateway Timeout status. 2018-05-21 15:56:13 -07:00
info.h
ios.h
iov.h
ircd.h
js.h
lex_cast.h
localee.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
logger.h configure.ac/ircd: Add granular configure-time log level control. 2018-05-21 16:59:28 -07:00
magics.h
Makefile.am
nacl.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
openssl.h
parse.h
rand.h
README.md
resource.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
rfc1035.h
rfc1459.h
rfc3986.h
spirit.h
stdinc.h
string_view.h
stringops.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00
tokens.h
vector_view.h ircd: Add various missing top-level \briefs. 2018-05-21 03:01:50 -07:00

IRCd Library API

Project Namespaces

  • IRCD_ Preprocessor #define, macro, and environmental variables.
  • 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.

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/stdinc.h> and <ircd/ircd.h>. We have to offer two different pre-compilations: one with -fPIC and one without. Therefor the contents are in <ircd/stdinc.h> and the preprocessor determination for which is in <ircd/ircd.h>.

  • 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.