0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-01 02:14:13 +01:00
construct/include/ircd
Jason Volk bdf696b91f ircd::fs: Add these string_view overloads.
This is to not force string conversions in callerspace. Right now everything
gets converted to std::string internally but eventually string_view may be
preferable. Either way the overload finds the best behavior for now.
2017-12-24 20:25:40 -07:00
..
ctx ircd::ctx: Minor style/format fixes. 2017-12-24 20:25:40 -07:00
db ircd::db: Update README; remove old cruft. 2017-12-03 13:34:42 -08:00
js
json ircd: Add some abstract (non json::) tuple related. 2017-12-24 19:26:05 -07:00
m ircd:Ⓜ️ Split m.cc; distribute inits; modules: Checkpoint matrix. 2017-12-12 14:59:40 -07:00
net ircd::net: listener: Explicit string ctor; no default port to ensure one is specified. 2017-11-30 11:23:47 -08:00
.gitignore
allocator.h ircd: Truncate comment. 2017-11-30 11:23:42 -08:00
array_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00
asio.h ircd::net: Various net/client/listener bugfixes/cleanup. 2017-11-30 11:23:42 -08:00
buffer.h ircd::buffer: Reverse convenience utils. 2017-12-24 20:25:40 -07:00
byte_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00
client.h ircd::net: Various net/client/listener bugfixes/cleanup. 2017-11-30 11:23:42 -08:00
color.h
cuckoo.h ircd: Add preliminary skeleton for cuckoo suite. 2017-11-30 11:23:48 -08:00
date.h ircd: Wrap call to gettimeofday() with posix exception generator. 2017-10-17 00:43:25 -07:00
ed25519.h ircd::ed25519: Add exception hierarchy here; add bad_sig exception. 2017-10-15 21:14:38 -07:00
exception.h ircd: Wrap the std::terminate() handler and add some related toys. 2017-11-30 11:23:46 -08:00
fmt.h ircd: Add additional comments / documentation. 2017-10-15 21:40:10 -07:00
fs.h ircd::fs: Add these string_view overloads. 2017-12-24 20:25:40 -07:00
hash.h ircd: Remove the $() for hashes. This will make for a better $(event_id) device... 2017-11-30 11:23:43 -08:00
http.h ircd::http: Minor cleanup/reorg; use c_str() assertion in places. 2017-12-12 14:59:41 -07:00
info.h
ios.h
iov.h
ircd.h Checkpoint reorganization. 2017-11-30 12:30:19 -08:00
js.h
lex_cast.h ircd: Add std::chrono lex_cast; cleanup lex_cast buffer argument related. 2017-10-17 00:41:51 -07:00
life_guard.h
localee.h
logger.h ircd::log: Address any logger reentrancy; various cleanup. 2017-10-17 00:41:10 -07:00
Makefile.am Checkpoint reorganization. 2017-11-30 12:30:19 -08:00
mapi.h
mods.h ircd::mods: Add remangling to module system (pre dll::smart_lib); cleanup. 2017-12-02 13:07:55 -08:00
nacl.h
openssl.h ircd::net: OpenSSL/net interface for peer certificates so m:: can hash/verify. 2017-11-30 11:23:44 -08:00
params.h ircd::util: Add a count for the params size. 2017-11-30 11:23:44 -08:00
parse.h
rand.h
README.md Move sections from include README to main README; various updates. 2017-11-30 11:23:46 -08:00
resource.h ircd/modules: Update resource / opts construction arguments. 2017-12-12 14:59:40 -07:00
rfc1459.h ircd: Update various comments / documentation. 2017-12-12 14:59:40 -07:00
rfc3986.h ircd: Add preliminary RFC3986 grammar; move urlencoding there. 2017-12-12 14:59:40 -07:00
server.h ircd: Add interrupt for server dtor. 2017-11-30 11:23:46 -08:00
spirit.h
stdinc.h ircd: Remove unnecessary fwd decls. 2017-12-13 14:39:41 -07:00
string_view.h ircd: Add a c_str() to string_view which asserts for null termination. 2017-12-12 14:59:40 -07:00
stringops.h ircd: Maintain data pointer of string_view's through various ops. 2017-11-30 11:23:43 -08:00
timer.h
tokens.h fixup! ircd: Add std::chrono lex_cast; cleanup lex_cast buffer argument related. 2017-10-17 00:46:09 -07:00
tuple.h ircd: Add some abstract (non json::) tuple related. 2017-12-24 19:26:05 -07:00
util.h ircd::util: Add is_specialization_of template utility. 2017-12-13 14:39:41 -07:00
vector_view.h ircd: Split up string_view.h. 2017-11-30 11:23:44 -08:00

IRCd Library API

Getting Around

libircd headers are organized into several aggregate "stacks"

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.

  • Standard Include stack <ircd/ircd.h> is the main header group. This stack 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. Note that the actual file to properly include this stack is <ircd/ircd.h> (not stdinc.h).

  • Boost ASIO include stack <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 stack.

  • Boost Spirit include stack <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 stack <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 stack which includes any wrapping to hide SpiderMonkey.

  • MAPI include stack <ircd/mapi.h> is the standard header group for modules. This stack is an extension to the standard include stack but has specific tools for pluggable modules which are not part of the libircd core.