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
|
|
|
|
{
|
2017-12-12 21:33:14 +01:00
|
|
|
struct init;
|
|
|
|
|
2017-10-19 10:32:53 +02:00
|
|
|
extern struct user me;
|
|
|
|
extern struct room my_room;
|
2017-11-16 02:48:25 +01:00
|
|
|
extern struct room control;
|
2017-12-12 21:33:14 +01:00
|
|
|
extern struct log::log log;
|
|
|
|
|
|
|
|
IRCD_OVERLOAD(generate)
|
2017-11-16 02:48:25 +01:00
|
|
|
}
|
2017-10-19 10:32:53 +02:00
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
namespace ircd::m::self
|
|
|
|
{
|
|
|
|
string_view host();
|
|
|
|
bool host(const string_view &);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
inline string_view my_host() { return self::host(); }
|
|
|
|
inline bool my_host(const string_view &h) { return self::host(h); }
|
2017-10-19 10:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using m::my_host;
|
|
|
|
}
|
2017-08-23 23:10:28 +02:00
|
|
|
|
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"
|
|
|
|
#include "event.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "dbs.h"
|
2018-02-08 06:08:58 +01:00
|
|
|
#include "cursor.h"
|
2018-01-29 18:36:05 +01:00
|
|
|
#include "state.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "room.h"
|
2018-01-26 21:26:09 +01:00
|
|
|
#include "user.h"
|
2018-01-20 11:35:50 +01:00
|
|
|
#include "request.h"
|
|
|
|
#include "session.h"
|
2018-01-22 12:32:15 +01:00
|
|
|
#include "v1/v1.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "io.h"
|
|
|
|
#include "vm.h"
|
|
|
|
#include "filter.h"
|
|
|
|
#include "keys.h"
|
|
|
|
#include "txn.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
|
|
|
{
|
2017-12-12 21:33:14 +01:00
|
|
|
json::object conf;
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2017-12-12 21:33:14 +01:00
|
|
|
void bootstrap();
|
|
|
|
void listeners();
|
|
|
|
void modules();
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
dbs::init _dbs;
|
2017-12-12 21:33:14 +01:00
|
|
|
keys::init _keys;
|
|
|
|
|
|
|
|
public:
|
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|