0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-11 06:28:55 +02:00
construct/modules
2021-02-11 03:21:08 -08:00
..
admin modules/admin: Implement (undocumented) users/deactivate. 2020-05-02 23:57:53 -07:00
client modules/client/rooms/report: Use visible messages; add rich reply relation. 2021-02-05 23:39:17 -08:00
federation modules/federation/invite: Disable emption checks on invite; fix regression. 2021-02-07 11:16:39 -08:00
identity
js
key modules/key/query: Remove inert condition; always relay pubkey material. 2021-02-09 22:42:55 -08:00
media modules/media/thumbnail: Skip animation check if it won't be thumbnailed anyway. 2021-02-09 23:09:55 -08:00
widget modules/widget: Stub GET ui/v1 w/ some params. 2020-10-16 03:48:57 -07:00
console.cc ircd:Ⓜ️:bridge: Add thirdparty/protocol query. 2021-02-04 21:13:42 -08:00
llvm.cc modules/llvm: Add conditional compilation for libllvm module. 2020-10-01 20:26:16 -07:00
m_breadcrumbs.cc ircd:Ⓜ️ Rename breadcrumb_rooms to breadcrumbs; related. 2020-08-23 02:32:54 -07:00
m_bridge.cc modules/m_bridge: Elide io on empty picker kernels. 2021-02-04 19:53:50 -08:00
m_command.cc modules/m_command: Fix reply to echo event. (related 75589a4794) 2021-02-02 07:54:26 -08:00
m_control.cc ircd::ios: Consolidate dispatch/post/defer interfaces; minor fixes. 2020-12-20 06:02:50 -08:00
m_device.cc
m_device_list_update.cc ircd:Ⓜ️:device: Reclassify interface at m::user::devices. 2020-04-01 19:52:31 -07:00
m_direct.cc
m_direct_to_device.cc modules/m_direct_to_device: Move infolog message to debuglog. 2020-10-28 03:31:55 -07:00
m_ignored_user_list.cc
m_listen.cc modules/m_listen: Add log notice for configured listeners. 2021-02-04 19:53:50 -08:00
m_noop.cc
m_presence.cc modules/m_presence: Add per-user rate conf item; add branch to synapse spam infra. 2020-09-28 03:48:06 -07:00
m_profile.cc
m_push.cc modules/m_pusher: Add preliminary pusher hook; worker loop. 2020-10-24 07:31:31 -07:00
m_pusher.cc modules/m_pusher: Count unread highlights instead of unread notifications. 2021-02-11 03:21:08 -08:00
m_receipt.cc modules/m_receipt: Drop receipts to rooms without any local joined users; minor reorg. 2020-12-26 11:55:01 -08:00
m_relation.cc modules/m_relation: Fix fetch handler event_id query error. 2020-11-29 23:16:56 -08:00
m_room_aliases.cc ircd::db: Use reference to prevent string copy. 2020-07-10 23:58:07 -07:00
m_room_canonical_alias.cc
m_room_create.cc modules/m_room_create: Condition to suppress variable level log msg. 2020-03-16 21:27:11 -07:00
m_room_history_visibility.cc
m_room_join_rules.cc
m_room_member.cc ircd:Ⓜ️:event: Separate out event::auth from event::prev header, unit, callsites. 2020-12-16 21:39:08 -08:00
m_room_message.cc
m_room_name.cc
m_room_power_levels.cc ircd:Ⓜ️ Optimize various callsites for type queries. 2020-05-24 19:08:08 -07:00
m_room_redaction.cc ircd:Ⓜ️ Pass fetch result origin as node_id to evals. 2020-11-27 16:58:20 -08:00
m_room_server_acl.cc
m_room_third_party_invite.cc
m_room_tombstone.cc modules/m_room_tombstone: Invalidate alias cache entries for effect. 2020-11-11 22:49:39 -08:00
m_signing_key_update.cc modules: Implement s2s unstable 22.3 m.signing_key_update handler. 2021-01-04 13:17:30 -08:00
Makefile.am modules: Implement s2s unstable 22.3 m.signing_key_update handler. 2021-01-04 13:17:30 -08:00
net_dns_cache.cc ircd::db: Use reference to prevent string copy. 2020-07-10 23:58:07 -07:00
README.md modules: Improve README bullets. 2020-01-11 23:31:53 -08:00
stats.cc ircd::stats: Use vector for item iteration; add name convenience member. 2020-12-18 04:04:01 -08:00
web_hook.cc modules/web_hook: Append emoji to tag create. 2020-12-29 00:42:57 -08:00
web_root.cc modules/web_root: Return non-throwing 404 here. 2020-10-05 20:15:12 -07:00
well_known.cc

Module Tree

This directory contains dynamically loadable functionality to libircd.

Approach

Unlike most of the module systems found in traditional C 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.

GLOBAL SYMBOLS

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.

WEAK UNDEFINED SYMBOLS

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 definitions are not available because they are in an unloaded module: a C++ exception is thrown directly from the callsite. We have built this action is built into the lookup mechanism of the runtime dynamic linker; none of this requires knowledge or effort from developers to use.

Layout

(TODO)

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.