mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
ircd:Ⓜ️:dbs: Add a previous state reference to refs meta index.
This commit is contained in:
parent
5b3191345f
commit
06c548699a
2 changed files with 55 additions and 0 deletions
|
@ -147,6 +147,7 @@ enum class ircd::m::dbs::ref
|
||||||
// DAG
|
// DAG
|
||||||
PREV = 0x00,
|
PREV = 0x00,
|
||||||
AUTH = 0x01,
|
AUTH = 0x01,
|
||||||
|
STATE = 0x02,
|
||||||
|
|
||||||
// m.receipt
|
// m.receipt
|
||||||
M_RECEIPT__M_READ = 0x10,
|
M_RECEIPT__M_READ = 0x10,
|
||||||
|
@ -305,6 +306,7 @@ namespace ircd::m::dbs
|
||||||
void _index_event_refs_m_room_redaction(db::txn &, const event &, const write_opts &);
|
void _index_event_refs_m_room_redaction(db::txn &, const event &, const write_opts &);
|
||||||
void _index_event_refs_m_receipt_m_read(db::txn &, const event &, const write_opts &);
|
void _index_event_refs_m_receipt_m_read(db::txn &, const event &, const write_opts &);
|
||||||
void _index_event_refs_m_relates_m_reply(db::txn &, const event &, const write_opts &);
|
void _index_event_refs_m_relates_m_reply(db::txn &, const event &, const write_opts &);
|
||||||
|
void _index_event_refs_state(db::txn &, const event &, const write_opts &);
|
||||||
void _index_event_refs_auth(db::txn &, const event &, const write_opts &);
|
void _index_event_refs_auth(db::txn &, const event &, const write_opts &);
|
||||||
void _index_event_refs_prev(db::txn &, const event &, const write_opts &);
|
void _index_event_refs_prev(db::txn &, const event &, const write_opts &);
|
||||||
void _index_event_refs(db::txn &, const event &, const write_opts &);
|
void _index_event_refs(db::txn &, const event &, const write_opts &);
|
||||||
|
|
|
@ -355,6 +355,9 @@ ircd::m::dbs::_index_event_refs(db::txn &txn,
|
||||||
if(opts.event_refs.test(uint(ref::AUTH)))
|
if(opts.event_refs.test(uint(ref::AUTH)))
|
||||||
_index_event_refs_auth(txn, event, opts);
|
_index_event_refs_auth(txn, event, opts);
|
||||||
|
|
||||||
|
if(opts.event_refs.test(uint(ref::STATE)))
|
||||||
|
_index_event_refs_state(txn, event, opts);
|
||||||
|
|
||||||
if(opts.event_refs.test(uint(ref::M_RECEIPT__M_READ)))
|
if(opts.event_refs.test(uint(ref::M_RECEIPT__M_READ)))
|
||||||
_index_event_refs_m_receipt_m_read(txn, event, opts);
|
_index_event_refs_m_receipt_m_read(txn, event, opts);
|
||||||
|
|
||||||
|
@ -447,6 +450,53 @@ ircd::m::dbs::_index_event_refs_auth(db::txn &txn,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
ircd::m::dbs::_index_event_refs_state(db::txn &txn,
|
||||||
|
const event &event,
|
||||||
|
const write_opts &opts)
|
||||||
|
{
|
||||||
|
assert(opts.event_refs.test(uint(ref::STATE)));
|
||||||
|
|
||||||
|
if(!json::get<"room_id"_>(event))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if(!json::get<"state_key"_>(event))
|
||||||
|
return;
|
||||||
|
|
||||||
|
const m::room room
|
||||||
|
{
|
||||||
|
at<"room_id"_>(event) //TODO: ABA ABA ABA ABA
|
||||||
|
};
|
||||||
|
|
||||||
|
const m::room::state state
|
||||||
|
{
|
||||||
|
room
|
||||||
|
};
|
||||||
|
|
||||||
|
const event::idx &prev_state_idx
|
||||||
|
{
|
||||||
|
state.get(std::nothrow, at<"type"_>(event), at<"state_key"_>(event)) // query
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!prev_state_idx)
|
||||||
|
return;
|
||||||
|
|
||||||
|
thread_local char buf[EVENT_REFS_KEY_MAX_SIZE];
|
||||||
|
assert(opts.event_idx != 0 && prev_state_idx != 0);
|
||||||
|
const string_view &key
|
||||||
|
{
|
||||||
|
event_refs_key(buf, prev_state_idx, ref::STATE, opts.event_idx)
|
||||||
|
};
|
||||||
|
|
||||||
|
db::txn::append
|
||||||
|
{
|
||||||
|
txn, dbs::event_refs,
|
||||||
|
{
|
||||||
|
opts.op, key, string_view{}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
ircd::m::dbs::_index_event_refs_m_receipt_m_read(db::txn &txn,
|
ircd::m::dbs::_index_event_refs_m_receipt_m_read(db::txn &txn,
|
||||||
const event &event,
|
const event &event,
|
||||||
|
@ -1261,6 +1311,9 @@ ircd::m::dbs::reflect(const ref &type)
|
||||||
case ref::AUTH:
|
case ref::AUTH:
|
||||||
return "AUTH";
|
return "AUTH";
|
||||||
|
|
||||||
|
case ref::STATE:
|
||||||
|
return "STATE";
|
||||||
|
|
||||||
case ref::M_RECEIPT__M_READ:
|
case ref::M_RECEIPT__M_READ:
|
||||||
return "M_RECEIPT__M_READ";
|
return "M_RECEIPT__M_READ";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue