// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019 // // 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/actor/PromiseFuture.h" #include "td/db/binlog/BinlogHelper.h" #include "td/telegram/Global.h" #include "td/telegram/TdDb.h" #include "td/utils/common.h" #include "td/utils/Status.h" namespace td { #define get_erase_logevent_promise(...) get_erase_logevent_promise_impl(__FILE__, __LINE__, __VA_ARGS__) inline Promise get_erase_logevent_promise_impl(const char *file, int32 line, uint64 logevent_id, Promise promise = Promise()) { if (logevent_id == 0) { return promise; } return PromiseCreator::lambda([file, line, logevent_id, promise = std::move(promise)](Result result) mutable { if (!G()->close_flag()) { binlog_erase(G()->get_td_db_impl(file, line)->get_binlog_impl(file, line), logevent_id); } promise.set_result(std::move(result)); }); } } // namespace td