2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
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
|
|
|
|
|
2019-01-19 22:54:29 +01:00
|
|
|
#include "td/telegram/files/FileLocation.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/ResourceState.h"
|
|
|
|
#include "td/telegram/net/NetQuery.h"
|
|
|
|
|
2018-07-03 21:29:04 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class ResourceManager;
|
|
|
|
|
|
|
|
class FileLoaderActor : public NetQueryCallback {
|
|
|
|
public:
|
2020-10-05 17:07:23 +02:00
|
|
|
virtual void set_resource_manager(ActorShared<ResourceManager> resource_manager) = 0;
|
2018-01-20 12:47:53 +01:00
|
|
|
virtual void update_priority(int8 priority) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual void update_resources(const ResourceState &other) = 0;
|
|
|
|
|
2022-05-20 15:11:31 +02:00
|
|
|
// TODO: existence of these two functions is a dirty hack. Refactoring is highly appreciated
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual void update_local_file_location(const LocalFileLocation &local) {
|
|
|
|
}
|
2022-05-20 15:11:31 +02:00
|
|
|
virtual void update_downloaded_part(int64 offset, int64 limit, int64 max_resource_limit) {
|
2019-02-18 20:08:05 +01:00
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|