ClickHouse/dbms/include/DB/DataStreams/IBlockOutputStream.h

70 lines
1.7 KiB
C++
Raw Normal View History

2011-08-28 02:22:23 +00:00
#pragma once
#include <string>
#include <vector>
#include <memory>
#include <boost/noncopyable.hpp>
2010-03-04 19:20:28 +00:00
namespace DB
{
2016-08-13 01:57:35 +00:00
class Block;
struct Progress;
2016-08-13 01:57:35 +00:00
class TableStructureReadLock;
using TableStructureReadLockPtr = std::shared_ptr<TableStructureReadLock>;
using TableStructureReadLocks = std::vector<TableStructureReadLockPtr>;
struct Progress;
2011-08-28 02:22:23 +00:00
2016-08-13 01:57:35 +00:00
/** Interface of stream for writing data (into table, filesystem, network, terminal, etc.)
2010-03-04 19:20:28 +00:00
*/
class IBlockOutputStream : private boost::noncopyable
2010-03-04 19:20:28 +00:00
{
public:
IBlockOutputStream() {}
2010-03-04 19:20:28 +00:00
2016-08-13 01:57:35 +00:00
/** Write block.
2010-03-04 19:20:28 +00:00
*/
virtual void write(const Block & block) = 0;
2016-08-13 01:57:35 +00:00
/** Write or do something before all data or after all data.
2011-10-31 06:37:12 +00:00
*/
virtual void writePrefix() {}
virtual void writeSuffix() {}
2016-08-13 01:57:35 +00:00
/** Flush output buffers if any.
*/
virtual void flush() {}
2016-08-13 01:57:35 +00:00
/** Methods to set additional information for output in formats, that support it.
*/
2013-05-22 14:57:43 +00:00
virtual void setRowsBeforeLimit(size_t rows_before_limit) {}
virtual void setTotals(const Block & totals) {}
virtual void setExtremes(const Block & extremes) {}
2011-10-31 06:37:12 +00:00
/** Notify about progress. Method could be called from different threads.
* Passed value are delta, that must be summarized.
*/
virtual void onProgress(const Progress & progress) {}
2016-08-13 01:57:35 +00:00
/** Content-Type to set when sending HTTP response.
2015-10-29 20:38:37 +00:00
*/
virtual std::string getContentType() const { return "text/plain; charset=UTF-8"; }
2015-10-29 20:38:37 +00:00
2010-03-04 19:20:28 +00:00
virtual ~IBlockOutputStream() {}
2016-08-13 01:57:35 +00:00
/** Don't let to alter table while instance of stream is alive.
*/
void addTableLock(const TableStructureReadLockPtr & lock) { table_locks.push_back(lock); }
protected:
TableStructureReadLocks table_locks;
2010-03-04 19:20:28 +00:00
};
using BlockOutputStreamPtr = std::shared_ptr<IBlockOutputStream>;
2011-08-28 02:22:23 +00:00
}