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
|
|
|
|
|
2017-12-12 13:33:14 -07:00
|
|
|
/// Matrix Protocol System
|
2017-10-19 01:32:53 -07:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2017-12-12 13:33:14 -07:00
|
|
|
struct init;
|
|
|
|
|
|
|
|
extern struct log::log log;
|
2018-02-19 00:36:45 -08:00
|
|
|
extern std::list<ircd::net::listener> listeners;
|
2017-12-12 13:33:14 -07:00
|
|
|
|
2018-03-28 13:05:15 -07:00
|
|
|
using ircd::hash;
|
2017-12-12 13:33:14 -07:00
|
|
|
IRCD_OVERLOAD(generate)
|
2017-11-15 17:48:25 -08:00
|
|
|
}
|
2017-10-19 01:32:53 -07:00
|
|
|
|
2017-11-15 17:48:25 -08:00
|
|
|
namespace ircd::m::self
|
|
|
|
{
|
2018-04-22 15:17:07 -07:00
|
|
|
struct init;
|
|
|
|
|
2017-11-15 17:48:25 -08:00
|
|
|
string_view host();
|
|
|
|
bool host(const string_view &);
|
|
|
|
}
|
|
|
|
|
2018-03-28 19:21:52 -07:00
|
|
|
namespace ircd::m::vm
|
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:25 -08:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2018-03-28 13:05:15 -07:00
|
|
|
extern struct user me;
|
|
|
|
extern struct room my_room;
|
|
|
|
extern struct node my_node;
|
|
|
|
|
2017-11-15 17:48:25 -08:00
|
|
|
inline string_view my_host() { return self::host(); }
|
|
|
|
inline bool my_host(const string_view &h) { return self::host(h); }
|
2017-10-19 01:32:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using m::my_host;
|
|
|
|
}
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2018-01-19 06:57:38 -08:00
|
|
|
#include "name.h"
|
2018-01-26 12:26:09 -08:00
|
|
|
#include "error.h"
|
2018-02-22 19:34:24 -08:00
|
|
|
#include "import.h"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "id.h"
|
|
|
|
#include "event.h"
|
2018-01-26 12:26:09 -08:00
|
|
|
#include "dbs.h"
|
2018-01-29 09:36:05 -08:00
|
|
|
#include "state.h"
|
2018-04-05 23:07:55 -07:00
|
|
|
#include "vm.h"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "room.h"
|
2018-01-26 12:26:09 -08:00
|
|
|
#include "user.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"
|
|
|
|
#include "invite_3pid.h"
|
|
|
|
#include "createroom.h"
|
2018-01-20 02:35:50 -08:00
|
|
|
#include "request.h"
|
2018-01-22 03:32:15 -08:00
|
|
|
#include "v1/v1.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"
|
2017-10-19 01:32:53 -07:00
|
|
|
#include "txn.h"
|
2018-02-25 23:24:12 -08:00
|
|
|
#include "hook.h"
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2018-04-22 15:17:07 -07:00
|
|
|
struct ircd::m::self::init
|
|
|
|
{
|
|
|
|
init(const json::object &config);
|
|
|
|
~init() noexcept;
|
|
|
|
};
|
|
|
|
|
2017-12-12 13:33:14 -07:00
|
|
|
struct ircd::m::init
|
2017-09-08 02:32:49 -07:00
|
|
|
{
|
2018-03-28 13:27:39 -07:00
|
|
|
struct modules;
|
|
|
|
struct listeners;
|
2017-12-12 13:33:14 -07:00
|
|
|
|
2018-03-28 13:27:39 -07:00
|
|
|
json::object config;
|
2018-04-22 15:17:07 -07:00
|
|
|
self::init _self;
|
2017-12-12 13:33:14 -07:00
|
|
|
keys::init _keys;
|
2018-03-28 13:27:39 -07:00
|
|
|
dbs::init _dbs;
|
2018-04-16 14:21:54 -07:00
|
|
|
vm::init _vm;
|
2018-03-28 13:27:39 -07:00
|
|
|
std::unique_ptr<modules> modules;
|
|
|
|
std::unique_ptr<listeners> listeners;
|
|
|
|
|
|
|
|
static void bootstrap();
|
2017-12-12 13:33:14 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|