mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
#pragma once
|
|
#include <DataStreams/IBlockOutputStream.h>
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
#include <Interpreters/ProcessList.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/// Proxy class which counts number of written block, rows, bytes
|
|
class CountingBlockOutputStream : public IBlockOutputStream
|
|
{
|
|
public:
|
|
CountingBlockOutputStream(const BlockOutputStreamPtr & stream_)
|
|
: stream(stream_) {}
|
|
|
|
void setProgressCallback(const ProgressCallback & callback)
|
|
{
|
|
progress_callback = callback;
|
|
}
|
|
|
|
void setProcessListElement(QueryStatus * elem)
|
|
{
|
|
process_elem = elem;
|
|
}
|
|
|
|
const Progress & getProgress() const
|
|
{
|
|
return progress;
|
|
}
|
|
|
|
Block getHeader() const override { return stream->getHeader(); }
|
|
void write(const Block & block) override;
|
|
|
|
void writePrefix() override { stream->writePrefix(); }
|
|
void writeSuffix() override { stream->writeSuffix(); }
|
|
void flush() override { stream->flush(); }
|
|
void onProgress(const Progress & current_progress) override { stream->onProgress(current_progress); }
|
|
String getContentType() const override { return stream->getContentType(); }
|
|
|
|
protected:
|
|
BlockOutputStreamPtr stream;
|
|
Progress progress;
|
|
ProgressCallback progress_callback;
|
|
QueryStatus * process_elem = nullptr;
|
|
};
|
|
|
|
}
|