ClickHouse/src/IO/ReadBufferFromBlobStorage.cpp

109 lines
2.5 KiB
C++
Raw Normal View History

#if !defined(ARCADIA_BUILD)
#include <Common/config.h>
#endif
#if USE_AZURE_BLOB_STORAGE
#include <iostream>
#include <IO/ReadBufferFromBlobStorage.h>
#include <IO/ReadBufferFromString.h>
namespace DB
{
namespace ErrorCodes
{
extern const int CANNOT_SEEK_THROUGH_FILE;
extern const int SEEK_POSITION_OUT_OF_BOUND;
}
ReadBufferFromBlobStorage::ReadBufferFromBlobStorage(
Azure::Storage::Blobs::BlobContainerClient blob_container_client_,
const String & path_,
size_t /* buf_size_ */) :
SeekableReadBuffer(nullptr, 0),
blob_container_client(blob_container_client_),
path(path_) {}
bool ReadBufferFromBlobStorage::nextImpl()
{
bool next_result = false;
if (impl)
{
/// `impl` has been initialized earlier and now we're at the end of the current portion of data.
impl->position() = position();
assert(!impl->hasPendingData());
}
else
{
/// `impl` is not initialized and we're about to read the first portion of data.
impl = initialize();
next_result = impl->hasPendingData();
}
if (!next_result)
{
/// Try to read a next portion of data.
next_result = impl->next();
}
if (!next_result)
return false;
BufferBase::set(impl->buffer().begin(), impl->buffer().size(), impl->offset()); /// use the buffer returned by `impl`
offset += working_buffer.size();
return true;
}
off_t ReadBufferFromBlobStorage::seek(off_t offset_, int whence)
{
if (impl)
throw Exception("Seek is allowed only before first read attempt from the buffer.", ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
if (whence != SEEK_SET)
throw Exception("Only SEEK_SET mode is allowed.", ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
if (offset_ < 0)
throw Exception("Seek position is out of bounds. Offset: " + std::to_string(offset_), ErrorCodes::SEEK_POSITION_OUT_OF_BOUND);
offset = offset_;
return offset;
}
off_t ReadBufferFromBlobStorage::getPosition()
{
return offset - available();
}
std::unique_ptr<ReadBuffer> ReadBufferFromBlobStorage::initialize()
{
auto blob_client = blob_container_client.GetBlobClient(path);
auto prop = blob_client.GetProperties();
auto blob_size = prop.Value.BlobSize;
#ifdef VERBOSE_DEBUG_MODE
std::cout << "path: " << path << "\n";
std::cout << "blob_size: " << blob_size << "\n";
#endif
tmp_buffer.resize(blob_size);
blob_client.DownloadTo(tmp_buffer.data(), blob_size);
return std::make_unique<ReadBufferFromString>(tmp_buffer);
}
}
#endif