mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
85 lines
2.1 KiB
C++
85 lines
2.1 KiB
C++
#include <Storages/StorageInput.h>
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
#include <memory>
|
|
#include <Processors/Sources/SourceWithProgress.h>
|
|
#include <Processors/Pipe.h>
|
|
#include <Processors/Sources/SourceFromInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int INVALID_USAGE_OF_INPUT;
|
|
}
|
|
|
|
StorageInput::StorageInput(const StorageID & table_id, const ColumnsDescription & columns_)
|
|
: IStorage(table_id)
|
|
{
|
|
setColumns(columns_);
|
|
}
|
|
|
|
|
|
class StorageInputSource : public SourceWithProgress
|
|
{
|
|
public:
|
|
StorageInputSource(Context & context_, Block sample_block)
|
|
: SourceWithProgress(std::move(sample_block)), context(context_)
|
|
{
|
|
}
|
|
|
|
Chunk generate() override
|
|
{
|
|
auto block = context.getInputBlocksReaderCallback()(context);
|
|
if (!block)
|
|
return {};
|
|
|
|
UInt64 num_rows = block.rows();
|
|
return Chunk(block.getColumns(), num_rows);
|
|
}
|
|
|
|
String getName() const override { return "Input"; }
|
|
|
|
private:
|
|
Context & context;
|
|
};
|
|
|
|
|
|
void StorageInput::setInputStream(BlockInputStreamPtr input_stream_)
|
|
{
|
|
input_stream = input_stream_;
|
|
}
|
|
|
|
|
|
Pipes StorageInput::read(const Names & /*column_names*/,
|
|
const SelectQueryInfo & /*query_info*/,
|
|
const Context & context,
|
|
QueryProcessingStage::Enum /*processed_stage*/,
|
|
size_t /*max_block_size*/,
|
|
unsigned /*num_streams*/)
|
|
{
|
|
Pipes pipes;
|
|
Context & query_context = const_cast<Context &>(context).getQueryContext();
|
|
/// It is TCP request if we have callbacks for input().
|
|
if (query_context.getInputBlocksReaderCallback())
|
|
{
|
|
/// Send structure to the client.
|
|
query_context.initializeInput(shared_from_this());
|
|
pipes.emplace_back(std::make_shared<StorageInputSource>(query_context, getSampleBlock()));
|
|
return pipes;
|
|
}
|
|
|
|
if (!input_stream)
|
|
throw Exception("Input stream is not initialized, input() must be used only in INSERT SELECT query", ErrorCodes::INVALID_USAGE_OF_INPUT);
|
|
|
|
pipes.emplace_back(std::make_shared<SourceFromInputStream>(input_stream));
|
|
return pipes;
|
|
}
|
|
|
|
}
|