mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
28 lines
561 B
C++
28 lines
561 B
C++
#pragma once
|
|
|
|
#include <IO/BufferWithOwnMemory.h>
|
|
#include <IO/ReadBuffer.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Reads data with HTTP Chunked Transfer Encoding.
|
|
class HTTPChunkedReadBuffer : public BufferWithOwnMemory<ReadBuffer>
|
|
{
|
|
public:
|
|
explicit HTTPChunkedReadBuffer(std::unique_ptr<ReadBuffer> in_, size_t max_chunk_size_)
|
|
: max_chunk_size(max_chunk_size_), in(std::move(in_))
|
|
{}
|
|
|
|
private:
|
|
const size_t max_chunk_size;
|
|
std::unique_ptr<ReadBuffer> in;
|
|
|
|
size_t readChunkHeader();
|
|
void readChunkFooter();
|
|
|
|
bool nextImpl() override;
|
|
};
|
|
|
|
}
|