ClickHouse/src/IO/HashingReadBuffer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
#include <IO/HashingWriteBuffer.h>
2021-02-04 23:14:17 +00:00
#include <IO/ReadBuffer.h>
namespace DB
{
2021-02-04 23:14:17 +00:00
/*
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:
2021-02-04 23:14:17 +00:00
explicit HashingReadBuffer(ReadBuffer & in_, size_t block_size_ = DBMS_DEFAULT_HASHING_BLOCK_SIZE)
: IHashingBuffer<ReadBuffer>(block_size_), in(in_)
{
working_buffer = in.buffer();
pos = in.position();
hashing_begin = pos;
}
uint128 getHash()
{
if (pos > hashing_begin)
{
calculateHash(hashing_begin, pos - hashing_begin);
hashing_begin = pos;
}
return IHashingBuffer<ReadBuffer>::getHash();
}
private:
bool nextImpl() override
{
if (pos > hashing_begin)
calculateHash(hashing_begin, pos - hashing_begin);
in.position() = pos;
bool res = in.next();
working_buffer = in.buffer();
2021-07-05 20:02:24 +00:00
// `pos` may be different from working_buffer.begin() when using sophisticated ReadBuffers.
pos = in.position();
hashing_begin = pos;
return res;
}
ReadBuffer & in;
BufferBase::Position hashing_begin;
};
2021-02-04 23:14:17 +00:00
}