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
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
/// Matrix Protocol System
|
2017-10-19 10:32:53 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2018-03-28 22:05:15 +02:00
|
|
|
using ircd::hash;
|
2017-10-19 10:32:53 +02:00
|
|
|
|
2018-04-23 00:17:07 +02:00
|
|
|
struct init;
|
|
|
|
|
2018-08-15 01:47:42 +02:00
|
|
|
IRCD_OVERLOAD(generate)
|
|
|
|
|
|
|
|
extern struct log::log log;
|
2017-11-16 02:48:25 +01:00
|
|
|
}
|
|
|
|
|
2018-03-29 04:21:52 +02:00
|
|
|
namespace ircd::m::vm
|
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
}
|
|
|
|
|
2018-01-19 15:57:38 +01:00
|
|
|
#include "name.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "error.h"
|
2018-08-15 01:47:42 +02:00
|
|
|
#include "self.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "id.h"
|
2018-12-02 00:05:50 +01:00
|
|
|
#include "event.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "dbs.h"
|
2018-01-29 18:36:05 +01:00
|
|
|
#include "state.h"
|
2018-04-06 08:07:55 +02:00
|
|
|
#include "vm.h"
|
2019-03-06 21:00:47 +01:00
|
|
|
#include "invite_3pid.h"
|
|
|
|
#include "createroom.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "room.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "user.h"
|
2018-10-23 22:26:57 +02:00
|
|
|
#include "users.h"
|
2018-04-12 00:10:45 +02:00
|
|
|
#include "rooms.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"
|
|
|
|
#include "register.h"
|
2019-02-07 11:35:29 +01:00
|
|
|
#include "device.h"
|
2018-01-20 11:35:50 +01:00
|
|
|
#include "request.h"
|
2018-01-22 12:32:15 +01:00
|
|
|
#include "v1/v1.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"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "txn.h"
|
2018-02-26 08:24:12 +01:00
|
|
|
#include "hook.h"
|
2018-05-31 14:45:08 +02:00
|
|
|
#include "visible.h"
|
2018-08-26 04:52:46 +02:00
|
|
|
#include "feds.h"
|
2018-12-03 01:50:26 +01:00
|
|
|
#include "app.h"
|
2019-01-04 02:21:02 +01:00
|
|
|
#include "sync.h"
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
struct ircd::m::init
|
2017-09-08 11:32:49 +02:00
|
|
|
{
|
2018-09-21 23:59:58 +02:00
|
|
|
struct modules;
|
2017-12-12 21:33:14 +01:00
|
|
|
|
2018-04-23 00:17:07 +02:00
|
|
|
self::init _self;
|
2018-03-28 22:27:39 +02:00
|
|
|
dbs::init _dbs;
|
2018-09-21 23:59:58 +02:00
|
|
|
std::unique_ptr<modules> _modules;
|
2018-03-28 22:27:39 +02:00
|
|
|
|
|
|
|
static void bootstrap();
|
2018-05-15 02:24:34 +02:00
|
|
|
void close();
|
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
public:
|
2018-12-01 01:46:34 +01:00
|
|
|
init(const string_view &origin, const string_view &hostname);
|
2017-12-12 21:33:14 +01:00
|
|
|
~init() noexcept;
|
|
|
|
};
|
2018-09-21 23:59:58 +02:00
|
|
|
|
|
|
|
struct ircd::m::init::modules
|
|
|
|
{
|
|
|
|
void init_imports();
|
|
|
|
void init_keys();
|
|
|
|
|
|
|
|
modules();
|
|
|
|
~modules() noexcept;
|
|
|
|
};
|