70 lines
2.3 KiB
C++
70 lines
2.3 KiB
C++
//
|
|
// 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)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/telegram/DownloadManager.h"
|
|
#include "td/telegram/files/FileId.h"
|
|
#include "td/telegram/files/FileManager.h"
|
|
#include "td/telegram/files/FileSourceId.h"
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/Promise.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace td {
|
|
|
|
class Td;
|
|
|
|
class DownloadManagerCallback final : public DownloadManager::Callback {
|
|
public:
|
|
DownloadManagerCallback(Td *td, ActorShared<> parent) : td_(td), parent_(std::move(parent)) {
|
|
}
|
|
|
|
void update_counters(DownloadManager::Counters counters) final;
|
|
|
|
void update_file_added(FileId file_id, FileSourceId file_source_id, int32 add_date, int32 complete_date,
|
|
bool is_paused, DownloadManager::FileCounters counters) final;
|
|
|
|
void update_file_changed(FileId file_id, int32 complete_date, bool is_paused,
|
|
DownloadManager::FileCounters counters) final;
|
|
|
|
void update_file_removed(FileId file_id, DownloadManager::FileCounters counters) final;
|
|
|
|
void start_file(FileId file_id, int8 priority, ActorShared<DownloadManager> download_manager) final;
|
|
|
|
void pause_file(FileId file_id) final;
|
|
|
|
void delete_file(FileId file_id) final;
|
|
|
|
FileId dup_file_id(FileId file_id) final;
|
|
|
|
void get_file_search_text(FileId file_id, FileSourceId file_source_id, Promise<string> &&promise) final;
|
|
|
|
FileView get_sync_file_view(FileId file_id) final;
|
|
|
|
td_api::object_ptr<td_api::file> get_file_object(FileId file_id) final;
|
|
|
|
td_api::object_ptr<td_api::fileDownload> get_file_download_object(FileId file_id, FileSourceId file_source_id,
|
|
int32 add_date, int32 complete_date,
|
|
bool is_paused) final;
|
|
|
|
private:
|
|
Td *td_;
|
|
ActorShared<> parent_;
|
|
|
|
FileView get_file_view(FileId file_id);
|
|
|
|
static std::shared_ptr<FileManager::DownloadCallback> make_download_file_callback(
|
|
Td *td, ActorShared<DownloadManager> download_manager);
|
|
};
|
|
|
|
} // namespace td
|