2018-01-26 21:26:09 +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.
|
|
|
|
|
|
|
|
#include <ircd/m/m.h>
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Residence of the events database instance pointer.
|
|
|
|
decltype(ircd::m::dbs::events)
|
|
|
|
ircd::m::dbs::events
|
|
|
|
{};
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Linkage for a cache of the columns of the events database which directly
|
|
|
|
/// correspond to a property in the matrix event object. This array allows
|
|
|
|
/// for constant time access to a column the same way one can make constant
|
|
|
|
/// time access to a property in m::event.
|
|
|
|
decltype(ircd::m::dbs::event_column)
|
|
|
|
ircd::m::dbs::event_column
|
|
|
|
{};
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
/// Linkage for a reference to the event_seq column.
|
|
|
|
decltype(ircd::m::dbs::event_idx)
|
|
|
|
ircd::m::dbs::event_idx
|
|
|
|
{};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Linkage for a reference to the state_node column.
|
|
|
|
decltype(ircd::m::dbs::state_node)
|
|
|
|
ircd::m::dbs::state_node
|
|
|
|
{};
|
|
|
|
|
|
|
|
/// Linkage for a reference to the room_events column
|
|
|
|
decltype(ircd::m::dbs::room_events)
|
|
|
|
ircd::m::dbs::room_events
|
|
|
|
{};
|
|
|
|
|
2018-04-15 23:40:10 +02:00
|
|
|
/// Linkage for a reference to the room_joined column
|
|
|
|
decltype(ircd::m::dbs::room_joined)
|
|
|
|
ircd::m::dbs::room_joined
|
2018-03-03 07:03:06 +01:00
|
|
|
{};
|
|
|
|
|
2018-03-04 08:39:24 +01:00
|
|
|
/// Linkage for a reference to the room_state column
|
|
|
|
decltype(ircd::m::dbs::room_state)
|
|
|
|
ircd::m::dbs::room_state
|
|
|
|
{};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
//
|
|
|
|
// init
|
|
|
|
//
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Initializes the m::dbs subsystem; sets up the events database. Held/called
|
|
|
|
/// by m::init. Most of the extern variables in m::dbs are not ready until
|
|
|
|
/// this call completes.
|
2018-04-09 21:56:43 +02:00
|
|
|
ircd::m::dbs::init::init(std::string dbopts)
|
2018-02-08 22:23:01 +01:00
|
|
|
{
|
|
|
|
// Open the events database
|
2018-04-09 21:56:43 +02:00
|
|
|
static const auto dbname{"events"};
|
|
|
|
events = std::make_shared<database>(dbname, std::move(dbopts), desc::events);
|
2018-02-08 22:23:01 +01:00
|
|
|
|
|
|
|
// Cache the columns for the event tuple in order for constant time lookup
|
|
|
|
assert(event_columns == event::size());
|
|
|
|
std::array<string_view, event::size()> keys; //TODO: why did this happen?
|
|
|
|
_key_transform(event{}, begin(keys), end(keys)); //TODO: how did this happen?
|
|
|
|
for(size_t i(0); i < keys.size(); ++i)
|
|
|
|
event_column[i] = db::column
|
|
|
|
{
|
|
|
|
*events, keys[i]
|
|
|
|
};
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// Cache the columns for the metadata
|
2018-04-18 04:14:39 +02:00
|
|
|
event_idx = db::column{*events, desc::events__event_idx.name};
|
2018-04-15 23:40:10 +02:00
|
|
|
state_node = db::column{*events, desc::events__state_node.name};
|
|
|
|
room_events = db::index{*events, desc::events__room_events.name};
|
|
|
|
room_joined = db::index{*events, desc::events__room_joined.name};
|
|
|
|
room_state = db::index{*events, desc::events__room_state.name};
|
2018-02-08 22:23:01 +01:00
|
|
|
}
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Shuts down the m::dbs subsystem; closes the events database. The extern
|
|
|
|
/// variables in m::dbs will no longer be functioning after this call.
|
|
|
|
ircd::m::dbs::init::~init()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
// Columns should be unrefed before DB closes
|
|
|
|
state_node = {};
|
|
|
|
room_events = {};
|
2018-04-15 23:40:10 +02:00
|
|
|
room_joined = {};
|
2018-03-04 08:39:24 +01:00
|
|
|
room_state = {};
|
2018-02-08 22:23:01 +01:00
|
|
|
for(auto &column : event_column)
|
|
|
|
column = {};
|
|
|
|
|
|
|
|
// Unref DB (should close)
|
|
|
|
events = {};
|
|
|
|
}
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
namespace ircd::m::dbs
|
|
|
|
{
|
2018-03-04 08:39:24 +01:00
|
|
|
static void _index__room_state(db::txn &, const event &, const write_opts &);
|
2018-03-03 07:03:06 +01:00
|
|
|
static void _index__room_events(db::txn &, const event &, const write_opts &, const string_view &);
|
2018-04-15 23:40:10 +02:00
|
|
|
static void _index__room_joined(db::txn &, const event &, const write_opts &);
|
2018-03-03 07:03:06 +01:00
|
|
|
static string_view _index_state(db::txn &, const event &, const write_opts &);
|
|
|
|
static string_view _index_redact(db::txn &, const event &, const write_opts &);
|
|
|
|
static string_view _index_ephem(db::txn &, const event &, const write_opts &);
|
2018-02-08 22:23:01 +01:00
|
|
|
}
|
2018-01-28 17:45:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::write(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
assert(opts.idx != 0);
|
|
|
|
|
|
|
|
db::txn::append
|
|
|
|
{
|
|
|
|
txn, dbs::event_idx,
|
|
|
|
{
|
|
|
|
db::op::SET,
|
|
|
|
at<"event_id"_>(event),
|
|
|
|
byte_view<string_view>(opts.idx)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-30 18:58:36 +01:00
|
|
|
db::txn::append
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
txn, byte_view<string_view>(opts.idx), event, event_column, opts.op
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
if(defined(json::get<"state_key"_>(event)))
|
2018-03-03 07:03:06 +01:00
|
|
|
return _index_state(txn, event, opts);
|
2018-02-08 22:23:01 +01:00
|
|
|
|
2018-02-28 07:42:25 +01:00
|
|
|
if(at<"type"_>(event) == "m.room.redaction")
|
2018-03-03 07:03:06 +01:00
|
|
|
return _index_redact(txn, event, opts);
|
2018-02-28 07:42:25 +01:00
|
|
|
|
2018-03-03 07:03:06 +01:00
|
|
|
return _index_ephem(txn, event, opts);
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::_index_ephem(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
2018-01-28 17:45:09 +01:00
|
|
|
{
|
2018-03-03 07:03:06 +01:00
|
|
|
_index__room_events(txn, event, opts, opts.root_in);
|
|
|
|
return opts.root_in;
|
2018-02-08 22:23:01 +01:00
|
|
|
}
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-28 07:42:25 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::_index_redact(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
2018-02-28 07:42:25 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto &target_id
|
|
|
|
{
|
|
|
|
at<"redacts"_>(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
event::fetch target
|
|
|
|
{
|
|
|
|
target_id, std::nothrow
|
|
|
|
};
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
if(unlikely(!target.valid))
|
2018-02-28 07:42:25 +01:00
|
|
|
log::error
|
|
|
|
{
|
|
|
|
"Redaction from '%s' missing redaction target '%s'",
|
|
|
|
at<"event_id"_>(event),
|
|
|
|
target_id
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!defined(json::get<"state_key"_>(target)))
|
|
|
|
{
|
2018-03-03 07:03:06 +01:00
|
|
|
_index__room_events(txn, event, opts, opts.root_in);
|
|
|
|
return opts.root_in;
|
2018-02-28 07:42:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const string_view new_root
|
|
|
|
{
|
2018-03-03 07:03:06 +01:00
|
|
|
opts.root_in //state::remove(txn, state_root_out, state_root_in, target)
|
2018-02-28 07:42:25 +01:00
|
|
|
};
|
|
|
|
|
2018-03-03 07:03:06 +01:00
|
|
|
_index__room_events(txn, event, opts, new_root);
|
2018-02-28 07:42:25 +01:00
|
|
|
return new_root;
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
"Failed to update state from redaction: %s", e.what()
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::_index_state(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
2018-02-08 22:23:01 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto &type
|
2018-02-05 04:34:59 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
at<"type"_>(event)
|
|
|
|
};
|
2018-02-05 04:34:59 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const auto &room_id
|
2018-01-28 17:45:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
at<"room_id"_>(event)
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-03-04 08:39:24 +01:00
|
|
|
const string_view &new_root
|
2018-02-08 22:23:01 +01:00
|
|
|
{
|
2018-03-25 07:46:43 +02:00
|
|
|
opts.op == db::op::SET && opts.history?
|
2018-03-04 08:39:24 +01:00
|
|
|
state::insert(txn, opts.root_out, opts.root_in, event):
|
|
|
|
opts.root_in
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-03-03 07:03:06 +01:00
|
|
|
_index__room_events(txn, event, opts, new_root);
|
2018-04-15 23:40:10 +02:00
|
|
|
_index__room_joined(txn, event, opts);
|
2018-03-04 08:39:24 +01:00
|
|
|
_index__room_state(txn, event, opts);
|
|
|
|
return new_root;
|
2018-02-08 22:23:01 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
log::error
|
|
|
|
{
|
|
|
|
"Failed to update state: %s", e.what()
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Adds the entry for the room_events column into the txn.
|
|
|
|
/// You need find/create the right state_root before this.
|
|
|
|
void
|
|
|
|
ircd::m::dbs::_index__room_events(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts,
|
|
|
|
const string_view &new_root)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
const ctx::critical_assertion ca;
|
2018-04-18 04:14:39 +02:00
|
|
|
thread_local char buf[256 + 1 + 8 + 8];
|
2018-02-08 22:23:01 +01:00
|
|
|
const string_view &key
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
room_events_key(buf, at<"room_id"_>(event), at<"depth"_>(event), opts.idx)
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
db::txn::append
|
|
|
|
{
|
|
|
|
txn, room_events,
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-03-25 07:46:43 +02:00
|
|
|
opts.op, // db::op
|
2018-03-03 07:03:06 +01:00
|
|
|
key, // key
|
|
|
|
new_root // val
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-15 23:40:10 +02:00
|
|
|
/// Adds the entry for the room_joined column into the txn.
|
2018-03-03 07:03:06 +01:00
|
|
|
/// This only is affected if opts.present=true
|
|
|
|
void
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::_index__room_joined(db::txn &txn,
|
2018-03-03 07:03:06 +01:00
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
|
|
|
{
|
|
|
|
if(!opts.present)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(at<"type"_>(event) != "m.room.member")
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ctx::critical_assertion ca;
|
|
|
|
thread_local char buf[512];
|
|
|
|
const string_view &key
|
|
|
|
{
|
2018-04-15 23:40:10 +02:00
|
|
|
room_joined_key(buf, at<"room_id"_>(event), at<"origin"_>(event), at<"state_key"_>(event))
|
2018-03-03 07:03:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const string_view &membership
|
|
|
|
{
|
2018-03-25 06:46:17 +02:00
|
|
|
m::membership(event)
|
2018-03-03 07:03:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
assert(!empty(membership));
|
|
|
|
|
2018-03-25 07:46:43 +02:00
|
|
|
db::op op;
|
|
|
|
if(opts.op == db::op::SET) switch(hash(membership))
|
2018-03-03 07:03:06 +01:00
|
|
|
{
|
|
|
|
case hash("join"):
|
|
|
|
op = db::op::SET;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case hash("ban"):
|
|
|
|
case hash("leave"):
|
|
|
|
op = db::op::DELETE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return;
|
2018-03-25 07:46:43 +02:00
|
|
|
}
|
|
|
|
else if(opts.op == db::op::DELETE)
|
|
|
|
op = opts.op;
|
|
|
|
else
|
|
|
|
return;
|
2018-03-03 07:03:06 +01:00
|
|
|
|
|
|
|
db::txn::append
|
|
|
|
{
|
2018-04-15 23:40:10 +02:00
|
|
|
txn, room_joined,
|
2018-03-03 07:03:06 +01:00
|
|
|
{
|
|
|
|
op,
|
|
|
|
key,
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
|
|
|
}
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-04-15 23:40:10 +02:00
|
|
|
/// Adds the entry for the room_joined column into the txn.
|
2018-03-04 08:39:24 +01:00
|
|
|
/// This only is affected if opts.present=true
|
|
|
|
void
|
|
|
|
ircd::m::dbs::_index__room_state(db::txn &txn,
|
|
|
|
const event &event,
|
|
|
|
const write_opts &opts)
|
|
|
|
{
|
|
|
|
if(!opts.present)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ctx::critical_assertion ca;
|
|
|
|
thread_local char buf[768];
|
|
|
|
const string_view &key
|
|
|
|
{
|
|
|
|
room_state_key(buf, at<"room_id"_>(event), at<"type"_>(event), at<"state_key"_>(event))
|
|
|
|
};
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
const string_view val
|
2018-03-04 08:39:24 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
byte_view<string_view>(opts.idx)
|
2018-03-04 08:39:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const db::op op
|
|
|
|
{
|
2018-03-25 07:46:43 +02:00
|
|
|
opts.op == db::op::SET && at<"type"_>(event) != "m.room.redaction"?
|
2018-03-04 08:39:24 +01:00
|
|
|
db::op::SET:
|
|
|
|
db::op::DELETE
|
|
|
|
};
|
|
|
|
|
|
|
|
db::txn::append
|
|
|
|
{
|
|
|
|
txn, room_state,
|
|
|
|
{
|
|
|
|
op,
|
|
|
|
key,
|
2018-03-25 07:46:43 +02:00
|
|
|
value_required(op)? val : string_view{},
|
2018-03-04 08:39:24 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const event &event)
|
|
|
|
{
|
|
|
|
return state_root(out, at<"room_id"_>(event), at<"event_id"_>(event), at<"depth"_>(event));
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const id::event &event_id)
|
2018-04-18 04:14:39 +02:00
|
|
|
{
|
|
|
|
return state_root(out, event::fetch::index(event_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const event::idx &event_idx)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
static constexpr auto idx
|
|
|
|
{
|
|
|
|
json::indexof<event, "room_id"_>()
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
auto &column
|
|
|
|
{
|
|
|
|
event_column.at(idx)
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
id::room::buf room_id;
|
2018-04-18 04:14:39 +02:00
|
|
|
column(byte_view<string_view>(event_idx), [&room_id]
|
|
|
|
(const string_view &val)
|
2018-02-08 22:23:01 +01:00
|
|
|
{
|
|
|
|
room_id = val;
|
|
|
|
});
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
return state_root(out, room_id, event_idx);
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const id::room &room_id,
|
|
|
|
const id::event &event_id)
|
2018-04-18 04:14:39 +02:00
|
|
|
{
|
|
|
|
return state_root(out, room_id, event::fetch::index(event_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const id::room &room_id,
|
|
|
|
const event::idx &event_idx)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
static constexpr auto idx
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
json::indexof<event, "depth"_>()
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
auto &column
|
|
|
|
{
|
|
|
|
event_column.at(idx)
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
uint64_t depth;
|
2018-04-18 04:14:39 +02:00
|
|
|
column(byte_view<string_view>(event_idx), [&depth]
|
|
|
|
(const string_view &binary)
|
2018-02-08 22:23:01 +01:00
|
|
|
{
|
|
|
|
depth = byte_view<uint64_t>(binary);
|
|
|
|
});
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
return state_root(out, room_id, event_idx, depth);
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const id::room &room_id,
|
|
|
|
const id::event &event_id,
|
|
|
|
const uint64_t &depth)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
return state_root(out, room_id, event::fetch::index(event_id), depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::state_root(const mutable_buffer &out,
|
|
|
|
const id::room &room_id,
|
|
|
|
const event::idx &event_idx,
|
|
|
|
const uint64_t &depth)
|
|
|
|
{
|
|
|
|
char keybuf[256 + 1 + 8 + 8]; const auto key
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
room_events_key(keybuf, room_id, depth, event_idx)
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
string_view ret;
|
|
|
|
room_events(key, [&out, &ret](const string_view &val)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
ret = { data(out), copy(out, val) };
|
|
|
|
});
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
//
|
|
|
|
// Database descriptors
|
|
|
|
//
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-04-16 23:20:50 +02:00
|
|
|
const ircd::database::descriptor
|
2018-04-18 04:14:39 +02:00
|
|
|
ircd::m::dbs::desc::events__event_idx
|
2018-04-16 23:20:50 +02:00
|
|
|
{
|
|
|
|
// name
|
2018-04-18 04:14:39 +02:00
|
|
|
"_event_idx",
|
2018-04-16 23:20:50 +02:00
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### developer note:
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
The key is an event_id and the value is the index number to be used as the
|
|
|
|
key to all the event data columns.
|
2018-04-16 23:20:50 +02:00
|
|
|
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(string_view), typeid(uint64_t)
|
2018-04-16 23:20:50 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
2018-04-18 04:14:39 +02:00
|
|
|
{},
|
2018-04-16 23:20:50 +02:00
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
64_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
2018-04-18 06:39:40 +02:00
|
|
|
16,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-04-16 23:20:50 +02:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// Prefix transform for the events__room_events. The prefix here is a room_id
|
|
|
|
/// and the suffix is the depth+event_id concatenation.
|
|
|
|
/// for efficient sequences
|
|
|
|
///
|
|
|
|
const ircd::db::prefix_transform
|
|
|
|
ircd::m::dbs::desc::events__room_events__pfx
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
"_room_events",
|
|
|
|
|
|
|
|
[](const string_view &key)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-10 01:43:19 +02:00
|
|
|
return has(key, "\0"_sv);
|
2018-02-08 22:23:01 +01:00
|
|
|
},
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
[](const string_view &key)
|
|
|
|
{
|
2018-04-10 01:43:19 +02:00
|
|
|
return split(key, "\0"_sv).first;
|
2018-02-08 22:23:01 +01:00
|
|
|
}
|
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-09 00:15:48 +01:00
|
|
|
/// Comparator for the events__room_events. The goal here is to sort the
|
|
|
|
/// events within a room by their depth from highest to lowest, so the
|
|
|
|
/// highest depth is hit first when a room is sought from this column.
|
|
|
|
///
|
|
|
|
const ircd::db::comparator
|
|
|
|
ircd::m::dbs::desc::events__room_events__cmp
|
|
|
|
{
|
|
|
|
"_room_events",
|
|
|
|
|
|
|
|
// less
|
|
|
|
[](const string_view &a, const string_view &b)
|
|
|
|
{
|
|
|
|
static const auto &pt
|
|
|
|
{
|
|
|
|
events__room_events__pfx
|
|
|
|
};
|
|
|
|
|
|
|
|
// Extract the prefix from the keys
|
|
|
|
const string_view pre[2]
|
|
|
|
{
|
|
|
|
pt.get(a),
|
|
|
|
pt.get(b),
|
|
|
|
};
|
|
|
|
|
2018-04-10 01:43:19 +02:00
|
|
|
const size_t sizes[2]
|
|
|
|
{
|
|
|
|
size(pre[0]),
|
|
|
|
size(pre[1])
|
|
|
|
};
|
|
|
|
|
|
|
|
if(sizes[0] != sizes[1])
|
|
|
|
return sizes[0] < sizes[1];
|
|
|
|
|
2018-02-09 00:15:48 +01:00
|
|
|
if(pre[0] != pre[1])
|
|
|
|
return pre[0] < pre[1];
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
// After the prefix is the depth + event_idx
|
2018-02-09 00:15:48 +01:00
|
|
|
const string_view post[2]
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
a.substr(sizes[0]),
|
|
|
|
b.substr(sizes[1]),
|
2018-02-09 00:15:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if(empty(post[0]))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if(empty(post[1]))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Now want just the depth...
|
2018-04-18 04:14:39 +02:00
|
|
|
const uint64_t depth[2]
|
2018-02-09 00:15:48 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
room_events_key(post[0]).first,
|
|
|
|
room_events_key(post[1]).first,
|
2018-02-09 00:15:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Highest to lowest sort so highest is first
|
|
|
|
return depth[1] < depth[0];
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-02-13 23:21:57 +01:00
|
|
|
ircd::string_view
|
2018-03-04 09:25:27 +01:00
|
|
|
ircd::m::dbs::room_events_key(const mutable_buffer &out_,
|
2018-02-13 23:21:57 +01:00
|
|
|
const id::room &room_id,
|
|
|
|
const uint64_t &depth)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
const const_buffer depth_cb
|
|
|
|
{
|
|
|
|
reinterpret_cast<const char *>(&depth), sizeof(depth)
|
|
|
|
};
|
|
|
|
|
2018-03-04 09:25:27 +01:00
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
2018-04-18 04:14:39 +02:00
|
|
|
consume(out, copy(out, depth_cb));
|
2018-03-04 09:25:27 +01:00
|
|
|
return { data(out_), data(out) };
|
2018-02-13 23:21:57 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
ircd::string_view
|
2018-03-04 09:25:27 +01:00
|
|
|
ircd::m::dbs::room_events_key(const mutable_buffer &out_,
|
2018-02-08 22:23:01 +01:00
|
|
|
const id::room &room_id,
|
|
|
|
const uint64_t &depth,
|
2018-04-18 04:14:39 +02:00
|
|
|
const event::idx &event_idx)
|
2018-02-08 22:23:01 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
const const_buffer depth_cb
|
|
|
|
{
|
|
|
|
reinterpret_cast<const char *>(&depth), sizeof(depth)
|
|
|
|
};
|
|
|
|
|
|
|
|
const const_buffer event_idx_cb
|
|
|
|
{
|
|
|
|
reinterpret_cast<const char *>(&event_idx), sizeof(event_idx)
|
|
|
|
};
|
|
|
|
|
2018-03-04 09:25:27 +01:00
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
2018-04-18 04:14:39 +02:00
|
|
|
consume(out, copy(out, depth_cb));
|
|
|
|
consume(out, copy(out, event_idx_cb));
|
2018-03-04 09:25:27 +01:00
|
|
|
return { data(out_), data(out) };
|
2018-01-26 21:26:09 +01:00
|
|
|
}
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
std::pair<uint64_t, ircd::m::event::idx>
|
2018-02-09 02:15:34 +01:00
|
|
|
ircd::m::dbs::room_events_key(const string_view &amalgam)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
assert(size(amalgam) == 1 + 8 + 8 || size(amalgam) == 1 + 8);
|
|
|
|
assert(amalgam.front() == '\0');
|
2018-03-04 09:25:27 +01:00
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
const uint64_t &depth
|
2018-02-09 02:15:34 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
*reinterpret_cast<const uint64_t *>(data(amalgam) + 1)
|
2018-02-09 02:15:34 +01:00
|
|
|
};
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
const event::idx &event_idx
|
2018-02-09 02:15:34 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
size(amalgam) >= 1 + 8 + 8?
|
|
|
|
*reinterpret_cast<const uint64_t *>(data(amalgam) + 1 + 8):
|
|
|
|
0UL
|
2018-02-09 02:15:34 +01:00
|
|
|
};
|
2018-04-18 04:14:39 +02:00
|
|
|
|
|
|
|
// Make sure these are copied rather than ever returning references in
|
|
|
|
// a tuple because the chance the integers will be aligned is low.
|
|
|
|
return { depth, event_idx };
|
2018-02-09 02:15:34 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
/// This column stores events in sequence in a room. Consider the following:
|
|
|
|
///
|
2018-04-18 04:14:39 +02:00
|
|
|
/// [room_id | depth + event_idx => state_root]
|
2018-02-08 22:23:01 +01:00
|
|
|
///
|
|
|
|
/// The key is composed from three parts:
|
|
|
|
///
|
|
|
|
/// - `room_id` is the official prefix, bounding the sequence. That means we
|
|
|
|
/// make a blind query with just a room_id and get to the beginning of the
|
|
|
|
/// sequence, then iterate until we stop before the next room_id (upper bound).
|
|
|
|
///
|
|
|
|
/// - `depth` is the ordering. Within the sequence, all elements are ordered by
|
2018-02-09 00:15:48 +01:00
|
|
|
/// depth from HIGHEST TO LOWEST. The sequence will start at the highest depth.
|
2018-04-18 04:14:39 +02:00
|
|
|
/// NOTE: Depth is a fixed 8 byte binary integer.
|
2018-02-08 22:23:01 +01:00
|
|
|
///
|
2018-04-18 04:14:39 +02:00
|
|
|
/// - `event_idx` is the key suffix. This column serves to sequence all events
|
2018-02-08 22:23:01 +01:00
|
|
|
/// within a room ordered by depth. There may be duplicate room_id|depth
|
2018-04-18 04:14:39 +02:00
|
|
|
/// prefixing but the event_idx suffix gives the key total uniqueness.
|
|
|
|
/// NOTE: event_idx is a fixed 8 byte binary integer.
|
2018-02-08 22:23:01 +01:00
|
|
|
///
|
|
|
|
/// The value is then used to store the node ID of the state tree root at this
|
|
|
|
/// event. Nodes of the state tree are stored in the state_node column. From
|
|
|
|
/// that root node the state of the room at the time of this event_id can be
|
|
|
|
/// queried.
|
|
|
|
///
|
2018-04-18 04:14:39 +02:00
|
|
|
/// There is one caveat here: we can't directly take a room_id and an event_idx
|
2018-02-08 22:23:01 +01:00
|
|
|
/// and make a trivial query to find the state root, since the depth number
|
|
|
|
/// gets in the way. Rather than creating yet another column without the depth,
|
|
|
|
/// for the time being, we pay the cost of an extra query to events_depth and
|
|
|
|
/// find that missing piece to make the exact query with all three key parts.
|
|
|
|
///
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events__room_events
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"_room_events",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### developer note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
the prefix transform is in effect. this column indexes events by
|
|
|
|
room_id offering an iterable bound of the index prefixed by room_id
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(string_view), typeid(string_view)
|
2018-02-08 22:23:01 +01:00
|
|
|
},
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// options
|
|
|
|
{},
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-09 00:15:48 +01:00
|
|
|
// comparator
|
|
|
|
events__room_events__cmp,
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// prefix transform
|
|
|
|
events__room_events__pfx,
|
2018-04-15 08:00:56 +02:00
|
|
|
|
|
|
|
// cache size
|
|
|
|
64_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
24_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
0, // no bloom filter because of possible comparator issues
|
2018-04-18 06:39:40 +02:00
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-03-04 09:08:30 +01:00
|
|
|
//
|
2018-04-15 23:40:10 +02:00
|
|
|
// joined sequential
|
2018-03-04 09:08:30 +01:00
|
|
|
//
|
|
|
|
|
2018-04-15 23:40:10 +02:00
|
|
|
/// Prefix transform for the events__room_joined
|
2018-03-03 07:03:06 +01:00
|
|
|
///
|
|
|
|
const ircd::db::prefix_transform
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::desc::events__room_joined__pfx
|
2018-03-03 07:03:06 +01:00
|
|
|
{
|
2018-04-15 23:40:10 +02:00
|
|
|
"_room_joined",
|
2018-03-03 07:03:06 +01:00
|
|
|
|
|
|
|
[](const string_view &key)
|
|
|
|
{
|
2018-04-10 01:43:19 +02:00
|
|
|
return has(key, "\0"_sv);
|
2018-03-03 07:03:06 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
[](const string_view &key)
|
|
|
|
{
|
2018-04-10 01:43:19 +02:00
|
|
|
return split(key, "\0"_sv).first;
|
2018-03-03 07:03:06 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-04-03 21:49:03 +02:00
|
|
|
ircd::string_view
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::room_joined_key(const mutable_buffer &out_,
|
|
|
|
const id::room &room_id,
|
|
|
|
const string_view &origin)
|
2018-04-03 21:49:03 +02:00
|
|
|
{
|
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
|
|
|
consume(out, copy(out, origin));
|
|
|
|
return { data(out_), data(out) };
|
|
|
|
}
|
|
|
|
|
2018-03-03 07:03:06 +01:00
|
|
|
ircd::string_view
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::room_joined_key(const mutable_buffer &out_,
|
|
|
|
const id::room &room_id,
|
|
|
|
const string_view &origin,
|
|
|
|
const id::user &member)
|
2018-03-03 07:03:06 +01:00
|
|
|
{
|
2018-03-04 09:25:27 +01:00
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
|
|
|
consume(out, copy(out, origin));
|
|
|
|
consume(out, copy(out, member));
|
|
|
|
return { data(out_), data(out) };
|
2018-03-03 07:03:06 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 23:08:48 +02:00
|
|
|
std::pair<ircd::string_view, ircd::string_view>
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::room_joined_key(const string_view &amalgam)
|
2018-03-04 09:08:30 +01:00
|
|
|
{
|
|
|
|
const auto &key
|
|
|
|
{
|
2018-03-04 09:25:27 +01:00
|
|
|
lstrip(amalgam, "\0"_sv)
|
2018-03-04 09:08:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto &s
|
|
|
|
{
|
2018-03-04 09:25:27 +01:00
|
|
|
split(key, "@"_sv)
|
2018-03-04 09:08:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return
|
|
|
|
{
|
|
|
|
{ s.first },
|
2018-04-12 03:43:45 +02:00
|
|
|
!empty(s.second)?
|
|
|
|
string_view{begin(s.second) - 1, end(s.second)}:
|
|
|
|
string_view{}
|
2018-03-04 09:08:30 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-03 07:03:06 +01:00
|
|
|
const ircd::database::descriptor
|
2018-04-15 23:40:10 +02:00
|
|
|
ircd::m::dbs::desc::events__room_joined
|
2018-03-03 07:03:06 +01:00
|
|
|
{
|
|
|
|
// name
|
2018-04-15 23:40:10 +02:00
|
|
|
"_room_joined",
|
2018-03-03 07:03:06 +01:00
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### developer note:
|
|
|
|
|
|
|
|
the prefix transform is in effect. this column indexes events by
|
|
|
|
room_id offering an iterable bound of the index prefixed by room_id
|
|
|
|
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(string_view), typeid(uint64_t)
|
2018-03-03 07:03:06 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
2018-04-15 23:40:10 +02:00
|
|
|
events__room_joined__pfx,
|
2018-04-15 08:00:56 +02:00
|
|
|
|
|
|
|
// cache size
|
|
|
|
64_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
16_MiB, //TODO: conf
|
2018-04-18 06:39:40 +02:00
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
10,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-03-03 07:03:06 +01:00
|
|
|
};
|
|
|
|
|
2018-03-04 08:39:24 +01:00
|
|
|
//
|
|
|
|
// state sequential
|
|
|
|
//
|
|
|
|
|
|
|
|
/// prefix transform for type,state_key in room_id
|
|
|
|
///
|
|
|
|
/// This transform is special for concatenating room_id with type and state_key
|
|
|
|
/// in that order with prefix being the room_id (this may change to room_id+
|
|
|
|
/// type
|
|
|
|
///
|
|
|
|
const ircd::db::prefix_transform
|
|
|
|
ircd::m::dbs::desc::events__room_state__pfx
|
|
|
|
{
|
|
|
|
"_room_state",
|
|
|
|
[](const string_view &key)
|
|
|
|
{
|
2018-04-10 01:43:19 +02:00
|
|
|
return has(key, "\0"_sv);
|
2018-03-04 08:39:24 +01:00
|
|
|
},
|
2018-04-10 01:43:19 +02:00
|
|
|
|
2018-03-04 08:39:24 +01:00
|
|
|
[](const string_view &key)
|
|
|
|
{
|
|
|
|
return split(key, "\0"_sv).first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::room_state_key(const mutable_buffer &out_,
|
|
|
|
const id::room &room_id,
|
|
|
|
const string_view &type,
|
|
|
|
const string_view &state_key)
|
|
|
|
{
|
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
|
|
|
consume(out, copy(out, type));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
|
|
|
consume(out, copy(out, state_key));
|
|
|
|
return { data(out_), data(out) };
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::m::dbs::room_state_key(const mutable_buffer &out_,
|
|
|
|
const id::room &room_id,
|
|
|
|
const string_view &type)
|
|
|
|
{
|
|
|
|
mutable_buffer out{out_};
|
|
|
|
consume(out, copy(out, room_id));
|
|
|
|
consume(out, copy(out, "\0"_sv));
|
|
|
|
consume(out, copy(out, type));
|
|
|
|
return { data(out_), data(out) };
|
|
|
|
}
|
|
|
|
|
2018-04-12 23:08:48 +02:00
|
|
|
std::pair<ircd::string_view, ircd::string_view>
|
2018-03-04 08:39:24 +01:00
|
|
|
ircd::m::dbs::room_state_key(const string_view &amalgam)
|
|
|
|
{
|
|
|
|
const auto &key
|
|
|
|
{
|
|
|
|
lstrip(amalgam, "\0"_sv)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &s
|
|
|
|
{
|
|
|
|
split(key, "\0"_sv)
|
|
|
|
};
|
|
|
|
|
|
|
|
return
|
|
|
|
{
|
|
|
|
s.first, s.second
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events__room_state
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"_room_state",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### developer note:
|
|
|
|
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(string_view), typeid(uint64_t)
|
2018-03-04 08:39:24 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
events__room_state__pfx,
|
2018-04-15 08:00:56 +02:00
|
|
|
|
|
|
|
// cache size
|
|
|
|
128_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
32_MiB, //TODO: conf
|
2018-04-18 06:39:40 +02:00
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
16,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-03-04 08:39:24 +01:00
|
|
|
};
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
/// State nodes are pieces of the m::state:: b-tree. The key is the hash
|
|
|
|
/// of the value, which serves as the ID of the node when referenced in
|
|
|
|
/// the tree. see: m/state.h for details.
|
|
|
|
///
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events__state_node
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"_state_node",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### developer note:
|
|
|
|
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
|
|
|
{
|
|
|
|
typeid(ircd::string_view), typeid(ircd::string_view)
|
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
96_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
24_MiB, //TODO: conf
|
2018-04-18 06:39:40 +02:00
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-04-18 04:14:39 +02:00
|
|
|
};
|
|
|
|
|
2018-01-26 21:26:09 +01:00
|
|
|
//
|
2018-02-08 22:23:01 +01:00
|
|
|
// Direct column descriptors
|
2018-01-26 21:26:09 +01:00
|
|
|
//
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_event_id
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"event_id",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.1
|
|
|
|
The id of event.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.4
|
|
|
|
MUST NOT exceed 255 bytes.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_type
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"type",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.1
|
|
|
|
The type of event. This SHOULD be namespaced similar to Java package naming conventions
|
|
|
|
e.g. 'com.example.subdomain.event.type'.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.4
|
|
|
|
MUST NOT exceed 255 bytes.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_content
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"content",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
10.1
|
|
|
|
The fields in this object will vary depending on the type of event. When interacting
|
|
|
|
with the REST API, this is the HTTP body.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-03-02 17:32:42 +01:00
|
|
|
Since events must not exceed 64 KiB the maximum size for the content is the remaining
|
2018-02-08 22:23:01 +01:00
|
|
|
space after all the other fields for the event are rendered.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-15 23:57:56 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_redacts
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"redacts",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-15 23:57:56 +01:00
|
|
|
value is targeted event_id
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-02-15 23:57:56 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_room_id
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"room_id",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.2 (apropos room events)
|
|
|
|
Required. The ID of the room associated with this event.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.4
|
|
|
|
MUST NOT exceed 255 bytes.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_sender
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"sender",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
10.2 (apropos room events)
|
|
|
|
Required. Contains the fully-qualified ID of the user who sent this event.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.4
|
|
|
|
MUST NOT exceed 255 bytes.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_state_key
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"state_key",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.3 (apropos room state events)
|
|
|
|
A unique key which defines the overwriting semantics for this piece of room state.
|
|
|
|
This value is often a zero-length string. The presence of this key makes this event a
|
|
|
|
State Event. The key MUST NOT start with '_'.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
10.4
|
|
|
|
MUST NOT exceed 255 bytes.
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_origin
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"origin",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
FEDERATION 4.1
|
|
|
|
DNS name of homeserver that created this PDU
|
|
|
|
|
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_origin_server_ts
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"origin_server_ts",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
FEDERATION 4.1
|
|
|
|
Timestamp in milliseconds on origin homeserver when this PDU was created.
|
|
|
|
|
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
value is a machine integer (binary)
|
|
|
|
|
|
|
|
TODO: consider unsigned rather than time_t because of millisecond precision
|
|
|
|
|
|
|
|
)",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(time_t)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_signatures
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"signatures",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
|
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_auth_events
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"auth_events",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number..
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-01-26 21:26:09 +01:00
|
|
|
};
|
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_depth
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"depth",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number. value is long integer
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(int64_t)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_hashes
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"hashes",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number..
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_membership
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"membership",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_prev_events
|
|
|
|
{
|
|
|
|
// name
|
|
|
|
"prev_events",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
|
|
|
|
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
|
|
|
|
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
16_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
true,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
const ircd::database::descriptor
|
|
|
|
ircd::m::dbs::desc::events_prev_state
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-02-08 22:23:01 +01:00
|
|
|
// name
|
|
|
|
"prev_state",
|
|
|
|
|
|
|
|
// explanation
|
|
|
|
R"(### protocol note:
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
### developer note:
|
2018-04-18 04:14:39 +02:00
|
|
|
key is event_idx number.
|
2018-02-08 22:23:01 +01:00
|
|
|
)",
|
2018-01-26 21:26:09 +01:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
// typing (key, value)
|
2018-01-26 21:26:09 +01:00
|
|
|
{
|
2018-04-18 04:14:39 +02:00
|
|
|
typeid(uint64_t), typeid(ircd::string_view)
|
2018-04-18 06:39:40 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// options
|
|
|
|
{},
|
|
|
|
|
|
|
|
// comparator
|
|
|
|
{},
|
|
|
|
|
|
|
|
// prefix transform
|
|
|
|
{},
|
|
|
|
|
|
|
|
// cache size
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// cache size for compressed assets
|
|
|
|
8_MiB, //TODO: conf
|
|
|
|
|
|
|
|
// bloom filter bits
|
|
|
|
12,
|
|
|
|
|
|
|
|
// expect queries hit
|
|
|
|
false,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const ircd::database::description
|
|
|
|
ircd::m::dbs::desc::events
|
|
|
|
{
|
|
|
|
// Requirement of RocksDB/LevelDB
|
|
|
|
{ "default" },
|
|
|
|
|
|
|
|
//
|
2018-04-18 04:14:39 +02:00
|
|
|
// These columns directly represent event fields indexed by event_idx
|
|
|
|
// number and the value is the actual event values. Some values may be
|
|
|
|
// JSON, like content.
|
2018-02-08 22:23:01 +01:00
|
|
|
//
|
2018-04-13 04:26:33 +02:00
|
|
|
|
2018-02-08 22:23:01 +01:00
|
|
|
events_auth_events,
|
|
|
|
events_content,
|
|
|
|
events_depth,
|
|
|
|
events_event_id,
|
|
|
|
events_hashes,
|
|
|
|
events_membership,
|
|
|
|
events_origin,
|
|
|
|
events_origin_server_ts,
|
|
|
|
events_prev_events,
|
|
|
|
events_prev_state,
|
2018-02-15 23:57:56 +01:00
|
|
|
events_redacts,
|
2018-02-08 22:23:01 +01:00
|
|
|
events_room_id,
|
|
|
|
events_sender,
|
|
|
|
events_signatures,
|
|
|
|
events_state_key,
|
|
|
|
events_type,
|
|
|
|
|
|
|
|
//
|
2018-04-18 04:14:39 +02:00
|
|
|
// These columns are metadata oriented around the event data.
|
2018-02-08 22:23:01 +01:00
|
|
|
//
|
|
|
|
|
2018-04-18 04:14:39 +02:00
|
|
|
// event_id => uint64_t
|
|
|
|
// Mapping of event_id to index number.
|
|
|
|
events__event_idx,
|
|
|
|
|
|
|
|
// (room_id, (depth, event_idx)) => (state_root)
|
2018-02-08 22:23:01 +01:00
|
|
|
// Sequence of all events for a room, ever.
|
|
|
|
events__room_events,
|
2018-03-03 07:03:06 +01:00
|
|
|
|
2018-04-13 04:26:33 +02:00
|
|
|
// (room_id, (origin, user_id)) => ()
|
2018-04-15 23:40:10 +02:00
|
|
|
// Sequence of all PRESENTLY JOINED joined for a room.
|
|
|
|
events__room_joined,
|
2018-03-04 08:39:24 +01:00
|
|
|
|
2018-04-13 04:26:33 +02:00
|
|
|
// (room_id, (type, state_key)) => (event_id)
|
2018-03-04 08:39:24 +01:00
|
|
|
// Sequence of the PRESENT STATE of the room.
|
|
|
|
events__room_state,
|
2018-04-03 11:11:49 +02:00
|
|
|
|
|
|
|
// (state tree node id) => (state tree node)
|
2018-04-18 04:14:39 +02:00
|
|
|
// Mapping of state tree node id to node data.
|
2018-04-03 11:11:49 +02:00
|
|
|
events__state_node,
|
2018-02-08 22:23:01 +01:00
|
|
|
};
|