2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2017-08-23 23:10:28 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_H
|
|
|
|
|
2019-08-30 00:39:49 +02:00
|
|
|
// required to disambiguate resolution around some overloads in this ns.
|
2019-06-24 07:36:08 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2019-08-30 00:39:49 +02:00
|
|
|
#ifdef __clang__
|
|
|
|
using std::operator<;
|
|
|
|
using std::operator==;
|
|
|
|
using std::operator!=;
|
|
|
|
using ircd::json::at;
|
|
|
|
using ircd::json::get;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using ircd::operator!;
|
2019-06-24 07:36:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// explicit imports required for GCC or clang
|
2017-10-19 10:32:53 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2018-03-28 22:05:15 +02:00
|
|
|
using ircd::hash;
|
2019-06-24 07:36:08 +02:00
|
|
|
}
|
2017-10-19 10:32:53 +02:00
|
|
|
|
2019-06-24 07:36:08 +02:00
|
|
|
/// Matrix Protocol System
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
2019-09-25 21:48:00 +02:00
|
|
|
struct matrix;
|
2019-10-01 05:50:58 +02:00
|
|
|
struct homeserver;
|
2018-04-23 00:17:07 +02:00
|
|
|
|
2018-08-15 01:47:42 +02:00
|
|
|
IRCD_OVERLOAD(generate)
|
|
|
|
|
2020-03-05 18:48:17 +01:00
|
|
|
extern const uint16_t canon_port;
|
|
|
|
extern const string_view canon_service;
|
|
|
|
|
2018-08-15 01:47:42 +02:00
|
|
|
extern struct log::log log;
|
2017-11-16 02:48:25 +01:00
|
|
|
}
|
|
|
|
|
2019-09-29 01:45:36 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using m::matrix;
|
|
|
|
}
|
|
|
|
|
2018-01-19 15:57:38 +01:00
|
|
|
#include "name.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "error.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "id.h"
|
2019-10-01 05:50:58 +02:00
|
|
|
#include "self.h"
|
2019-10-04 23:34:46 +02:00
|
|
|
#include "init.h"
|
2019-05-03 05:36:15 +02:00
|
|
|
#include "event/event.h"
|
2019-07-08 02:59:55 +02:00
|
|
|
#include "get.h"
|
2019-07-08 02:44:28 +02:00
|
|
|
#include "query.h"
|
2019-05-09 06:28:57 +02:00
|
|
|
#include "dbs/dbs.h"
|
2020-03-03 04:37:38 +01:00
|
|
|
#include "hook.h"
|
2018-04-06 08:07:55 +02:00
|
|
|
#include "vm.h"
|
2019-03-06 21:00:47 +01:00
|
|
|
#include "invite_3pid.h"
|
2020-04-02 03:30:02 +02:00
|
|
|
#include "device.h"
|
2020-03-18 21:18:04 +01:00
|
|
|
#include "push.h"
|
2019-03-06 21:00:47 +01:00
|
|
|
#include "createroom.h"
|
2020-04-02 05:37:51 +02:00
|
|
|
#include "txn.h"
|
2019-05-03 05:36:15 +02:00
|
|
|
#include "room/room.h"
|
2019-07-11 21:57:11 +02:00
|
|
|
#include "user/user.h"
|
2018-10-23 22:26:57 +02:00
|
|
|
#include "users.h"
|
2018-04-12 00:10:45 +02:00
|
|
|
#include "rooms.h"
|
2019-09-15 02:44:49 +02:00
|
|
|
#include "rooms_summary.h"
|
2019-09-18 19:30:23 +02:00
|
|
|
#include "membership.h"
|
2018-04-19 22:48:45 +02:00
|
|
|
#include "filter.h"
|
2018-04-18 09:33:38 +02:00
|
|
|
#include "events.h"
|
2018-03-05 17:53:48 +01:00
|
|
|
#include "node.h"
|
2018-03-05 12:05:59 +01:00
|
|
|
#include "login.h"
|
2018-01-20 11:35:50 +01:00
|
|
|
#include "request.h"
|
2019-07-12 05:27:59 +02:00
|
|
|
#include "fed/fed.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "keys.h"
|
2018-03-04 13:28:36 +01:00
|
|
|
#include "edu.h"
|
|
|
|
#include "presence.h"
|
|
|
|
#include "typing.h"
|
|
|
|
#include "receipt.h"
|
2019-02-18 21:23:40 +01:00
|
|
|
#include "direct_to_device.h"
|
2019-12-11 20:01:11 +01:00
|
|
|
#include "relates.h"
|
2018-05-31 14:45:08 +02:00
|
|
|
#include "visible.h"
|
2019-07-16 19:38:25 +02:00
|
|
|
#include "redacted.h"
|
2018-08-26 04:52:46 +02:00
|
|
|
#include "feds.h"
|
2020-04-10 02:24:50 +02:00
|
|
|
#include "bridge.h"
|
2019-01-04 02:21:02 +01:00
|
|
|
#include "sync.h"
|
2019-04-11 06:16:00 +02:00
|
|
|
#include "fetch.h"
|
2019-07-11 21:48:42 +02:00
|
|
|
#include "breadcrumb_rooms.h"
|
2019-08-22 08:57:07 +02:00
|
|
|
#include "media.h"
|
2019-09-14 22:03:05 +02:00
|
|
|
#include "search.h"
|
2020-04-23 11:04:07 +02:00
|
|
|
#include "gossip.h"
|
2020-04-24 21:05:39 +02:00
|
|
|
#include "acquire.h"
|
2020-04-23 12:50:03 +02:00
|
|
|
#include "burst.h"
|
2019-09-28 23:17:54 +02:00
|
|
|
#include "resource.h"
|
2019-10-01 05:50:58 +02:00
|
|
|
#include "homeserver.h"
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2019-09-25 21:48:00 +02:00
|
|
|
struct ircd::m::matrix
|
2017-09-08 11:32:49 +02:00
|
|
|
{
|
2019-10-01 05:50:58 +02:00
|
|
|
static const std::vector<string_view> module_names;
|
|
|
|
static const std::vector<string_view> module_names_optional;
|
|
|
|
|
2019-09-25 21:48:00 +02:00
|
|
|
std::string module_path
|
|
|
|
{
|
2020-04-19 09:26:54 +02:00
|
|
|
fs::path_string(fs::path_views
|
|
|
|
{
|
|
|
|
fs::base::lib, "libircd_matrix"
|
|
|
|
})
|
2019-09-25 21:48:00 +02:00
|
|
|
};
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2019-09-25 21:48:00 +02:00
|
|
|
ircd::module module
|
|
|
|
{
|
|
|
|
module_path
|
|
|
|
};
|
2019-10-01 05:50:58 +02:00
|
|
|
|
|
|
|
using init_proto = m::homeserver *(const struct m::homeserver::opts *);
|
|
|
|
mods::import<init_proto> init
|
|
|
|
{
|
|
|
|
module, "ircd::m::homeserver::init"
|
|
|
|
};
|
|
|
|
|
2020-02-11 21:19:01 +01:00
|
|
|
using fini_proto = void (m::homeserver *);
|
2019-10-01 05:50:58 +02:00
|
|
|
mods::import<fini_proto> fini
|
|
|
|
{
|
|
|
|
module, "ircd::m::homeserver::fini"
|
|
|
|
};
|
2018-09-21 23:59:58 +02:00
|
|
|
};
|