2019-05-09 06:28:57 +02:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2019 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
|
2019-05-10 08:13:40 +02:00
|
|
|
#define HAVE_IRCD_M_DBS_EVENT_REFS_H
|
|
|
|
|
|
|
|
namespace ircd::m::dbs
|
|
|
|
{
|
|
|
|
constexpr size_t EVENT_REFS_KEY_MAX_SIZE
|
|
|
|
{
|
|
|
|
sizeof(event::idx) + sizeof(event::idx)
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr size_t ref_shift
|
|
|
|
{
|
|
|
|
8 * (sizeof(event::idx) - sizeof(ref))
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr event::idx ref_mask
|
|
|
|
{
|
|
|
|
0xFFUL << ref_shift
|
|
|
|
};
|
|
|
|
|
|
|
|
string_view
|
|
|
|
event_refs_key(const mutable_buffer &out,
|
|
|
|
const event::idx &tgt,
|
|
|
|
const ref &type,
|
|
|
|
const event::idx &referer);
|
|
|
|
|
|
|
|
std::tuple<ref, event::idx>
|
|
|
|
event_refs_key(const string_view &amalgam);
|
|
|
|
|
|
|
|
string_view
|
|
|
|
reflect(const ref &);
|
2020-03-25 19:06:29 +01:00
|
|
|
|
2020-12-05 13:51:33 +01:00
|
|
|
size_t _prefetch_event_refs(const event &, const write_opts &);
|
2020-03-25 19:06:29 +01:00
|
|
|
void _index_event_refs(db::txn &, const event &, const write_opts &);
|
|
|
|
|
|
|
|
// event_idx | ref_type, event_idx
|
|
|
|
extern db::domain event_refs;
|
2019-05-10 08:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd::m::dbs::desc
|
|
|
|
{
|
2020-10-02 04:04:48 +02:00
|
|
|
extern conf::item<std::string> event_refs__comp;
|
2020-03-25 19:06:29 +01:00
|
|
|
extern conf::item<size_t> event_refs__block__size;
|
|
|
|
extern conf::item<size_t> event_refs__meta_block__size;
|
|
|
|
extern conf::item<size_t> event_refs__cache__size;
|
|
|
|
extern conf::item<size_t> event_refs__cache_comp__size;
|
|
|
|
extern const db::prefix_transform event_refs__pfx;
|
|
|
|
extern const db::comparator event_refs__cmp;
|
|
|
|
extern const db::descriptor event_refs;
|
2019-05-10 08:13:40 +02:00
|
|
|
}
|
2019-05-09 06:28:57 +02:00
|
|
|
|
|
|
|
/// Types of references indexed by event_refs. This is a single byte integer,
|
|
|
|
/// which should be plenty of namespace. Internally event_refs_key() and
|
|
|
|
/// event_refs store this in a high order byte of an event::idx integer. This
|
|
|
|
/// is an alternative to having separate columns for each type of reference.
|
2019-05-10 07:43:28 +02:00
|
|
|
///
|
2019-05-20 00:11:58 +02:00
|
|
|
/// NOTE: These values are written to the database and cannot be changed to
|
|
|
|
/// maintain ABI stability.
|
|
|
|
///
|
|
|
|
/// NOTE: These values not bit-flags and the entire integer space is in use.
|
|
|
|
///
|
2019-05-09 06:28:57 +02:00
|
|
|
enum class ircd::m::dbs::ref
|
|
|
|
:uint8_t
|
|
|
|
{
|
2019-05-10 07:43:28 +02:00
|
|
|
/// All events which reference this event in their `prev_events`.
|
|
|
|
NEXT = 0x00,
|
|
|
|
|
|
|
|
/// All power events which reference this event in their `auth_events`.
|
|
|
|
/// Non-auth/non-power events are not involved in this graph at all.
|
|
|
|
NEXT_AUTH = 0x01,
|
|
|
|
|
|
|
|
/// The next states in the transitions for a (type,state_key) cell.
|
|
|
|
NEXT_STATE = 0x02,
|
|
|
|
|
|
|
|
/// The previous states in the transitions for a (type,state_key) cell.
|
2019-05-09 06:28:57 +02:00
|
|
|
PREV_STATE = 0x04,
|
|
|
|
|
2019-05-10 07:43:28 +02:00
|
|
|
/// All m.receipt's which target this event.
|
2019-05-09 06:28:57 +02:00
|
|
|
M_RECEIPT__M_READ = 0x10,
|
|
|
|
|
2019-05-10 07:43:28 +02:00
|
|
|
/// All m.relates_to's which target this event.
|
2019-06-22 01:32:15 +02:00
|
|
|
M_RELATES = 0x20,
|
2019-05-09 06:28:57 +02:00
|
|
|
|
2019-05-10 07:43:28 +02:00
|
|
|
/// All m.room.redaction's which target this event.
|
2019-05-09 06:28:57 +02:00
|
|
|
M_ROOM_REDACTION = 0x40,
|
|
|
|
};
|