ClickHouse/dbms/src/IO/CachedCompressedReadBuffer.cpp

107 lines
2.6 KiB
C++
Raw Normal View History

2016-10-25 06:49:24 +00:00
#include <DB/IO/CachedCompressedReadBuffer.h>
#include <DB/IO/WriteHelpers.h>
2016-10-25 06:49:24 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int SEEK_POSITION_OUT_OF_BOUND;
2016-10-25 06:49:24 +00:00
}
void CachedCompressedReadBuffer::initInput()
{
if (!file_in)
{
file_in = createReadBufferFromFileBase(path, estimated_size, aio_threshold, buf_size);
compressed_in = &*file_in;
if (profile_callback)
file_in->setProfileCallback(profile_callback, clock_type);
}
}
bool CachedCompressedReadBuffer::nextImpl()
{
2017-03-25 20:12:56 +00:00
/// Let's check for the presence of a decompressed block in the cache, grab the ownership of this block, if it exists.
2016-10-25 06:49:24 +00:00
UInt128 key = cache->hash(path, file_pos);
owned_cell = cache->get(key);
if (!owned_cell)
{
2017-03-25 20:12:56 +00:00
/// If not, read it from the file.
2016-10-25 06:49:24 +00:00
initInput();
file_in->seek(file_pos);
owned_cell = std::make_shared<UncompressedCacheCell>();
size_t size_decompressed;
size_t size_compressed_without_checksum;
owned_cell->compressed_size = readCompressedData(size_decompressed, size_compressed_without_checksum);
if (owned_cell->compressed_size)
{
owned_cell->data.resize(size_decompressed);
decompress(owned_cell->data.m_data, size_decompressed, size_compressed_without_checksum);
/// Put data into cache.
2016-10-25 06:49:24 +00:00
cache->set(key, owned_cell);
}
}
if (owned_cell->data.m_size == 0)
{
owned_cell = nullptr;
return false;
}
working_buffer = Buffer(owned_cell->data.m_data, owned_cell->data.m_data + owned_cell->data.m_size);
file_pos += owned_cell->compressed_size;
return true;
}
CachedCompressedReadBuffer::CachedCompressedReadBuffer(
const std::string & path_, UncompressedCache * cache_, size_t estimated_size_, size_t aio_threshold_,
size_t buf_size_)
: ReadBuffer(nullptr, 0), path(path_), cache(cache_), buf_size(buf_size_), estimated_size(estimated_size_),
aio_threshold(aio_threshold_), file_pos(0)
{
}
void CachedCompressedReadBuffer::seek(size_t offset_in_compressed_file, size_t offset_in_decompressed_block)
{
if (owned_cell &&
offset_in_compressed_file == file_pos - owned_cell->compressed_size &&
offset_in_decompressed_block <= working_buffer.size())
{
bytes += offset();
pos = working_buffer.begin() + offset_in_decompressed_block;
bytes -= offset();
}
else
{
file_pos = offset_in_compressed_file;
bytes += offset();
nextImpl();
if (offset_in_decompressed_block > working_buffer.size())
throw Exception("Seek position is beyond the decompressed block"
" (pos: " + toString(offset_in_decompressed_block) + ", block size: " + toString(working_buffer.size()) + ")",
ErrorCodes::SEEK_POSITION_OUT_OF_BOUND);
2016-10-25 06:49:24 +00:00
pos = working_buffer.begin() + offset_in_decompressed_block;
bytes -= offset();
}
}
}