2020-10-27 08:10:48 +01:00
|
|
|
// The Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) The Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2020 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
|
|
|
|
#define HAVE_IRCD_M_ROOM_CONTENT_H
|
|
|
|
|
|
|
|
/// Interfaced optimized for iterating the `content` of room events.
|
|
|
|
///
|
|
|
|
struct ircd::m::room::content
|
|
|
|
{
|
2022-08-06 03:38:32 +02:00
|
|
|
using entry = pair<uint64_t, m::event::idx>;
|
2023-02-17 05:53:30 +01:00
|
|
|
using closure = util::function_bool
|
2020-10-27 08:10:48 +01:00
|
|
|
<
|
2023-02-17 05:53:30 +01:00
|
|
|
const json::object &, const uint64_t &, const event::idx &
|
2020-10-27 08:10:48 +01:00
|
|
|
>;
|
|
|
|
|
|
|
|
static const size_t prefetch_max;
|
|
|
|
static conf::item<size_t> prefetch;
|
|
|
|
|
|
|
|
m::room room;
|
|
|
|
std::pair<uint64_t, int64_t> range; // highest (inclusive) to lowest (exclusive)
|
2022-08-06 03:38:32 +02:00
|
|
|
size_t queue_max;
|
|
|
|
std::unique_ptr<entry[]> buf;
|
2020-10-27 08:10:48 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
bool for_each(const closure &) const;
|
|
|
|
|
|
|
|
content(const m::room &,
|
|
|
|
const decltype(range) & = { -1UL, -1L });
|
2022-08-06 03:38:32 +02:00
|
|
|
|
|
|
|
content(const content &) = delete;
|
|
|
|
content(content &&) = delete;
|
2020-10-27 08:10:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
ircd::m::room::content::content(const m::room &room,
|
|
|
|
const decltype(range) &range)
|
|
|
|
:room{room}
|
|
|
|
,range{range}
|
2022-08-06 03:38:32 +02:00
|
|
|
,queue_max{prefetch}
|
|
|
|
,buf
|
|
|
|
{
|
|
|
|
new entry[queue_max]
|
|
|
|
{
|
|
|
|
{ 0UL, 0UL }
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 08:10:48 +01:00
|
|
|
{}
|