mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
111 lines
2.1 KiB
C++
111 lines
2.1 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_M_H
|
|
|
|
// required to disambiguate resolution around some overloads in this ns.
|
|
namespace ircd::m
|
|
{
|
|
#ifdef __clang__
|
|
using std::operator<;
|
|
using std::operator==;
|
|
using std::operator!=;
|
|
using ircd::json::at;
|
|
using ircd::json::get;
|
|
#endif
|
|
|
|
using ircd::operator!;
|
|
}
|
|
|
|
// explicit imports required for GCC or clang
|
|
namespace ircd::m
|
|
{
|
|
using ircd::hash;
|
|
}
|
|
|
|
/// Matrix Protocol System
|
|
namespace ircd::m
|
|
{
|
|
struct init;
|
|
|
|
IRCD_OVERLOAD(generate)
|
|
|
|
extern struct log::log log;
|
|
}
|
|
|
|
#include "name.h"
|
|
#include "error.h"
|
|
#include "self.h"
|
|
#include "id.h"
|
|
#include "event/event.h"
|
|
#include "get.h"
|
|
#include "query.h"
|
|
#include "dbs/dbs.h"
|
|
#include "vm.h"
|
|
#include "invite_3pid.h"
|
|
#include "createroom.h"
|
|
#include "room/room.h"
|
|
#include "user/user.h"
|
|
#include "users.h"
|
|
#include "rooms.h"
|
|
#include "filter.h"
|
|
#include "events.h"
|
|
#include "node.h"
|
|
#include "login.h"
|
|
#include "register.h"
|
|
#include "device.h"
|
|
#include "request.h"
|
|
#include "fed/fed.h"
|
|
#include "keys.h"
|
|
#include "edu.h"
|
|
#include "presence.h"
|
|
#include "typing.h"
|
|
#include "receipt.h"
|
|
#include "direct_to_device.h"
|
|
#include "txn.h"
|
|
#include "hook.h"
|
|
#include "visible.h"
|
|
#include "redacted.h"
|
|
#include "feds.h"
|
|
#include "app.h"
|
|
#include "sync.h"
|
|
#include "fetch.h"
|
|
#include "breadcrumb_rooms.h"
|
|
#include "media.h"
|
|
#include "search.h"
|
|
|
|
struct ircd::m::init
|
|
{
|
|
struct modules;
|
|
struct backfill;
|
|
|
|
self::init _self;
|
|
dbs::init _dbs;
|
|
std::unique_ptr<modules> _modules;
|
|
|
|
static void bootstrap();
|
|
void close();
|
|
|
|
public:
|
|
init(const string_view &origin, const string_view &hostname);
|
|
~init() noexcept;
|
|
};
|
|
|
|
struct ircd::m::init::modules
|
|
{
|
|
void fini_imports() noexcept;
|
|
void init_imports();
|
|
void init_keys();
|
|
|
|
public:
|
|
modules();
|
|
~modules() noexcept;
|
|
};
|