2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
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
|
|
|
|
|
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
|
|
|
|
#include "td/telegram/files/FileLocation.h"
|
|
|
|
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace td {
|
2019-01-19 20:35:28 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class FileGenerateActor;
|
|
|
|
|
|
|
|
class FileGenerateCallback {
|
|
|
|
public:
|
|
|
|
FileGenerateCallback() = default;
|
|
|
|
FileGenerateCallback(const FileGenerateCallback &) = delete;
|
|
|
|
FileGenerateCallback &operator=(const FileGenerateCallback &) = delete;
|
|
|
|
virtual ~FileGenerateCallback() = default;
|
|
|
|
|
|
|
|
virtual void on_partial_generate(const PartialLocalFileLocation &partial_local, int32 expected_size) = 0;
|
|
|
|
virtual void on_ok(const FullLocalFileLocation &local) = 0;
|
|
|
|
virtual void on_error(Status error) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FileGenerateManager : public Actor {
|
|
|
|
public:
|
|
|
|
explicit FileGenerateManager(ActorShared<> parent) : parent_(std::move(parent)) {
|
|
|
|
}
|
|
|
|
|
2018-10-30 15:25:31 +01:00
|
|
|
void generate_file(uint64 query_id, FullGenerateFileLocation generate_location,
|
2018-09-27 03:19:03 +02:00
|
|
|
const LocalFileLocation &local_location, string name, unique_ptr<FileGenerateCallback> callback);
|
2018-12-31 20:04:05 +01:00
|
|
|
void cancel(uint64 query_id);
|
|
|
|
|
|
|
|
// external updates about file generation state
|
2019-04-26 02:18:00 +02:00
|
|
|
void external_file_generate_write_part(uint64 query_id, int32 offset, string data, Promise<> promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
void external_file_generate_progress(uint64 query_id, int32 expected_size, int32 local_prefix_size,
|
|
|
|
Promise<> promise);
|
|
|
|
void external_file_generate_finish(uint64 query_id, Status status, Promise<> promise);
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Query {
|
|
|
|
Query() = default;
|
|
|
|
Query(const Query &other) = delete;
|
|
|
|
Query &operator=(const Query &other) = delete;
|
|
|
|
Query(Query &&other);
|
|
|
|
Query &operator=(Query &&other);
|
|
|
|
~Query();
|
|
|
|
|
|
|
|
ActorOwn<FileGenerateActor> worker_;
|
|
|
|
};
|
|
|
|
|
|
|
|
ActorShared<> parent_;
|
|
|
|
std::map<uint64, Query> query_id_to_query_;
|
|
|
|
bool close_flag_ = false;
|
|
|
|
|
|
|
|
void hangup() override;
|
|
|
|
void hangup_shared() override;
|
|
|
|
void loop() override;
|
|
|
|
void do_cancel(uint64 query_id);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|