2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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
|
2018-07-03 21:29:04 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/db/binlog/BinlogEvent.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2018-07-03 21:29:04 +02:00
|
|
|
#include "td/utils/logging.h"
|
2018-07-17 15:49:57 +02:00
|
|
|
#include "td/utils/Status.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
namespace detail {
|
2019-10-22 01:12:58 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class BinlogEventsProcessor {
|
|
|
|
public:
|
2018-07-16 12:07:00 +02:00
|
|
|
Status add_event(BinlogEvent &&event) TD_WARN_UNUSED_RESULT {
|
|
|
|
return do_event(std::move(event));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class CallbackT>
|
|
|
|
void for_each(CallbackT &&callback) {
|
|
|
|
for (size_t i = 0; i < ids_.size(); i++) {
|
2019-02-12 17:17:20 +01:00
|
|
|
LOG_CHECK(i == 0 || ids_[i - 1] < ids_[i]) << ids_[i - 1] << " " << events_[i - 1].public_to_string() << " "
|
2019-02-12 22:28:47 +01:00
|
|
|
<< ids_[i] << " " << events_[i].public_to_string();
|
2018-12-31 20:04:05 +01:00
|
|
|
if ((ids_[i] & 1) == 0) {
|
|
|
|
callback(events_[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64 last_id() const {
|
|
|
|
return last_id_;
|
|
|
|
}
|
|
|
|
int64 offset() const {
|
|
|
|
return offset_;
|
|
|
|
}
|
|
|
|
int64 total_raw_events_size() const {
|
|
|
|
return total_raw_events_size_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// holds (id * 2 + was_deleted)
|
|
|
|
std::vector<uint64> ids_;
|
|
|
|
std::vector<BinlogEvent> events_;
|
|
|
|
size_t total_events_{0};
|
|
|
|
size_t empty_events_{0};
|
|
|
|
uint64 last_id_{0};
|
|
|
|
int64 offset_{0};
|
|
|
|
int64 total_raw_events_size_{0};
|
|
|
|
|
2018-07-16 12:07:00 +02:00
|
|
|
Status do_event(BinlogEvent &&event);
|
2018-12-31 20:04:05 +01:00
|
|
|
void compactify();
|
|
|
|
};
|
2019-10-22 01:12:58 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace detail
|
|
|
|
} // namespace td
|