0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 16:34:13 +01:00
construct/modules
Jason Volk 2f71edf41f modules/client/sync/rooms/state: Supply invite room state on invite.
modules/client/rooms/invite: Add the sender's membership event.
2019-07-15 14:11:22 -07:00
..
app
client modules/client/sync/rooms/state: Supply invite room state on invite. 2019-07-15 14:11:22 -07:00
federation modules/federation/sender: Don't propagate exceptions outside of the hook handler. 2019-07-13 23:20:03 -07:00
identity
js
key
media modules/media/magick: Call ::DestroyMagickResources() on module dtor. 2019-07-13 19:28:48 -07:00
conf.cc
console.cc modules/console: Show joined members count in room top. 2019-07-14 15:26:42 -07:00
index.cc
m_breadcrumb_rooms.cc
m_command.cc
m_control.cc
m_device.cc
m_device_list_update.cc
m_direct.cc
m_direct_to_device.cc
m_events.cc
m_feds.cc
m_fetch.cc modules/m_fetch: Stub missing cancel() definition for now. 2019-07-14 09:42:43 -07:00
m_fetch.h
m_ignored_user_list.cc
m_init_bootstrap.cc ircd:Ⓜ️ Move bootstrap to module. 2019-07-14 16:07:44 -07:00
m_keys.cc
m_node.cc
m_noop.cc
m_presence.cc
m_receipt.cc
m_room_aliases.cc
m_room_canonical_alias.cc
m_room_create.cc
m_room_history_visibility.cc
m_room_join_rules.cc
m_room_member.cc
m_room_message.cc
m_room_power_levels.cc
m_room_server_acl.cc
m_rooms.cc
m_typing.cc modules/m_typing: More error reporting around typing-state update. 2019-07-15 09:48:29 -07:00
m_user.cc modules/m_user: Simplify linkage. #83 2019-07-15 11:06:01 -07:00
m_user_highlight.cc modules: Split user::highlight module. 2019-07-15 11:06:01 -07:00
m_user_profile.cc ircd:Ⓜ️ Split m::user::profile from client handler. 2019-07-14 19:35:28 -07:00
m_vm.cc modules/m_vm: Minor formatting fix. 2019-07-14 15:03:54 -07:00
Makefile.am modules: Split user::highlight module. 2019-07-15 11:06:01 -07:00
net_dns.cc
net_dns.h
net_dns_resolver.cc
net_listener.cc
README.md modules: Simplify comment. 2019-07-15 11:19:14 -07:00
stats.cc
webhook.cc
well_known.cc

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.

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. Nothing else is required.