tdlight/td/telegram/DownloadManager.cpp

490 lines
16 KiB
C++
Raw Normal View History

2022-02-23 19:34:09 +01:00
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// 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)
//
2022-02-25 14:18:23 +01:00
#include "td/telegram/DownloadManager.h"
2022-02-26 21:54:01 +01:00
#include "td/telegram/FileReferenceManager.h"
2022-02-26 19:55:12 +01:00
#include "td/telegram/files/FileSourceId.hpp"
2022-02-25 23:18:07 +01:00
#include "td/telegram/Global.h"
2022-02-26 19:55:12 +01:00
#include "td/telegram/logevent/LogEvent.h"
2022-02-25 23:18:07 +01:00
#include "td/telegram/TdDb.h"
#include "td/actor/MultiPromise.h"
2022-02-26 19:55:12 +01:00
#include "td/utils/algorithm.h"
#include "td/utils/FlatHashMap.h"
#include "td/utils/Hints.h"
#include "td/utils/tl_helpers.h"
2022-02-25 23:18:07 +01:00
2022-02-23 19:34:09 +01:00
namespace td {
2022-02-25 14:18:23 +01:00
2022-02-26 19:55:12 +01:00
struct FileDownloadInDb {
int64 download_id{};
string unique_file_id;
FileSourceId file_source_id;
string search_text;
int priority{};
2022-02-26 21:54:01 +01:00
int created_at{};
int completed_at{};
bool is_paused{};
2022-02-26 19:55:12 +01:00
template <class StorerT>
void store(StorerT &storer) const {
BEGIN_STORE_FLAGS();
STORE_FLAG(is_paused);
END_STORE_FLAGS();
td::store(download_id, storer);
td::store(unique_file_id, storer);
td::store(file_source_id, storer);
td::store(priority, storer);
2022-02-26 21:54:01 +01:00
td::store(created_at, storer);
td::store(completed_at, storer);
2022-02-26 19:55:12 +01:00
}
template <class ParserT>
void parse(ParserT &parser) {
BEGIN_PARSE_FLAGS();
PARSE_FLAG(is_paused);
END_PARSE_FLAGS();
td::parse(download_id, parser);
td::parse(unique_file_id, parser);
td::parse(file_source_id, parser);
td::parse(priority, parser);
2022-02-26 21:54:01 +01:00
td::parse(created_at, parser);
td::parse(completed_at, parser);
2022-02-26 19:55:12 +01:00
}
};
2022-02-23 19:34:09 +01:00
class DownloadManagerImpl final : public DownloadManager {
public:
void set_callback(unique_ptr<Callback> callback) final {
callback_ = std::move(callback);
loop();
}
Status toggle_is_paused(FileId file_id, bool is_paused) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS(check_is_active());
2022-02-23 19:34:09 +01:00
2022-02-26 21:54:01 +01:00
TRY_RESULT(file_info_ptr, get_file_info(file_id));
auto &file_info = *file_info_ptr;
2022-02-26 19:55:12 +01:00
if (!is_active(file_info)) {
return Status::Error(400, "File is already downloaded");
}
2022-02-23 19:34:09 +01:00
if (is_paused != file_info.is_paused) {
2022-02-26 21:54:01 +01:00
with_file_info(file_info, [&](auto &file_info) {
file_info.is_paused = is_paused;
file_info.need_save_to_db = true;
});
2022-02-23 19:34:09 +01:00
if (is_paused) {
callback_->pause_file(file_info.internal_file_id);
} else {
callback_->start_file(file_info.internal_file_id, file_info.priority);
}
}
return Status::OK();
}
2022-02-25 13:11:10 +01:00
Status toggle_all_is_paused(bool is_paused) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS(check_is_active());
2022-02-26 19:55:12 +01:00
for (auto &it : files_) {
toggle_is_paused(it.second.file_id, is_paused);
2022-02-23 19:34:09 +01:00
}
2022-02-25 13:11:10 +01:00
return Status::OK();
2022-02-23 19:34:09 +01:00
}
2022-02-25 13:11:10 +01:00
Status remove_file(FileId file_id, FileSourceId file_source_id, bool delete_from_cache) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS(check_is_active());
TRY_RESULT(file_info_ptr, get_file_info(file_id, file_source_id));
auto &file_info = *file_info_ptr;
if (!file_info.is_paused) {
callback_->pause_file(file_info.internal_file_id);
2022-02-23 19:34:09 +01:00
}
2022-02-26 21:54:01 +01:00
if (delete_from_cache) {
callback_->delete_file(file_info.internal_file_id);
2022-02-23 19:34:09 +01:00
}
2022-02-26 21:54:01 +01:00
by_internal_file_id_.erase(file_info.internal_file_id);
by_file_id_.erase(file_info.file_id);
hints_.remove(file_info.download_id);
unregister_file_info(file_info);
2022-02-26 19:55:12 +01:00
2022-02-26 21:54:01 +01:00
remove_from_db(file_info);
files_.erase(file_info.download_id);
return Status::OK();
}
2022-02-26 21:54:01 +01:00
Status change_search_text(FileId file_id, FileSourceId file_source_id, string search_by) final {
TRY_STATUS(check_is_active());
TRY_RESULT(file_info_ptr, get_file_info(file_id, file_source_id));
auto &file_info = *file_info_ptr;
hints_.add(file_info.download_id, search_by);
2022-02-25 13:11:10 +01:00
return Status::OK();
2022-02-23 19:34:09 +01:00
}
2022-02-25 13:11:10 +01:00
Status remove_all_files(bool only_active, bool only_completed, bool delete_from_cache) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS(check_is_active());
2022-02-26 19:55:12 +01:00
std::vector<FileId> to_remove;
for (auto &it : files_) {
FileInfo &file_info = it.second;
if (only_active && !is_active(file_info)) {
continue;
}
if (only_completed && is_active(file_info)) {
continue;
2022-02-25 13:11:10 +01:00
}
2022-02-26 19:55:12 +01:00
to_remove.push_back(file_info.file_id);
}
for (auto file_id : to_remove) {
remove_file(file_id, {}, delete_from_cache);
2022-02-23 19:34:09 +01:00
}
2022-02-25 13:11:10 +01:00
return Status::OK();
2022-02-23 19:34:09 +01:00
}
2022-02-25 14:18:23 +01:00
Status add_file(FileId file_id, FileSourceId file_source_id, string search_by, int8 priority) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS(check_is_active());
2022-02-26 19:55:12 +01:00
// TODO: maybe we should ignore this query in some cases
remove_file(file_id, {}, false);
2022-02-23 19:34:09 +01:00
FileInfo file_info;
2022-02-26 19:55:12 +01:00
file_info.download_id = next_download_id();
file_info.file_id = file_id;
2022-02-23 19:34:09 +01:00
file_info.internal_file_id = callback_->dup_file_id(file_id);
file_info.file_source_id = file_source_id;
file_info.is_paused = false;
file_info.priority = priority;
2022-02-26 21:54:01 +01:00
file_info.created_at = static_cast<int32>(G()->server_time());
2022-02-26 19:55:12 +01:00
by_internal_file_id_[file_info.internal_file_id] = file_info.download_id;
by_file_id_[file_info.file_id] = file_info.download_id;
hints_.add(file_info.download_id, search_by);
2022-02-23 19:34:09 +01:00
2022-02-26 19:55:12 +01:00
auto download_id = file_info.download_id;
file_info.need_save_to_db = true;
auto it = files_.emplace(download_id, file_info).first;
2022-02-26 21:54:01 +01:00
register_file_info(it->second);
2022-02-26 19:55:12 +01:00
callback_->start_file(it->second.internal_file_id, it->second.priority);
return Status::OK();
2022-02-23 19:34:09 +01:00
}
2022-02-25 14:18:23 +01:00
void search(string query, bool only_active, bool only_completed, string offset, int32 limit,
Promise<td_api::object_ptr<td_api::foundFileDownloads>> promise) final {
2022-02-26 21:54:01 +01:00
TRY_STATUS_PROMISE(promise, check_is_active());
int64 offset_int64 = std::numeric_limits<int64>::max();
if (!offset.empty()) {
auto r_offset = to_integer_safe<int64>(offset);
if (r_offset.is_error()) {
return promise.set_error(Status::Error(400, "Invalid offset"));
}
offset_int64 = r_offset.move_as_ok();
2022-02-23 19:34:09 +01:00
}
2022-02-26 21:54:01 +01:00
auto ids = query.empty() ? transform(files_, [](auto &it) { return it.first; }) : hints_.search(query, 200).second;
2022-02-26 19:55:12 +01:00
remove_if(ids, [&](auto download_id) {
2022-02-26 21:54:01 +01:00
auto r = get_file_info(download_id);
if (r.is_error()) {
2022-02-26 19:55:12 +01:00
return true;
}
2022-02-26 21:54:01 +01:00
auto &file_info = *r.ok();
2022-02-26 19:55:12 +01:00
if (only_active && !is_active(file_info)) {
return true;
}
if (only_completed && is_active(file_info)) {
return true;
}
return false;
});
std::sort(ids.begin(), ids.end(), std::greater<>());
int32 total_count = narrow_cast<int32>(ids.size());
2022-02-26 19:55:12 +01:00
remove_if(ids, [offset_int64](auto id) { return id < offset_int64; });
if (static_cast<int32>(ids.size()) > limit) {
ids.resize(max(0, limit));
}
int64 last_id = 0;
auto file_downloads = transform(ids, [&](auto id) {
last_id = id;
FileInfo &file_info = files_[id];
return callback_->get_file_download_object(file_info.file_id, file_info.file_source_id, file_info.created_at,
file_info.completed_at, file_info.is_paused);
2022-02-26 19:55:12 +01:00
});
td::remove_if(file_downloads, [](const auto &file_download) { return file_download->message_ == nullptr; });
string next_offset;
2022-02-26 19:55:12 +01:00
if (last_id != 0) {
next_offset = to_string(last_id);
2022-02-26 19:55:12 +01:00
}
return promise.set_value(td_api::make_object<td_api::foundFileDownloads>(total_count, Auto(), next_offset));
2022-02-23 19:34:09 +01:00
}
void update_file_download_state(FileId internal_file_id, int64 download_size, int64 size, bool is_paused) final {
if (!callback_) {
return;
}
2022-02-26 21:54:01 +01:00
auto r_file_info_ptr = get_file_info_by_internal(internal_file_id);
if (r_file_info_ptr.is_error()) {
2022-02-23 19:34:09 +01:00
return;
}
2022-02-26 21:54:01 +01:00
auto &file_info = *r_file_info_ptr.ok();
with_file_info(file_info, [&](FileInfo &file_info) {
file_info.size = size;
file_info.downloaded_size = download_size;
if (file_info.is_paused != is_paused) {
file_info.is_paused = is_paused;
file_info.need_save_to_db = true;
}
});
2022-02-23 19:34:09 +01:00
}
void update_file_deleted(FileId internal_file_id) final {
if (!callback_) {
return;
}
2022-02-26 21:54:01 +01:00
auto r_file_info_ptr = get_file_info_by_internal(internal_file_id);
if (r_file_info_ptr.is_error()) {
2022-02-23 19:34:09 +01:00
return;
}
2022-02-26 21:54:01 +01:00
auto &file_info = *r_file_info_ptr.ok();
remove_file(file_info.file_id, {}, false);
2022-02-23 19:34:09 +01:00
}
private:
unique_ptr<Callback> callback_;
struct FileInfo {
2022-02-26 19:55:12 +01:00
int64 download_id{};
2022-02-23 19:34:09 +01:00
int8 priority;
bool is_paused{};
2022-02-26 19:55:12 +01:00
FileId file_id{};
2022-02-23 19:34:09 +01:00
FileId internal_file_id{};
FileSourceId file_source_id{};
int64 size{};
int64 downloaded_size{};
2022-02-26 21:54:01 +01:00
int32 created_at{};
int32 completed_at{};
2022-02-26 19:55:12 +01:00
2022-02-26 21:54:01 +01:00
mutable bool need_save_to_db{false};
2022-02-23 19:34:09 +01:00
};
2022-02-26 19:55:12 +01:00
FlatHashMap<FileId, int64, FileIdHash> by_file_id_;
FlatHashMap<FileId, int64, FileIdHash> by_internal_file_id_;
FlatHashMap<int64, FileInfo> files_;
size_t active_files_count_{0};
Hints hints_;
2022-02-23 19:34:09 +01:00
Counters counters_;
2022-02-26 19:55:12 +01:00
Counters sent_counters_;
bool is_synchonized_{false};
bool is_started_{false};
int64 max_download_id_{0};
int64 next_download_id() {
auto res = ++max_download_id_;
G()->td_db()->get_binlog_pmc()->set("dlds_max_id", to_string(res));
return res;
}
bool is_active(const FileInfo &file_info) const {
return file_info.size == 0 || file_info.downloaded_size != file_info.size;
}
static std::string pmc_key(const FileInfo &file_info) {
return PSTRING() << "dlds" << file_info.download_id;
}
2022-02-26 21:54:01 +01:00
void sync_with_db(const FileInfo &file_info) {
2022-02-26 19:55:12 +01:00
if (!file_info.need_save_to_db) {
return;
}
file_info.need_save_to_db = false;
FileDownloadInDb to_save;
to_save.download_id = file_info.download_id;
to_save.file_source_id = file_info.file_source_id;
to_save.is_paused = file_info.is_paused;
to_save.priority = file_info.priority;
to_save.unique_file_id = callback_->get_unique_file_id(file_info.file_id);
G()->td_db()->get_binlog_pmc()->set(pmc_key(file_info), log_event_store(to_save).as_slice().str());
}
void remove_from_db(const FileInfo &file_info) {
G()->td_db()->get_binlog_pmc()->erase(pmc_key(file_info));
}
void on_synchronized(Result<Unit>) {
LOG(ERROR) << "DownloadManager: synchornized";
is_synchonized_ = true;
update_counters();
}
void try_start() {
if (is_started_) {
return;
}
is_started_ = true;
auto serialized_counter = G()->td_db()->get_binlog_pmc()->get("dlds_counter");
Counters counters_from_db;
if (!serialized_counter.empty()) {
log_event_parse(counters_from_db, serialized_counter).ensure();
}
callback_->update_counters(counters_from_db);
max_download_id_ = to_integer<int64>(G()->td_db()->get_binlog_pmc()->get("dlds_max_id"));
auto downloads_in_kv = G()->td_db()->get_binlog_pmc()->prefix_get("dlds#");
MultiPromiseActorSafe mtps("DownloadManager: initialization");
mtps.add_promise(promise_send_closure(actor_id(this), &DownloadManagerImpl::on_synchronized));
for (auto &it : downloads_in_kv) {
Slice key = it.first;
Slice value = it.second;
FileDownloadInDb in_db;
log_event_parse(in_db, value).ensure();
in_db.download_id = to_integer_safe<int64>(key.substr(4)).move_as_ok();
auto promise = mtps.get_promise();
auto unique_file_id = std::move(in_db.unique_file_id);
auto file_source_id = in_db.file_source_id;
auto new_promise = [self = actor_id(this), in_db = std::move(in_db),
2022-02-26 21:54:01 +01:00
promise = std::move(promise)](Result<FileSearchInfo> res) mutable {
2022-02-26 19:55:12 +01:00
if (res.is_error()) {
promise.set_value({});
return;
}
send_closure(self, &DownloadManagerImpl::add_file_from_db, res.move_as_ok(), std::move(in_db));
promise.set_value({});
};
send_closure(G()->file_reference_manager(), &FileReferenceManager::get_file_search_info, file_source_id,
2022-02-26 21:54:01 +01:00
std::move(unique_file_id), std::move(new_promise));
2022-02-26 19:55:12 +01:00
}
}
2022-02-26 21:54:01 +01:00
void add_file_from_db(FileSearchInfo file_search_info, FileDownloadInDb in_db) {
2022-02-26 19:55:12 +01:00
FileInfo file_info;
file_info.download_id = in_db.download_id;
2022-02-26 21:54:01 +01:00
file_info.file_id = file_search_info.file_id;
file_info.internal_file_id = callback_->dup_file_id(file_info.file_id);
2022-02-26 19:55:12 +01:00
file_info.file_source_id = in_db.file_source_id;
file_info.is_paused = false;
file_info.priority = narrow_cast<int8>(in_db.priority);
2022-02-26 21:54:01 +01:00
file_info.completed_at = in_db.completed_at;
file_info.created_at = in_db.created_at;
2022-02-26 19:55:12 +01:00
by_internal_file_id_[file_info.internal_file_id] = file_info.download_id;
by_file_id_[file_info.file_id] = file_info.download_id;
2022-02-26 21:54:01 +01:00
hints_.add(file_info.download_id, file_search_info.search_text);
2022-02-26 19:55:12 +01:00
auto download_id = file_info.download_id;
auto it = files_.emplace(download_id, file_info).first;
2022-02-26 21:54:01 +01:00
register_file_info(it->second);
2022-02-26 19:55:12 +01:00
callback_->start_file(it->second.internal_file_id, it->second.priority);
}
2022-02-23 19:34:09 +01:00
2022-02-25 14:18:23 +01:00
void loop() final {
2022-02-23 19:34:09 +01:00
if (!callback_) {
return;
}
2022-02-26 19:55:12 +01:00
try_start();
2022-02-23 19:34:09 +01:00
}
2022-02-26 19:55:12 +01:00
2022-02-25 14:18:23 +01:00
void tear_down() final {
2022-02-23 19:34:09 +01:00
callback_.reset();
}
2022-02-26 19:55:12 +01:00
void update_counters() {
if (!is_synchonized_) {
return;
}
if (counters_ == sent_counters_) {
return;
}
sent_counters_ = counters_;
callback_->update_counters(counters_);
}
2022-02-26 21:54:01 +01:00
Result<const FileInfo *> get_file_info(FileId file_id, FileSourceId file_source_id = {}) {
2022-02-26 21:54:01 +01:00
auto it = by_file_id_.find(file_id);
if (it == by_file_id_.end()) {
return Status::Error(400, "Can't find file");
}
return get_file_info(it->second, file_source_id);
}
Result<const FileInfo *> get_file_info_by_internal(FileId file_id) {
2022-02-26 21:54:01 +01:00
auto it = by_internal_file_id_.find(file_id);
if (it == by_internal_file_id_.end()) {
return Status::Error(400, "Can't find file");
}
return get_file_info(it->second);
}
Result<const FileInfo *> get_file_info(int64 download_id, FileSourceId file_source_id = {}) {
2022-02-26 21:54:01 +01:00
auto it = files_.find(download_id);
if (it == files_.end()) {
return Status::Error(400, "Can't find file");
}
if (file_source_id.is_valid() && file_source_id != it->second.file_source_id) {
return Status::Error(400, "Can't find file with such source");
}
return &it->second;
}
void unregister_file_info(const FileInfo &file_info) {
active_files_count_ -= is_active(file_info);
counters_.downloaded_size -= file_info.downloaded_size;
counters_.total_size -= file_info.size;
}
2022-02-26 21:54:01 +01:00
void register_file_info(FileInfo &file_info) {
active_files_count_ += is_active(file_info);
counters_.downloaded_size += file_info.downloaded_size;
counters_.total_size += file_info.size;
if (!is_active(file_info) && file_info.completed_at == 0) {
file_info.completed_at = static_cast<int32>(G()->server_time());
file_info.need_save_to_db = true;
}
sync_with_db(file_info);
update_counters();
}
2022-02-26 21:54:01 +01:00
template <class F>
void with_file_info(const FileInfo &const_file_info, F &&f) {
unregister_file_info(const_file_info);
auto &file_info = const_cast<FileInfo &>(const_file_info);
f(file_info);
register_file_info(file_info);
}
2022-02-26 21:54:01 +01:00
Status check_is_active() {
if (!callback_) {
return Status::Error("TODO: code and message`");
}
return Status::OK();
}
2022-02-23 19:34:09 +01:00
};
unique_ptr<DownloadManager> DownloadManager::create() {
return make_unique<DownloadManagerImpl>();
}
2022-02-25 14:18:23 +01:00
td_api::object_ptr<td_api::updateFileDownloads> DownloadManager::Counters::get_update_file_downloads_object() const {
return td_api::make_object<td_api::updateFileDownloads>(total_size, total_count, downloaded_size);
2022-02-25 15:57:08 +01:00
}
2022-02-26 21:54:01 +01:00
2022-02-26 19:55:12 +01:00
template <class StorerT>
void DownloadManager::Counters::store(StorerT &storer) const {
BEGIN_STORE_FLAGS();
END_STORE_FLAGS();
td::store(total_size, storer);
td::store(total_count, storer);
td::store(downloaded_size, storer);
}
2022-02-26 21:54:01 +01:00
2022-02-26 19:55:12 +01:00
template <class ParserT>
void DownloadManager::Counters::parse(ParserT &parser) {
BEGIN_PARSE_FLAGS();
END_PARSE_FLAGS();
2022-02-26 21:54:01 +01:00
td::parse(total_size, parser);
2022-02-26 19:55:12 +01:00
td::parse(total_count, parser);
td::parse(downloaded_size, parser);
}
2022-02-23 19:34:09 +01:00
} // namespace td