blob: dcd6d7c1b3019da6e0d3185bdf1f859b00b51f50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/db/binlog/BinlogEvent.h"
#include "td/utils/common.h"
namespace td {
namespace detail {
class BinlogEventsBuffer {
public:
void add_event(BinlogEvent &&event);
bool need_flush() const;
template <class CallbackT>
void flush(CallbackT &&callback) {
for (size_t i = 0; i < ids_.size(); i++) {
auto &event = events_[i];
if (i + 1 != ids_.size() && (event.flags_ & BinlogEvent::Flags::Partial) == 0) {
callback(BinlogEvent(BinlogEvent::create_raw(event.id_, event.type_, event.flags_ | BinlogEvent::Flags::Partial,
create_storer(event.data_))));
} else {
callback(std::move(event));
}
}
clear();
}
size_t size() const {
return size_;
}
private:
vector<uint64> ids_;
vector<BinlogEvent> events_;
size_t total_events_{0};
size_t size_{0};
void do_event(BinlogEvent &&event);
void clear();
};
} // namespace detail
} // namespace td
|