#pragma once #include #if USE_AWS_S3 # include # include # include # include # include "SeekableReadBuffer.h" namespace Aws::S3 { class S3Client; } namespace DB { /** * Perform S3 HTTP GET request and provide response to read. */ class ReadBufferFromS3 : public SeekableReadBuffer { private: std::shared_ptr client_ptr; String bucket; String key; size_t buffer_size; bool initialized = false; off_t offset = 0; Aws::S3::Model::GetObjectResult read_result; std::unique_ptr impl; Logger * log = &Logger::get("ReadBufferFromS3"); public: explicit ReadBufferFromS3( std::shared_ptr client_ptr_, const String & bucket_, const String & key_, size_t buffer_size_ = DBMS_DEFAULT_BUFFER_SIZE); bool nextImpl() override; off_t seek(off_t off, int whence) override; private: std::unique_ptr initialize(); }; } #endif