mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/* 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>
|
|
#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;
|
|
};
|
|
|
|
}
|