39 lines
1011 B
C++
39 lines
1011 B
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/files/FileGcParameters.h"
|
|
#include "td/telegram/files/FileStats.h"
|
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/utils/CancellationToken.h"
|
|
#include "td/utils/logging.h"
|
|
#include "td/utils/Promise.h"
|
|
|
|
namespace td {
|
|
|
|
extern int VERBOSITY_NAME(file_gc);
|
|
|
|
struct FileGcResult {
|
|
FileStats kept_file_stats_;
|
|
FileStats removed_file_stats_;
|
|
};
|
|
|
|
class FileGcWorker final : public Actor {
|
|
public:
|
|
FileGcWorker(ActorShared<> parent, CancellationToken token) : parent_(std::move(parent)), token_(std::move(token)) {
|
|
}
|
|
void run_gc(const FileGcParameters ¶meters, std::vector<FullFileInfo> files, Promise<FileGcResult> promise);
|
|
|
|
private:
|
|
ActorShared<> parent_;
|
|
CancellationToken token_;
|
|
};
|
|
|
|
} // namespace td
|