2019-02-07 01:27:48 +01: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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_EVENT_REFS_H
|
|
|
|
|
2019-02-14 23:02:34 +01:00
|
|
|
namespace ircd::m::dbs
|
|
|
|
{
|
2019-12-09 22:41:05 +01:00
|
|
|
//NOTE: this is a forward declaration for the reference type enumeration
|
|
|
|
//NOTE: which is defined in the dbs/ system rather than here, for now.
|
|
|
|
|
2019-02-14 23:02:34 +01:00
|
|
|
enum class ref :uint8_t;
|
|
|
|
}
|
|
|
|
|
2019-04-29 19:59:33 +02:00
|
|
|
/// Interface to the forward-references for an event. Forward-references are
|
|
|
|
/// virtually constructed from prev-references made by other events. This
|
|
|
|
/// interface queries the database which has pre-indexed the prev-references
|
|
|
|
/// made by other events at their insertion (it does not conduct any expensive
|
|
|
|
/// scan when using this interface, etc).
|
2019-02-07 01:27:48 +01:00
|
|
|
struct ircd::m::event::refs
|
|
|
|
{
|
|
|
|
event::idx idx;
|
|
|
|
|
|
|
|
public:
|
2020-10-11 19:53:18 +02:00
|
|
|
using closure = std::function<bool (const event::idx &, const dbs::ref &)>;
|
2019-02-09 23:51:19 +01:00
|
|
|
|
2020-10-11 19:53:18 +02:00
|
|
|
bool for_each(const dbs::ref &type, const closure &) const;
|
|
|
|
bool for_each(const closure &) const;
|
2019-02-14 23:02:34 +01:00
|
|
|
|
2019-08-02 22:24:31 +02:00
|
|
|
bool has(const dbs::ref &type, const event::idx &) const;
|
|
|
|
bool has(const dbs::ref &type) const;
|
|
|
|
bool has(const event::idx &) const;
|
2019-02-14 23:02:34 +01:00
|
|
|
|
2019-08-02 22:24:31 +02:00
|
|
|
size_t count(const dbs::ref &type) const;
|
|
|
|
size_t count() const;
|
2019-02-07 01:27:48 +01:00
|
|
|
|
2019-09-18 03:37:52 +02:00
|
|
|
bool prefetch(const dbs::ref &type) const;
|
|
|
|
bool prefetch() const;
|
|
|
|
|
2019-02-07 01:27:48 +01:00
|
|
|
refs(const event::idx &idx) noexcept;
|
2019-02-09 23:51:19 +01:00
|
|
|
|
|
|
|
static void rebuild();
|
2019-02-07 01:27:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
ircd::m::event::refs::refs(const event::idx &idx)
|
|
|
|
noexcept
|
|
|
|
:idx{idx}
|
2019-09-16 05:19:07 +02:00
|
|
|
{}
|