0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 12:18:54 +02:00
construct/ircd
2019-03-31 23:08:29 -07:00
..
.gitignore
allocator.cc
assert.cc
base.cc
client.cc
conf.cc
crh.cc
ctx.cc ircd::perf: Start a perf profiling subsystem; move ctx::prof counter utils. 2019-03-31 18:16:18 -07:00
ctx.h
db.cc ircd::db: Add debug message for pool->wait() on bgcancel(). 2019-03-27 13:04:12 -07:00
db.h
db_env.cc ircd::db: Fix runlevel condition for background task invocation. 2019-03-27 13:04:12 -07:00
db_port.cc
demangle.cc
exception.cc
fmt.cc
fs.cc ircd::fs: Simplify these ifdef conditions. 2019-03-27 19:07:11 -07:00
fs_aio.cc ircd::fs::aio: Minor cleanup. 2019-03-31 13:24:42 -07:00
fs_aio.h ircd::fs::aio: Add iteration tool for kernel completion queue. 2019-03-30 14:09:47 -07:00
http.cc ircd::http: Fix case comparisons for header strings in header tool. 2019-03-31 19:00:38 -07:00
info.cc ircd::info: Query cpuid features on init. 2019-03-31 17:04:02 -07:00
ios.cc ircd::perf: Start a perf profiling subsystem; move ctx::prof counter utils. 2019-03-31 18:16:18 -07:00
ircd.cc ircd::perf: Start a perf profiling subsystem; move ctx::prof counter utils. 2019-03-31 18:16:18 -07:00
js.cc
json.cc ircd::json::stack: Improve active checkpoint invalidation related. 2019-03-30 14:58:34 -07:00
lexical.cc
locale.cc
logger.cc ircd: Add descriptor participation for all asynchronous operations. 2019-03-27 13:04:12 -07:00
m.cc ircd:Ⓜ️:filter: Add convenience filter::get() taking a direct query string value. 2019-03-31 14:41:04 -07:00
m_dbs.cc ircd:Ⓜ️:dbs: Log various issues during reference indexing; minor cleanup. 2019-03-28 15:36:26 -07:00
m_event.cc ircd:Ⓜ️ Add central event append() to compose elaborated json::stack::object for clients. 2019-03-11 16:02:36 -07:00
m_id.cc ircd:Ⓜ️🆔 Add id part-swapping interface. 2019-03-30 18:15:07 -07:00
m_name.cc ircd:Ⓜ️ Add state_filter w/ related m::name strings. 2019-03-31 14:03:21 -07:00
m_room.cc ircd:Ⓜ️:state: Reduce for_each stack. 2019-03-31 15:12:38 -07:00
m_state.cc
m_v1.cc
magic.cc
Makefile.am ircd::perf: Start a perf profiling subsystem; move ctx::prof counter utils. 2019-03-31 18:16:18 -07:00
mods.cc ircd::mods: Support code and data demangled export sections. 2019-03-24 14:06:47 -07:00
mods.h
net.cc ircd: Add descriptor participation for all asynchronous operations. 2019-03-27 13:04:12 -07:00
openssl.cc
parse.cc
perf.cc ircd::perf: Start a perf profiling subsystem; move ctx::prof counter utils. 2019-03-31 18:16:18 -07:00
rand.cc
README.md
resource.cc ircd::resource: Handle and generate an OPTIONS response. 2019-03-31 23:08:29 -07:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd::rfc3986: Reorg grammar stack; add variable valid() tool. 2019-03-25 12:25:25 -07:00
server.cc ircd::server: Don't alter open_opts.hostport here. 2019-03-25 19:14:49 -07:00
sodium.cc
stats.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.