2017-08-23 23:10:28 +02:00
|
|
|
/*
|
|
|
|
* charybdis: 21st Century IRC++d
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_EVENT_H
|
2017-10-25 18:47:03 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wsubobject-linkage"
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-09-08 11:32:49 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct event;
|
2017-11-16 02:48:25 +01:00
|
|
|
|
|
|
|
bool my(const id::event &);
|
|
|
|
bool my(const event &);
|
|
|
|
|
|
|
|
size_t degree(const event &);
|
2018-01-20 14:48:39 +01:00
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
std::string pretty(const event &);
|
|
|
|
std::string pretty_oneline(const event &);
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2018-01-20 14:48:39 +01:00
|
|
|
id::event event_id(const event &, id::event::buf &buf, const const_raw_buffer &hash);
|
|
|
|
id::event event_id(const event &, id::event::buf &buf);
|
|
|
|
id::event event_id(const event &);
|
2017-09-08 11:32:49 +02:00
|
|
|
}
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
/// The _Main Event_. Most fundamental primitive of the Matrix protocol.
|
|
|
|
///
|
|
|
|
/// This json::tuple provides at least all of the legal members of the matrix
|
|
|
|
/// standard event. This is the fundamental building block of the matrix
|
|
|
|
/// system. Rooms are collections of events. Messages between servers are
|
|
|
|
/// passed as bundles of events (or directly). Due to the ubiquitous usage,
|
|
|
|
/// and diversity of extensions, the class member interface is somewhat minimal.
|
|
|
|
///
|
2017-09-08 11:32:49 +02:00
|
|
|
struct ircd::m::event
|
2017-08-26 06:39:36 +02:00
|
|
|
:json::tuple
|
2017-08-23 23:10:28 +02:00
|
|
|
<
|
2017-11-16 02:48:25 +01:00
|
|
|
json::property<name::auth_events, json::array>,
|
2017-09-26 06:42:07 +02:00
|
|
|
json::property<name::content, json::object>,
|
2017-10-03 13:10:26 +02:00
|
|
|
json::property<name::depth, int64_t>,
|
2017-10-25 18:47:03 +02:00
|
|
|
json::property<name::event_id, json::string>,
|
|
|
|
json::property<name::hashes, json::object>,
|
|
|
|
json::property<name::membership, json::string>,
|
|
|
|
json::property<name::origin, json::string>,
|
2017-09-08 12:08:29 +02:00
|
|
|
json::property<name::origin_server_ts, time_t>,
|
2017-10-25 18:47:03 +02:00
|
|
|
json::property<name::prev_events, json::array>,
|
|
|
|
json::property<name::prev_state, json::array>,
|
|
|
|
json::property<name::room_id, json::string>,
|
|
|
|
json::property<name::sender, json::string>,
|
|
|
|
json::property<name::signatures, json::object>,
|
|
|
|
json::property<name::state_key, json::string>,
|
|
|
|
json::property<name::type, json::string>,
|
2017-09-25 03:05:42 +02:00
|
|
|
json::property<name::unsigned_, string_view>
|
2017-08-23 23:10:28 +02:00
|
|
|
>
|
|
|
|
{
|
2017-10-25 18:47:03 +02:00
|
|
|
struct fetch;
|
2017-11-16 02:48:25 +01:00
|
|
|
struct sync;
|
2017-10-28 21:34:44 +02:00
|
|
|
struct prev;
|
2017-10-25 18:47:03 +02:00
|
|
|
|
2017-11-30 19:47:41 +01:00
|
|
|
// Common convenience aliases
|
2017-09-25 03:05:42 +02:00
|
|
|
using id = m::id::event;
|
2017-11-30 19:47:41 +01:00
|
|
|
using closure = std::function<void (const event &)>;
|
|
|
|
using closure_bool = std::function<bool (const event &)>;
|
2017-09-25 03:05:42 +02:00
|
|
|
|
|
|
|
static database *events;
|
|
|
|
|
2017-09-08 11:32:49 +02:00
|
|
|
using super_type::tuple;
|
2018-01-20 14:48:39 +01:00
|
|
|
using super_type::operator=;
|
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
event(const id &, const mutable_buffer &buf);
|
|
|
|
event() = default;
|
2017-08-23 23:10:28 +02:00
|
|
|
};
|
2017-10-25 18:47:03 +02:00
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
void for_each(const event::prev &, const std::function<void (const event::id &)> &);
|
|
|
|
size_t degree(const event::prev &);
|
|
|
|
size_t count(const event::prev &);
|
|
|
|
|
|
|
|
std::string pretty(const event::prev &);
|
|
|
|
std::string pretty_oneline(const event::prev &);
|
|
|
|
}
|
|
|
|
|
2017-10-28 21:34:44 +02:00
|
|
|
struct ircd::m::event::prev
|
|
|
|
:json::tuple
|
|
|
|
<
|
|
|
|
json::property<name::auth_events, json::array>,
|
2017-11-16 02:48:25 +01:00
|
|
|
json::property<name::prev_state, json::array>,
|
|
|
|
json::property<name::prev_events, json::array>
|
2017-10-28 21:34:44 +02:00
|
|
|
>
|
|
|
|
{
|
|
|
|
enum cond :int;
|
|
|
|
|
|
|
|
using super_type::tuple;
|
|
|
|
using super_type::operator=;
|
|
|
|
};
|
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
inline bool
|
|
|
|
ircd::m::my(const event &event)
|
2017-10-28 21:34:44 +02:00
|
|
|
{
|
2017-11-16 02:48:25 +01:00
|
|
|
return my(event::id(at<"event_id"_>(event)));
|
2017-10-28 21:34:44 +02:00
|
|
|
}
|
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
inline bool
|
|
|
|
ircd::m::my(const id::event &event_id)
|
2017-10-28 21:34:44 +02:00
|
|
|
{
|
2017-11-16 02:48:25 +01:00
|
|
|
return self::host(event_id.host());
|
2017-10-28 21:34:44 +02:00
|
|
|
}
|
|
|
|
|
2017-10-25 18:47:03 +02:00
|
|
|
#pragma GCC diagnostic pop
|