mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
74 lines
3.1 KiB
C++
74 lines
3.1 KiB
C++
#pragma once
|
|
|
|
#include <Backups/BackupIO.h>
|
|
#include <Common/Logger.h>
|
|
#include <IO/ReadSettings.h>
|
|
#include <IO/WriteSettings.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class IDisk;
|
|
using DiskPtr = std::shared_ptr<IDisk>;
|
|
class ReadBuffer;
|
|
class SeekableReadBuffer;
|
|
class WriteBuffer;
|
|
enum class WriteMode : uint8_t;
|
|
|
|
/// Represents operations of loading from disk or downloading for reading a backup.
|
|
class BackupReaderDefault : public IBackupReader
|
|
{
|
|
public:
|
|
BackupReaderDefault(const ReadSettings & read_settings_, const WriteSettings & write_settings_, LoggerPtr log_);
|
|
~BackupReaderDefault() override = default;
|
|
|
|
/// The function copyFileToDisk() can be much faster than reading the file with readFile() and then writing it to some disk.
|
|
/// (especially for S3 where it can use CopyObject to copy objects inside S3 instead of downloading and uploading them).
|
|
/// Parameters:
|
|
/// `encrypted_in_backup` specify if this file is encrypted in the backup, so it shouldn't be encrypted again while restoring to an encrypted disk.
|
|
void copyFileToDisk(const String & path_in_backup, size_t file_size, bool encrypted_in_backup,
|
|
DiskPtr destination_disk, const String & destination_path, WriteMode write_mode) override;
|
|
|
|
const ReadSettings & getReadSettings() const override { return read_settings; }
|
|
const WriteSettings & getWriteSettings() const override { return write_settings; }
|
|
size_t getWriteBufferSize() const override { return write_buffer_size; }
|
|
|
|
protected:
|
|
LoggerPtr const log;
|
|
const ReadSettings read_settings;
|
|
|
|
/// The write settings are used to write to the source disk in copyFileToDisk().
|
|
const WriteSettings write_settings;
|
|
const size_t write_buffer_size;
|
|
};
|
|
|
|
/// Represents operations of storing to disk or uploading for writing a backup.
|
|
class BackupWriterDefault : public IBackupWriter
|
|
{
|
|
public:
|
|
BackupWriterDefault(const ReadSettings & read_settings_, const WriteSettings & write_settings_, LoggerPtr log_);
|
|
~BackupWriterDefault() override = default;
|
|
|
|
bool fileContentsEqual(const String & file_name, const String & expected_file_contents) override;
|
|
void copyDataToFile(const String & path_in_backup, const CreateReadBufferFunction & create_read_buffer, UInt64 start_pos, UInt64 length) override;
|
|
void copyFileFromDisk(const String & path_in_backup, DiskPtr src_disk, const String & src_path, bool copy_encrypted, UInt64 start_pos, UInt64 length) override;
|
|
|
|
const ReadSettings & getReadSettings() const override { return read_settings; }
|
|
const WriteSettings & getWriteSettings() const override { return write_settings; }
|
|
size_t getWriteBufferSize() const override { return write_buffer_size; }
|
|
|
|
protected:
|
|
/// Here readFile() is used only to implement fileContentsEqual().
|
|
virtual std::unique_ptr<ReadBuffer> readFile(const String & file_name, size_t expected_file_size) = 0;
|
|
|
|
LoggerPtr const log;
|
|
|
|
/// The read settings are used to read from the source disk in copyFileFromDisk().
|
|
const ReadSettings read_settings;
|
|
|
|
const WriteSettings write_settings;
|
|
const size_t write_buffer_size;
|
|
};
|
|
|
|
}
|