0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 23:08:20 +02:00
construct/modules
2019-10-03 18:54:35 -07:00
..
app matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
client ircd:Ⓜ️:user: Belated move of m::user definitions into lib. 2019-10-02 18:30:56 -07:00
federation modules: Re-type matrix resource handlers under m::resource. 2019-09-29 14:00:02 -07:00
identity modules: Re-type matrix resource handlers under m::resource. 2019-09-29 14:00:02 -07:00
js
key modules: Re-type matrix resource handlers under m::resource. 2019-09-29 14:00:02 -07:00
media matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
console.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_breadcrumb_rooms.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_command.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_control.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_device.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_device_list_update.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_direct.cc modules: Fix various hookfn instance constness. 2019-08-09 21:27:41 -07:00
m_direct_to_device.cc modules/m_direct_to_device: Tweak logic for local message handling; handle exception per msg. 2019-02-22 15:40:53 -08:00
m_ignored_user_list.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_listen.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_noop.cc modules/m_noop: Update header / comment. 2019-01-25 14:53:59 -08:00
m_presence.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_profile.cc modules: Split user profile related API from hooks; into module. 2019-09-27 19:35:26 -07:00
m_receipt.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_room_aliases.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_room_canonical_alias.cc modules: Fix various hookfn instance constness. 2019-08-09 21:27:41 -07:00
m_room_create.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00
m_room_history_visibility.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_room_join_rules.cc modules/m_room_join_rules: Fix room summary trigger. 2019-09-22 21:45:19 -07:00
m_room_member.cc modules/m_room_member: Move membership hook back to vm.effect for now. 2019-09-22 22:31:07 -07:00
m_room_message.cc modules/m_room_message: Split highlight auth hook to module. 2019-09-27 19:35:26 -07:00
m_room_name.cc modules: Start an m.room.name module w/ length check conforms hook. 2019-08-25 14:28:20 -07:00
m_room_power_levels.cc modules/m_room_power_levels: Ignore invalid user mxids in array. 2019-09-09 19:59:59 -07:00
m_room_redaction.cc modules/m_room_redaction: Query for sender match rather than event hostpart. 2019-08-31 00:23:45 -07:00
m_room_server_acl.cc modules: Distill all API's from modules up to matrix lib. 2019-09-27 19:35:26 -07:00
m_room_third_party_invite.cc ircd:Ⓜ️ Move event::auth to room::auth; move to module. 2019-08-18 03:09:34 -07:00
m_user_highlight_auth.cc matrix: Split matrix base unit. 2019-09-27 19:35:26 -07:00
m_vm_fetch.cc ircd:Ⓜ️:fetch: Rename opts::limit to opts::backfill_limit. 2019-09-16 12:09:30 -07:00
magick.cc ircd::magick: Minor cleanup. 2019-09-24 18:34:03 -07:00
Makefile.am modules/net_dns_cache: Fix room creation related; various. 2019-10-03 18:54:35 -07:00
net_dns.cc ircd: Move matrix application related to derived library. 2019-09-27 19:35:26 -07:00
net_dns.h modules/net_dns_cache: Fix room creation related; various. 2019-10-03 18:54:35 -07:00
net_dns_cache.cc modules/net_dns_cache: Fix room creation related; various. 2019-10-03 18:54:35 -07:00
README.md modules: Add example to readme. 2019-08-02 18:12:34 -07:00
stats.cc modules/stats: Rename metrics to stats. 2019-08-03 15:00:47 -07:00
web_hook.cc modules/web_hook: Support organization/member_invited action. 2019-08-19 15:29:40 -07:00
web_root.cc modules/web_root: Relax trailing slash requirement in conf item string. 2019-08-03 15:45:49 -07:00
well_known.cc matrix: Add m::homeserver; preliminary virtual origin networks. 2019-10-01 17:56:01 -07:00

IRCd Module Tree

This directory contains dynamically loadable functionality to libircd. Many of these modules provide essential application functionality, but are not always required to be directly linked and loaded into libircd proper. Most application- specific functionality (i.e "business logic") is contained in modules within this tree.

Layout

The modules/ directory tree is primarily shaped the same as the HTTP resource tree in which most of its modules register themselves in.

Note that the installation layout is not the same as the development source layout (i.e in git). Upon installation, the module tree is collapsed into a single directory and installed into $prefix/lib/modules/construct/$directory_$module.so; where directories are replaced by underscores in the final SONAME. this may be subject to improvement.

Approach

Unlike most of the module systems found in traditional free software projects, our approach is oriented around global symbol availability to the address space rather than explicit imports from self-contained modules. This direction is made viable by C++ and advances in the compiler and linker toolchains. The result is significantly simpler and more convenient for developers to work with.

  • Modules are loaded with RTLD_GLOBAL on both posix and windows platforms. Use of C++ namespaces, visibility attributes, STB_GNU_UNIQUE, etc are adequate to make this modernization.

  • All project code is built to silently weaken undefined symbols. This means a complicated interface declared in a header, like a class interface with public and private and static members -- typical in C++ -- can be included by itself into any part of the project without knowing where the definitions of that interface are until they are first used at runtime. If said definitions are not available because they are in an unloaded module, a C++ exception is thrown directly from the callsite.

Getting started

The header mods/mapi.h is specific to modules and included for modules in addition to the core ircd.h. Both of these are included automatically via the compiler's command-line and the developer does not have to #include either in the module.

  1. Every loadable module requires a static ircd::mapi::header with the explicit name of IRCD_MODULE. This is an object which will be sought by the module loader in libircd.
// Example of a trivial module

ircd::mapi::header
IRCD_MODULE
{
	"My Module", []
	{
		puts("hi\n");
	}
};

  1. Add an _la_SOURCES entry for your module in the appropriate place in Makefile.am.

  2. Add the module .la name to the appropriate LTLIBRARIES list in Makefile.am.

  3. At this time, most modules are listed explicitly in ircd/m.cc to provide a strict load and unload ordering based on dependency. Note that if the module is not m:: related there may be similar lists for other subsystems.