tdlight/td/telegram/files/ResourceManager.h
levlam 80c35676a2 Update copyright year.
GitOrigin-RevId: 09afb551b6e637dc69739fa735b0051a38b9e14c
2020-01-01 04:23:48 +03:00

66 lines
1.6 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
//
// 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/telegram/files/FileLoaderActor.h"
#include "td/telegram/files/ResourceState.h"
#include "td/utils/Container.h"
#include "td/utils/Heap.h"
#include <utility>
namespace td {
class ResourceManager : public Actor {
public:
enum class Mode : int32 { Baseline, Greedy };
explicit ResourceManager(Mode mode) : mode_(mode) {
}
// use through ActorShared
void update_priority(int8 priority);
void update_resources(const ResourceState &resource_state);
void register_worker(ActorShared<FileLoaderActor> callback, int8 priority);
private:
Mode mode_;
using NodeId = uint64;
struct Node : public HeapNode {
NodeId node_id;
ResourceState resource_state_;
ActorShared<FileLoaderActor> callback_;
HeapNode *as_heap_node() {
return static_cast<HeapNode *>(this);
}
static Node *from_heap_node(HeapNode *heap_node) {
return static_cast<Node *>(heap_node);
}
};
Container<unique_ptr<Node>> nodes_container_;
vector<std::pair<int8, NodeId>> to_xload_;
KHeap<int64> by_estimated_extra_;
ResourceState resource_state_;
ActorShared<> parent_;
bool stop_flag_ = false;
void hangup_shared() override;
void loop() override;
void add_to_heap(Node *node);
bool satisfy_node(NodeId file_node_id);
void add_node(NodeId node_id, int8 priority);
bool remove_node(NodeId node_id);
};
} // namespace td