2018-02-03 18:22:01 -08: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 15:10:28 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_H
|
|
|
|
|
2019-06-23 23:36:08 -06:00
|
|
|
// required for clang to consider string_view operators inherited by
|
|
|
|
// m::id among other import disambiguations.
|
|
|
|
#ifdef __clang__
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
using std::operator==;
|
|
|
|
using std::operator!=;
|
|
|
|
using std::operator<;
|
|
|
|
using ircd::operator!;
|
|
|
|
using ircd::json::at;
|
|
|
|
using ircd::json::get;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// explicit imports required for GCC or clang
|
2017-10-19 01:32:53 -07:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2018-03-28 13:05:15 -07:00
|
|
|
using ircd::hash;
|
2019-06-23 23:36:08 -06:00
|
|
|
}
|
2017-10-19 01:32:53 -07:00
|
|
|
|
2019-06-23 23:36:08 -06:00
|
|
|
/// Matrix Protocol System
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
2018-04-22 15:17:07 -07:00
|
|
|
struct init;
|
|
|
|
|
2018-08-14 16:47:42 -07:00
|
|
|
IRCD_OVERLOAD(generate)
|
|
|
|
|
|
|
|
extern struct log::log log;
|
2017-11-15 17:48:25 -08:00
|
|
|
}
|
|
|
|
|
2018-01-19 06:57:38 -08:00
|
|
|
#include "name.h"
|
2018-01-26 12:26:09 -08:00
|
|
|
#include "error.h"
|
2018-08-14 16:47:42 -07:00
|
|
|
#include "self.h"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "id.h"
|
2019-05-02 20:36:15 -07:00
|
|
|
#include "event/event.h"
|
2019-07-07 17:59:55 -07:00
|
|
|
#include "get.h"
|
2019-07-07 17:44:28 -07:00
|
|
|
#include "query.h"
|
2019-05-08 21:28:57 -07:00
|
|
|
#include "dbs/dbs.h"
|
2018-04-05 23:07:55 -07:00
|
|
|
#include "vm.h"
|
2019-03-06 12:00:47 -08:00
|
|
|
#include "invite_3pid.h"
|
|
|
|
#include "createroom.h"
|
2019-05-02 20:36:15 -07:00
|
|
|
#include "room/room.h"
|
2019-07-11 12:57:11 -07:00
|
|
|
#include "user/user.h"
|
2018-10-23 13:26:57 -07:00
|
|
|
#include "users.h"
|
2018-04-11 15:10:45 -07:00
|
|
|
#include "rooms.h"
|
2018-04-19 13:48:45 -07:00
|
|
|
#include "filter.h"
|
2018-04-18 00:33:38 -07:00
|
|
|
#include "events.h"
|
2018-03-05 08:53:48 -08:00
|
|
|
#include "node.h"
|
2018-03-05 03:05:59 -08:00
|
|
|
#include "login.h"
|
|
|
|
#include "register.h"
|
2019-02-07 02:35:29 -08:00
|
|
|
#include "device.h"
|
2018-01-20 02:35:50 -08:00
|
|
|
#include "request.h"
|
2019-07-11 20:27:59 -07:00
|
|
|
#include "fed/fed.h"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "keys.h"
|
2018-03-04 04:28:36 -08:00
|
|
|
#include "edu.h"
|
|
|
|
#include "presence.h"
|
|
|
|
#include "typing.h"
|
|
|
|
#include "receipt.h"
|
2019-02-18 12:23:40 -08:00
|
|
|
#include "direct_to_device.h"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "txn.h"
|
2018-02-25 23:24:12 -08:00
|
|
|
#include "hook.h"
|
2018-05-31 05:45:08 -07:00
|
|
|
#include "visible.h"
|
2018-08-25 19:52:46 -07:00
|
|
|
#include "feds.h"
|
2018-12-02 16:50:26 -08:00
|
|
|
#include "app.h"
|
2019-01-03 17:21:02 -08:00
|
|
|
#include "sync.h"
|
2019-04-10 21:16:00 -07:00
|
|
|
#include "fetch.h"
|
2019-07-11 12:48:42 -07:00
|
|
|
#include "breadcrumb_rooms.h"
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2017-12-12 13:33:14 -07:00
|
|
|
struct ircd::m::init
|
2017-09-08 02:32:49 -07:00
|
|
|
{
|
2018-09-21 14:59:58 -07:00
|
|
|
struct modules;
|
2017-12-12 13:33:14 -07:00
|
|
|
|
2018-04-22 15:17:07 -07:00
|
|
|
self::init _self;
|
2018-03-28 13:27:39 -07:00
|
|
|
dbs::init _dbs;
|
2018-09-21 14:59:58 -07:00
|
|
|
std::unique_ptr<modules> _modules;
|
2018-03-28 13:27:39 -07:00
|
|
|
|
|
|
|
static void bootstrap();
|
2018-05-14 17:24:34 -07:00
|
|
|
void close();
|
|
|
|
|
2017-12-12 13:33:14 -07:00
|
|
|
public:
|
2018-11-30 16:46:34 -08:00
|
|
|
init(const string_view &origin, const string_view &hostname);
|
2017-12-12 13:33:14 -07:00
|
|
|
~init() noexcept;
|
|
|
|
};
|
2018-09-21 14:59:58 -07:00
|
|
|
|
|
|
|
struct ircd::m::init::modules
|
|
|
|
{
|
2019-06-06 19:01:53 -07:00
|
|
|
void fini_imports() noexcept;
|
2018-09-21 14:59:58 -07:00
|
|
|
void init_imports();
|
|
|
|
void init_keys();
|
|
|
|
|
2019-06-06 19:01:53 -07:00
|
|
|
public:
|
2018-09-21 14:59:58 -07:00
|
|
|
modules();
|
|
|
|
~modules() noexcept;
|
|
|
|
};
|