mirror of
https://github.com/matrix-construct/construct
synced 2025-01-01 02:14:13 +01:00
108 lines
2.2 KiB
C++
108 lines
2.2 KiB
C++
// 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_SYNC_H
|
|
|
|
namespace ircd
|
|
{
|
|
struct client;
|
|
}
|
|
|
|
namespace ircd::m::sync
|
|
{
|
|
struct args;
|
|
struct stats;
|
|
struct data;
|
|
struct item;
|
|
struct response;
|
|
|
|
extern log::log log;
|
|
}
|
|
|
|
struct ircd::m::sync::item
|
|
:instance_multimap<std::string, item, std::less<>>
|
|
{
|
|
using handle = std::function<bool (data &)>;
|
|
|
|
handle _polylog;
|
|
handle _linear;
|
|
|
|
public:
|
|
string_view name() const;
|
|
|
|
bool linear(data &, const m::event &);
|
|
bool polylog(data &);
|
|
|
|
item(std::string name,
|
|
handle polylog = {},
|
|
handle linear = {});
|
|
|
|
item(item &&) = delete;
|
|
item(const item &) = delete;
|
|
~item() noexcept;
|
|
};
|
|
|
|
struct ircd::m::sync::data
|
|
{
|
|
sync::stats &stats;
|
|
ircd::client &client;
|
|
|
|
// Range related
|
|
const uint64_t &since;
|
|
const uint64_t current;
|
|
const uint64_t delta;
|
|
|
|
// User related
|
|
const m::user user;
|
|
const m::user::room user_room;
|
|
const m::user::rooms user_rooms;
|
|
|
|
// Filter to use
|
|
const std::string filter_buf;
|
|
const m::filter filter;
|
|
|
|
// response state
|
|
const std::unique_ptr<response> resp;
|
|
json::stack out;
|
|
bool committed() const;
|
|
bool commit();
|
|
|
|
// apropos contextual
|
|
ctx::mutex write_mutex;
|
|
json::stack::member *member {nullptr};
|
|
json::stack::object *object {nullptr};
|
|
json::stack::array *array {nullptr};
|
|
const m::event *event {nullptr};
|
|
const m::room *room {nullptr};
|
|
string_view membership;
|
|
window_buffer ret;
|
|
std::array<string_view, 16> path;
|
|
|
|
// unsorted / misc
|
|
uint64_t state_at {0};
|
|
|
|
data(sync::stats &stats,
|
|
ircd::client &client,
|
|
const m::user &user,
|
|
const std::pair<event::idx, event::idx> &range,
|
|
const string_view &filter_id);
|
|
|
|
data(data &&) = delete;
|
|
data(const data &) = delete;
|
|
~data() noexcept;
|
|
};
|
|
|
|
struct ircd::m::sync::stats
|
|
{
|
|
ircd::timer timer;
|
|
size_t flush_bytes {0};
|
|
size_t flush_count {0};
|
|
};
|