ClickHouse/dbms/DataStreams/BlocksBlockInputStream.h

51 lines
1.4 KiB
C++
Raw Normal View History

/* Copyright (c) 2018 BlackBerry Limited
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include <DataStreams/IBlockInputStream.h>
2020-02-22 08:11:20 +00:00
#include <Processors/Sources/SourceWithProgress.h>
namespace DB
{
/** A stream of blocks from a shared vector of blocks
*/
class BlocksSource : public SourceWithProgress
{
public:
/// Acquires shared ownership of the blocks vector
BlocksSource(const std::shared_ptr<BlocksPtr> & blocks_ptr_, Block header)
: SourceWithProgress(std::move(header))
, blocks(*blocks_ptr_), it((*blocks_ptr_)->begin()), end((*blocks_ptr_)->end()) {}
String getName() const override { return "Blocks"; }
protected:
Chunk generate() override
{
if (it == end)
return {};
Block res = *it;
++it;
return Chunk(res.getColumns(), res.rows());
}
private:
BlocksPtr blocks;
Blocks::iterator it;
const Blocks::iterator end;
};
}