0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-24 17:38:54 +02:00
construct/include/ircd/m/room/content.h

55 lines
1.4 KiB
C++

// 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
{
using entry = pair<uint64_t, m::event::idx>;
using closure = util::closure_bool
<
std::function, const json::object &, const uint64_t &, const event::idx &
>;
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)
size_t queue_max;
std::unique_ptr<entry[]> buf;
public:
bool for_each(const closure &) const;
content(const m::room &,
const decltype(range) & = { -1UL, -1L });
content(const content &) = delete;
content(content &&) = delete;
};
inline
ircd::m::room::content::content(const m::room &room,
const decltype(range) &range)
:room{room}
,range{range}
,queue_max{prefetch}
,buf
{
new entry[queue_max]
{
{ 0UL, 0UL }
}
}
{}