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/messages.h

51 lines
1.2 KiB
C
Raw Normal View History

// The Construct
//
// Copyright (C) The Construct Developers, Authors & Contributors
// Copyright (C) 2016-2022 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_MESSAGES_H
/// Rendering
///
struct ircd::m::room::messages
{
using closure = util::closure_bool
<
std::function, const message &, const uint64_t &, const event::idx &
>;
static const event::fetch::opts fopts;
room::type events;
private:
bool m_replace(event &, const event::idx &) const;
public:
bool for_each(const closure &) const;
messages(const m::room &,
const decltype(room::type::range) & = { -1UL, -1L });
messages(messages &&) = delete;
messages(const messages &) = delete;
};
inline
ircd::m::room::messages::messages(const m::room &room,
const decltype(room::type::range) &range)
:events
{
room.room_id,
"m.room.message",
range,
false,
}
{}