mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
ircd:Ⓜ️:event::refs: Reorientations for consolidated refs.
This commit is contained in:
parent
17e1bb96bf
commit
194160a735
3 changed files with 114 additions and 56 deletions
|
@ -11,15 +11,25 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#define HAVE_IRCD_M_EVENT_REFS_H
|
#define HAVE_IRCD_M_EVENT_REFS_H
|
||||||
|
|
||||||
|
namespace ircd::m::dbs
|
||||||
|
{
|
||||||
|
enum class ref :uint8_t;
|
||||||
|
}
|
||||||
|
|
||||||
struct ircd::m::event::refs
|
struct ircd::m::event::refs
|
||||||
{
|
{
|
||||||
event::idx idx;
|
event::idx idx;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
using closure_bool = event::closure_idx_bool;
|
using closure_bool = std::function<bool (const event::idx &, const dbs::ref &)>;
|
||||||
|
|
||||||
|
bool for_each(const dbs::ref &type, const closure_bool &) const;
|
||||||
bool for_each(const closure_bool &) const;
|
bool for_each(const closure_bool &) const;
|
||||||
|
|
||||||
|
bool has(const dbs::ref &type, const event::idx &) const noexcept;
|
||||||
bool has(const event::idx &) const noexcept;
|
bool has(const event::idx &) const noexcept;
|
||||||
|
|
||||||
|
size_t count(const dbs::ref &type) const noexcept;
|
||||||
size_t count() const noexcept;
|
size_t count() const noexcept;
|
||||||
|
|
||||||
refs(const event::idx &idx) noexcept;
|
refs(const event::idx &idx) noexcept;
|
||||||
|
|
|
@ -1390,37 +1390,14 @@ ircd::m::event::auth::refs::for_each(const string_view &type,
|
||||||
const
|
const
|
||||||
{
|
{
|
||||||
assert(idx);
|
assert(idx);
|
||||||
thread_local char buf[dbs::EVENT_REFS_KEY_MAX_SIZE];
|
const event::refs erefs
|
||||||
const string_view key
|
|
||||||
{
|
{
|
||||||
dbs::event_refs_key(buf, idx, dbs::ref::AUTH, 0)
|
idx
|
||||||
};
|
};
|
||||||
|
|
||||||
auto it
|
return erefs.for_each(dbs::ref::AUTH, [this, &type, &closure]
|
||||||
|
(const event::idx &ref, const dbs::ref &)
|
||||||
{
|
{
|
||||||
dbs::event_refs.begin(key)
|
|
||||||
};
|
|
||||||
|
|
||||||
for(; it; ++it)
|
|
||||||
{
|
|
||||||
const auto parts
|
|
||||||
{
|
|
||||||
dbs::event_refs_key(it->first)
|
|
||||||
};
|
|
||||||
|
|
||||||
const auto &ref_type
|
|
||||||
{
|
|
||||||
std::get<0>(parts)
|
|
||||||
};
|
|
||||||
|
|
||||||
const auto &ref
|
|
||||||
{
|
|
||||||
std::get<1>(parts)
|
|
||||||
};
|
|
||||||
|
|
||||||
if(ref_type != dbs::ref::AUTH)
|
|
||||||
break;
|
|
||||||
|
|
||||||
bool match;
|
bool match;
|
||||||
const auto matcher
|
const auto matcher
|
||||||
{
|
{
|
||||||
|
@ -1433,18 +1410,18 @@ const
|
||||||
if(type)
|
if(type)
|
||||||
{
|
{
|
||||||
if(!m::get(std::nothrow, ref, "type", matcher))
|
if(!m::get(std::nothrow, ref, "type", matcher))
|
||||||
continue;
|
return true;
|
||||||
|
|
||||||
if(!match)
|
if(!match)
|
||||||
continue;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(idx != ref);
|
assert(idx != ref);
|
||||||
if(!closure(ref))
|
if(!closure(ref))
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -1515,10 +1492,18 @@ ircd::m::event::refs::rebuild()
|
||||||
size_t
|
size_t
|
||||||
ircd::m::event::refs::count()
|
ircd::m::event::refs::count()
|
||||||
const noexcept
|
const noexcept
|
||||||
|
{
|
||||||
|
return count(dbs::ref(-1));
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t
|
||||||
|
ircd::m::event::refs::count(const dbs::ref &type)
|
||||||
|
const noexcept
|
||||||
{
|
{
|
||||||
assert(idx);
|
assert(idx);
|
||||||
size_t ret(0);
|
size_t ret(0);
|
||||||
for_each([&ret](const auto &)
|
for_each(type, [&ret]
|
||||||
|
(const event::idx &ref, const dbs::ref &)
|
||||||
{
|
{
|
||||||
++ret;
|
++ret;
|
||||||
return true;
|
return true;
|
||||||
|
@ -1531,7 +1516,16 @@ bool
|
||||||
ircd::m::event::refs::has(const event::idx &idx)
|
ircd::m::event::refs::has(const event::idx &idx)
|
||||||
const noexcept
|
const noexcept
|
||||||
{
|
{
|
||||||
return !for_each([&idx](const event::idx &ref)
|
return has(dbs::ref(-1), idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
ircd::m::event::refs::has(const dbs::ref &type,
|
||||||
|
const event::idx &idx)
|
||||||
|
const noexcept
|
||||||
|
{
|
||||||
|
return !for_each(type, [&idx]
|
||||||
|
(const event::idx &ref, const dbs::ref &)
|
||||||
{
|
{
|
||||||
return ref != idx; // true to continue, false to break
|
return ref != idx; // true to continue, false to break
|
||||||
});
|
});
|
||||||
|
@ -1540,12 +1534,27 @@ const noexcept
|
||||||
bool
|
bool
|
||||||
ircd::m::event::refs::for_each(const closure_bool &closure)
|
ircd::m::event::refs::for_each(const closure_bool &closure)
|
||||||
const
|
const
|
||||||
|
{
|
||||||
|
return for_each(dbs::ref(-1), closure);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
ircd::m::event::refs::for_each(const dbs::ref &type,
|
||||||
|
const closure_bool &closure)
|
||||||
|
const
|
||||||
{
|
{
|
||||||
assert(idx);
|
assert(idx);
|
||||||
thread_local char buf[dbs::EVENT_REFS_KEY_MAX_SIZE];
|
thread_local char buf[dbs::EVENT_REFS_KEY_MAX_SIZE];
|
||||||
|
|
||||||
|
// Allow -1 to iterate through all types by starting
|
||||||
|
// the iteration at type value 0 and then ignoring the
|
||||||
|
// type as a loop continue condition.
|
||||||
|
const bool all_type(type == dbs::ref(uint8_t(-1)));
|
||||||
|
const auto &_type{all_type? dbs::ref::PREV : type};
|
||||||
|
assert(uint8_t(dbs::ref::PREV) == 0);
|
||||||
const string_view key
|
const string_view key
|
||||||
{
|
{
|
||||||
dbs::event_refs_key(buf, idx, dbs::ref::PREV, 0)
|
dbs::event_refs_key(buf, idx, _type, 0)
|
||||||
};
|
};
|
||||||
|
|
||||||
auto it
|
auto it
|
||||||
|
@ -1565,7 +1574,7 @@ const
|
||||||
std::get<0>(parts)
|
std::get<0>(parts)
|
||||||
};
|
};
|
||||||
|
|
||||||
if(type != dbs::ref::PREV)
|
if(!all_type && type != _type)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
const auto &ref
|
const auto &ref
|
||||||
|
@ -1574,7 +1583,7 @@ const
|
||||||
};
|
};
|
||||||
|
|
||||||
assert(idx != ref);
|
assert(idx != ref);
|
||||||
if(!closure(ref))
|
if(!closure(ref, type))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5625,34 +5625,19 @@ console_cmd__event(opt &out, const string_view &line)
|
||||||
out << "- UNAUTHORIZED: " << failmsg << std::endl;
|
out << "- UNAUTHORIZED: " << failmsg << std::endl;
|
||||||
|
|
||||||
if(m::event::auth::is_power_event(event))
|
if(m::event::auth::is_power_event(event))
|
||||||
{
|
|
||||||
out << "+ POWER EVENT" << std::endl;
|
out << "+ POWER EVENT" << std::endl;
|
||||||
|
|
||||||
const m::event::auth::refs &refs{event_idx};
|
|
||||||
const auto refcnt(refs.count());
|
|
||||||
if(refcnt)
|
|
||||||
{
|
|
||||||
out << std::endl;
|
|
||||||
out << "+ AUTH REFERENCED " << refcnt << std::endl;
|
|
||||||
refs.for_each([&out](const m::event::idx &idx)
|
|
||||||
{
|
|
||||||
const m::event::fetch event{idx};
|
|
||||||
out << " " << idx << " " << pretty_oneline(event) << std::endl;
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const m::event::refs &refs{event_idx};
|
const m::event::refs &refs{event_idx};
|
||||||
const auto refcnt(refs.count());
|
const auto refcnt(refs.count());
|
||||||
if(refcnt)
|
if(refcnt)
|
||||||
{
|
{
|
||||||
out << std::endl;
|
out << std::endl;
|
||||||
out << "+ REFERENCED " << refs.count() << std::endl;
|
out << "+ REFERENCED " << refs.count() << std::endl;
|
||||||
refs.for_each([&out](const m::event::idx &idx)
|
refs.for_each([&out]
|
||||||
|
(const m::event::idx &idx, const auto &type)
|
||||||
{
|
{
|
||||||
const m::event::fetch event{idx};
|
const m::event::fetch event{idx};
|
||||||
out << " " << idx << " " << pretty_oneline(event) << std::endl;
|
out << " " << reflect(type) << " " << idx << " " << pretty_oneline(event) << std::endl;
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -5947,6 +5932,58 @@ console_cmd__event__refs__rebuild(opt &out, const string_view &line)
|
||||||
bool
|
bool
|
||||||
console_cmd__event__refs(opt &out, const string_view &line)
|
console_cmd__event__refs(opt &out, const string_view &line)
|
||||||
{
|
{
|
||||||
|
const params param{line, " ",
|
||||||
|
{
|
||||||
|
"event_id", "type"
|
||||||
|
}};
|
||||||
|
|
||||||
|
const m::event::id &event_id
|
||||||
|
{
|
||||||
|
param.at("event_id")
|
||||||
|
};
|
||||||
|
|
||||||
|
const m::event::refs refs
|
||||||
|
{
|
||||||
|
index(event_id)
|
||||||
|
};
|
||||||
|
|
||||||
|
const string_view &typestr
|
||||||
|
{
|
||||||
|
param.at("type")
|
||||||
|
};
|
||||||
|
|
||||||
|
m::dbs::ref type
|
||||||
|
{
|
||||||
|
empty(typestr)?
|
||||||
|
m::dbs::ref(-1):
|
||||||
|
m::dbs::ref(0)
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!empty(typestr))
|
||||||
|
for(; uint8_t(type) < sizeof(m::dbs::ref) * 8; type = m::dbs::ref(uint8_t(type) + 1))
|
||||||
|
if(reflect(type) == typestr)
|
||||||
|
break;
|
||||||
|
|
||||||
|
refs.for_each(type, [&out]
|
||||||
|
(const auto &idx, const auto &type)
|
||||||
|
{
|
||||||
|
const m::event::fetch event
|
||||||
|
{
|
||||||
|
idx, std::nothrow
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!event.valid)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
out << idx
|
||||||
|
<< " " << m::event_id(idx)
|
||||||
|
<< " " << reflect(type)
|
||||||
|
<< std::endl;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5968,7 +6005,8 @@ console_cmd__event__refs__prev(opt &out, const string_view &line)
|
||||||
index(event_id)
|
index(event_id)
|
||||||
};
|
};
|
||||||
|
|
||||||
refs.for_each([&out](const m::event::idx &idx)
|
refs.for_each(m::dbs::ref::PREV, [&out]
|
||||||
|
(const auto &idx, const auto &type)
|
||||||
{
|
{
|
||||||
const m::event::fetch event
|
const m::event::fetch event
|
||||||
{
|
{
|
||||||
|
@ -5980,6 +6018,7 @@ console_cmd__event__refs__prev(opt &out, const string_view &line)
|
||||||
|
|
||||||
out << idx
|
out << idx
|
||||||
<< " " << m::event_id(idx)
|
<< " " << m::event_id(idx)
|
||||||
|
<< " " << reflect(type)
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue