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-08-23 23:51:34 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Protocol notes
|
|
|
|
//
|
|
|
|
// 10.4
|
|
|
|
// The total size of any event MUST NOT exceed 65 KB.
|
|
|
|
//
|
|
|
|
// There are additional restrictions on sizes per key:
|
|
|
|
// sender MUST NOT exceed 255 bytes (including domain).
|
|
|
|
// room_id MUST NOT exceed 255 bytes.
|
|
|
|
// state_key MUST NOT exceed 255 bytes.
|
|
|
|
// type MUST NOT exceed 255 bytes.
|
|
|
|
// event_id MUST NOT exceed 255 bytes.
|
|
|
|
//
|
|
|
|
// Some event types have additional size restrictions which are specified in
|
|
|
|
// the description of the event. Additional keys have no limit other than that
|
|
|
|
// implied by the total 65 KB limit on events.
|
|
|
|
//
|
|
|
|
|
2017-09-08 11:32:49 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct event;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd::m::name
|
|
|
|
{
|
2017-10-03 13:10:26 +02:00
|
|
|
constexpr const char *const auth_events {"auth_events"};
|
2017-09-25 03:05:42 +02:00
|
|
|
constexpr const char *const content {"content"};
|
2017-10-03 13:10:26 +02:00
|
|
|
constexpr const char *const depth {"depth"};
|
2017-09-25 03:05:42 +02:00
|
|
|
constexpr const char *const event_id {"event_id"};
|
2017-10-03 13:10:26 +02:00
|
|
|
constexpr const char *const hashes {"hashes"};
|
|
|
|
constexpr const char *const membership {"membership"};
|
|
|
|
constexpr const char *const origin {"origin"};
|
2017-09-25 03:05:42 +02:00
|
|
|
constexpr const char *const origin_server_ts {"origin_server_ts"};
|
|
|
|
constexpr const char *const prev_ids {"prev_ids"};
|
2017-10-03 13:10:26 +02:00
|
|
|
constexpr const char *const prev_events {"prev_ids"};
|
|
|
|
constexpr const char *const prev_state {"prev_ids"};
|
2017-09-25 03:05:42 +02:00
|
|
|
constexpr const char *const room_id {"room_id"};
|
|
|
|
constexpr const char *const sender {"sender"};
|
|
|
|
constexpr const char *const signatures {"signatures"};
|
|
|
|
constexpr const char *const state_key {"state_key"};
|
|
|
|
constexpr const char *const type {"type"};
|
|
|
|
constexpr const char *const unsigned_ {"unsigned"};
|
2017-09-08 11:32:49 +02:00
|
|
|
}
|
2017-08-23 23:10:28 +02:00
|
|
|
|
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-10-03 13:10:26 +02:00
|
|
|
json::property<name::auth_events, string_view>,
|
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-09-25 03:05:42 +02:00
|
|
|
json::property<name::event_id, string_view>,
|
2017-10-03 13:10:26 +02:00
|
|
|
json::property<name::hashes, string_view>,
|
|
|
|
json::property<name::membership, string_view>,
|
|
|
|
json::property<name::origin, string_view>,
|
2017-09-08 12:08:29 +02:00
|
|
|
json::property<name::origin_server_ts, time_t>,
|
2017-09-25 03:05:42 +02:00
|
|
|
json::property<name::prev_ids, string_view>,
|
2017-10-03 13:10:26 +02:00
|
|
|
json::property<name::prev_events, string_view>,
|
|
|
|
json::property<name::prev_state, string_view>,
|
2017-09-08 12:08:29 +02:00
|
|
|
json::property<name::room_id, string_view>,
|
2017-09-25 03:05:42 +02:00
|
|
|
json::property<name::sender, string_view>,
|
|
|
|
json::property<name::signatures, string_view>,
|
2017-09-08 12:08:29 +02:00
|
|
|
json::property<name::state_key, string_view>,
|
2017-09-25 03:05:42 +02:00
|
|
|
json::property<name::type, string_view>,
|
|
|
|
json::property<name::unsigned_, string_view>
|
2017-08-23 23:10:28 +02:00
|
|
|
>
|
|
|
|
{
|
2017-09-25 03:05:42 +02:00
|
|
|
using id = m::id::event;
|
|
|
|
|
|
|
|
static database *events;
|
|
|
|
using cursor = db::cursor<events, event>;
|
|
|
|
using const_iterator = cursor::const_iterator;
|
|
|
|
using iterator = const_iterator;
|
2017-09-28 03:31:21 +02:00
|
|
|
using where = db::where;
|
|
|
|
template<enum db::where w = where::noop> using query = cursor::query_type<w>;
|
2017-09-25 03:05:42 +02:00
|
|
|
|
|
|
|
// Queue of contexts waiting to see the next inserted event
|
|
|
|
static ctx::view<const event> inserted;
|
2017-10-03 13:12:54 +02:00
|
|
|
static id::buf head;
|
2017-09-25 03:05:42 +02:00
|
|
|
|
|
|
|
static const_iterator find(const id &);
|
|
|
|
static void insert(json::iov &);
|
|
|
|
|
2017-09-08 11:32:49 +02:00
|
|
|
using super_type::tuple;
|
|
|
|
using super_type::operator=;
|
2017-08-23 23:10:28 +02:00
|
|
|
};
|