ClickHouse/dbms/src/IO/HashingReadBuffer.h

45 lines
1.0 KiB
C++
Raw Normal View History

#pragma once
#include <IO/ReadBuffer.h>
#include <IO/HashingWriteBuffer.h>
namespace DB
{
/*
2017-05-28 14:29:40 +00:00
* Calculates the hash from the read data. When reading, the data is read from the nested ReadBuffer.
* Small pieces are copied into its own memory.
*/
class HashingReadBuffer : public IHashingBuffer<ReadBuffer>
{
public:
HashingReadBuffer(ReadBuffer & in_, size_t block_size = DBMS_DEFAULT_HASHING_BLOCK_SIZE) :
2017-12-01 18:36:55 +00:00
IHashingBuffer<ReadBuffer>(block_size), in(in_)
{
working_buffer = in.buffer();
pos = in.position();
2017-05-28 14:29:40 +00:00
/// calculate hash from the data already read
if (working_buffer.size())
{
calculateHash(pos, working_buffer.end() - pos);
}
}
private:
bool nextImpl() override
{
in.position() = pos;
bool res = in.next();
working_buffer = in.buffer();
pos = in.position();
calculateHash(working_buffer.begin(), working_buffer.size());
return res;
}
private:
ReadBuffer & in;
};
}