mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
36 lines
775 B
C++
36 lines
775 B
C++
#pragma once
|
|
#include "../urbackupcommon/fileclient/FileClient.h"
|
|
#include "../Interface/Thread.h"
|
|
#include "RestoreFiles.h"
|
|
|
|
namespace client {
|
|
|
|
class FileMetadataDownloadThread : public IThread
|
|
{
|
|
public:
|
|
FileMetadataDownloadThread(RestoreFiles& restore, FileClient& fc, const std::string& client_token);
|
|
|
|
virtual void operator()();
|
|
|
|
bool applyMetadata(const str_map& path_mapping);
|
|
|
|
bool applyOsMetadata(IFile* metadata_f, const std::string& output_fn);
|
|
|
|
void shutdown(bool log_error);
|
|
|
|
int64 getTransferredBytes();
|
|
|
|
private:
|
|
RestoreFiles& restore;
|
|
FileClient& fc;
|
|
const std::string& client_token;
|
|
|
|
std::vector<char> buffer;
|
|
|
|
bool has_error;
|
|
std::string metadata_tmp_fn;
|
|
volatile bool error_logging;
|
|
};
|
|
|
|
} //namespace client
|