0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00
construct/ircd
2018-12-24 14:32:33 -08:00
..
m ircd:Ⓜ️🆔 De-template grammars and assume iterator type; minor fixes. 2018-12-21 13:55:11 -08:00
.gitignore
aio.cc ircd::aio: Simplify the submit(request) procedure. 2018-12-22 17:24:48 -08:00
aio.h ircd::fs::aio: Reorganize with symbol overriding; add conf items. 2018-12-21 13:04:57 -08:00
allocator.cc
ap.cc ircd: Initial ap. 2018-12-05 15:17:00 -08:00
base.cc
cbor.cc
client.cc ircd::client: Improve log message. 2018-12-19 17:06:30 -08:00
conf.cc ircd::conf: Add feature to toggle whether conf item is persisted in a db. 2018-12-08 16:27:32 -08:00
crh.cc
ctx.cc ircd::ctx: Improve pool loop; improve log msg; add interruption point. 2018-12-24 12:06:05 -08:00
ctx.h ircd::ctx: Improve prof related; add full ticker of counters. 2018-12-22 15:17:18 -08:00
db.cc ircd::db: No need to copy gopts in db::cell related. 2018-12-24 14:32:33 -08:00
db.h ircd::db: Add reflections for compaction and flush reasons. 2018-12-19 13:39:06 -08:00
demangle.cc
exception.cc ircd: Convert various exception format string arguments to string_view. 2018-12-10 13:14:39 -08:00
fmt.cc ircd::fmt: Fix unconditional null termination regression. 2018-12-15 20:29:53 -08:00
fpe.cc ircd::fpe: Use std noreturn here. 2018-12-21 17:19:16 -08:00
fs.cc ircd::ctx: Use closure for continuation. 2018-12-22 21:03:14 -08:00
http.cc ircd::http: De-template grammar and assume iterator type. 2018-12-21 13:56:20 -08:00
info.cc ircd::info: Reorganize info. 2018-12-19 12:35:21 -08:00
ios.cc
ircd.cc ircd: Move runlevel definitions into ircd.cc. 2018-12-18 17:34:12 -08:00
js.cc ircd::log: Rename facility to level. 2018-12-19 12:52:08 -08:00
json.cc ircd::json::stack: Add noexcept for non-throwers called during stack unwinds. 2018-12-24 12:06:57 -08:00
lexical.cc
locale.cc
logger.cc ircd::log: Skip some operations for log levels not compiled in. 2018-12-22 17:24:49 -08:00
magic.cc
Makefile.am Use more aggressive tls-model options. 2018-12-23 17:36:35 -08:00
mods.cc ircd::mods: Throw fs::error rather than boost's filesystem_error. 2018-12-21 15:33:18 -08:00
mods.h
net.cc ircd::ctx: Use closure for continuation. 2018-12-22 21:03:14 -08:00
openssl.cc
parse.cc
rand.cc
README.md doc: Reorg some documentation. 2018-12-20 11:29:54 -08:00
resource.cc ircd::log: Rename facility to level. 2018-12-19 12:52:08 -08:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd::rfc3986: Type checking on form encoding from json::members. 2018-12-06 17:31:22 -08:00
server.cc ircd::server: Fix issues with non-matrix peer construction. 2018-12-05 19:38:40 -08:00
sodium.cc
tokens.cc
util.cc

IRCd Library Definitions

This directory contains definitions and linkage for libircd

The purpose of libircd is to facilitate the execution of a server which handles requests from end-users. The library hosts a set of pluggable modules which may introduce the actual application features (or the "business logic") of the server.

The executable linking and invoking libircd may be referred to as the "embedding" or "user" or "executable" interchangably in this documentation.

Organization

Implied #include <ircd.h>

The ircd.h standard include group is pre-compiled and included first by default for every compilation unit in this directory. Developers do not have to worry about including project headers in a compilation unit, especially when creating and reorganizing either of them.

Note that because ircd.h is include above any manually included header, there is a theoretical possibility for a conflict. We make a serious effort to prevent ircd.h from introducing pollution outside of our very specific namespaces (see: Project Namespaces).

Dependency Isolation

Compilation units are primarily oriented around the inclusion of a specific dependency which is not involved in the ircd.h include group.

For example, the magic.cc unit was created to include <magic.h> internally and then provide definitions to our own interfaces in ircd.h. We don't include <magic.h> from ircd.h nor do we include it from any other compilation unit. This simply isolates libmagic as a dependency.