blob: 2593a241c6381156344d83669d05d3bc8ea34a72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#pragma once
#include <Processors/IProcessor.h>
namespace DB
{
class ISource : public IProcessor
{
private:
ReadProgressCounters read_progress;
bool read_progress_was_set = false;
bool auto_progress;
protected:
OutputPort & output;
bool has_input = false;
bool finished = false;
bool got_exception = false;
Port::Data current_chunk;
std::shared_ptr<const StorageLimitsList> storage_limits;
virtual Chunk generate();
virtual std::optional<Chunk> tryGenerate();
virtual void progress(size_t read_rows, size_t read_bytes);
public:
explicit ISource(Block header, bool enable_auto_progress = true);
~ISource() override;
Status prepare() override;
void work() override;
OutputPort & getPort() { return output; }
const OutputPort & getPort() const { return output; }
void setStorageLimits(const std::shared_ptr<const StorageLimitsList> & storage_limits_) override;
/// Default implementation for all the sources.
std::optional<ReadProgress> getReadProgress() final;
void addTotalRowsApprox(size_t value) { read_progress.total_rows_approx += value; }
void addTotalBytes(size_t value) { read_progress.total_bytes += value; }
};
using SourcePtr = std::shared_ptr<ISource>;
}
|