2019-09-27 03:36:03 +02: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.
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// event/refs.h
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::m::event::refs::rebuild()
|
|
|
|
{
|
|
|
|
static const size_t pool_size{96};
|
|
|
|
static const size_t log_interval{8192};
|
|
|
|
|
|
|
|
db::txn txn
|
|
|
|
{
|
|
|
|
*m::dbs::events
|
|
|
|
};
|
|
|
|
|
|
|
|
auto &column
|
|
|
|
{
|
|
|
|
dbs::event_json
|
|
|
|
};
|
|
|
|
|
|
|
|
auto it
|
|
|
|
{
|
|
|
|
column.begin()
|
|
|
|
};
|
|
|
|
|
|
|
|
ctx::dock dock;
|
|
|
|
ctx::pool pool;
|
|
|
|
pool.min(pool_size);
|
|
|
|
|
|
|
|
size_t i(0), j(0);
|
|
|
|
const ctx::uninterruptible::nothrow ui;
|
|
|
|
for(; it; ++it)
|
|
|
|
{
|
|
|
|
if(ctx::interruption_requested())
|
|
|
|
break;
|
|
|
|
|
|
|
|
const m::event::idx event_idx
|
|
|
|
{
|
|
|
|
byte_view<m::event::idx>(it->first)
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string event{it->second};
|
|
|
|
pool([&txn, &dock, &i, &j, event(std::move(event)), event_idx]
|
|
|
|
{
|
2023-02-11 04:43:00 +01:00
|
|
|
m::dbs::opts wopts;
|
2019-09-27 03:36:03 +02:00
|
|
|
wopts.event_idx = event_idx;
|
|
|
|
wopts.appendix.reset();
|
|
|
|
wopts.appendix.set(dbs::appendix::EVENT_REFS);
|
|
|
|
m::dbs::write(txn, json::object{event}, wopts);
|
|
|
|
|
|
|
|
if(++j % log_interval == 0) log::info
|
|
|
|
{
|
|
|
|
m::log, "Refs builder @%zu:%zu of %lu (@idx: %lu)",
|
|
|
|
i,
|
|
|
|
j,
|
|
|
|
m::vm::sequence::retired,
|
|
|
|
event_idx
|
|
|
|
};
|
|
|
|
|
|
|
|
if(j >= i)
|
|
|
|
dock.notify_one();
|
|
|
|
});
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2022-07-04 22:15:53 +02:00
|
|
|
dock.wait([&i, &j]() noexcept
|
2019-09-27 03:36:03 +02:00
|
|
|
{
|
|
|
|
return i == j;
|
|
|
|
});
|
|
|
|
|
|
|
|
txn();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::event::refs::prefetch()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return prefetch(dbs::ref(-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::event::refs::prefetch(const dbs::ref &type)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
if(unlikely(!idx))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// 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::NEXT : type
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(uint8_t(dbs::ref::NEXT) == 0);
|
|
|
|
char buf[dbs::EVENT_REFS_KEY_MAX_SIZE];
|
|
|
|
const string_view key
|
|
|
|
{
|
|
|
|
dbs::event_refs_key(buf, idx, _type, 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
return db::prefetch(dbs::event_refs, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::m::event::refs::count()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return count(dbs::ref(-1));
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::m::event::refs::count(const dbs::ref &type)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
size_t ret(0);
|
|
|
|
for_each(type, [&ret]
|
2022-07-04 22:15:53 +02:00
|
|
|
(const event::idx &, const dbs::ref &) noexcept
|
2019-09-27 03:36:03 +02:00
|
|
|
{
|
|
|
|
++ret;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::event::refs::has(const event::idx &idx)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return has(dbs::ref(-1), idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::event::refs::has(const dbs::ref &type)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return !for_each(type, [&type]
|
2022-07-04 22:15:53 +02:00
|
|
|
(const event::idx &, const dbs::ref &ref) noexcept
|
2019-09-27 03:36:03 +02:00
|
|
|
{
|
|
|
|
assert(ref == type);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::m::event::refs::has(const dbs::ref &type,
|
|
|
|
const event::idx &idx)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return !for_each(type, [&idx]
|
2022-07-04 22:15:53 +02:00
|
|
|
(const event::idx &ref, const dbs::ref &) noexcept
|
2019-09-27 03:36:03 +02:00
|
|
|
{
|
|
|
|
return ref != idx; // true to continue, false to break
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2022-08-18 00:54:32 +02:00
|
|
|
ircd::m::event::refs::_for_each(const dbs::ref &type,
|
|
|
|
const closure &closure,
|
|
|
|
const bool ascending)
|
2019-09-27 03:36:03 +02:00
|
|
|
const
|
|
|
|
{
|
2022-08-18 00:54:32 +02:00
|
|
|
assume(idx != 0);
|
2019-09-27 03:36:03 +02:00
|
|
|
|
|
|
|
// 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::NEXT : type
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(uint8_t(dbs::ref::NEXT) == 0);
|
|
|
|
char buf[dbs::EVENT_REFS_KEY_MAX_SIZE];
|
|
|
|
const string_view key
|
|
|
|
{
|
2022-08-18 00:54:32 +02:00
|
|
|
dbs::event_refs_key(buf, idx, _type, 0UL)
|
2019-09-27 03:36:03 +02:00
|
|
|
};
|
|
|
|
|
2022-08-18 00:54:32 +02:00
|
|
|
const auto _each{[this, &all_type, &_type, &type, &closure]
|
|
|
|
(const auto &it) -> int
|
2019-09-27 03:36:03 +02:00
|
|
|
{
|
|
|
|
const auto parts
|
|
|
|
{
|
|
|
|
dbs::event_refs_key(it->first)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &type
|
|
|
|
{
|
|
|
|
std::get<0>(parts)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!all_type && type != _type)
|
2022-08-18 00:54:32 +02:00
|
|
|
return -1;
|
2019-09-27 03:36:03 +02:00
|
|
|
|
|
|
|
const auto &ref
|
|
|
|
{
|
|
|
|
std::get<1>(parts)
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(idx != ref);
|
2022-08-18 00:54:32 +02:00
|
|
|
return closure(ref, type);
|
|
|
|
}};
|
|
|
|
|
|
|
|
int res(true);
|
|
|
|
if(ascending)
|
|
|
|
{
|
|
|
|
for(auto it(dbs::event_refs.begin(key)); it && res > 0; ++it)
|
|
|
|
if(!(res = _each(it)))
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
for(auto it(dbs::event_refs.rbegin(key)); it && res > 0; ++it)
|
|
|
|
if(!(res = _each(it)))
|
|
|
|
return false;
|
2019-09-27 03:36:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|