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