blob: 361bcc0155c69ce5bec6efc99e4ca9d832070c9b (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#pragma once
#include <functional>
#include <memory>
namespace DB
{
class QueryPipeline;
class Block;
class Chunk;
class LazyOutputFormat;
struct ProfileInfo;
/// Asynchronous pulling executor for QueryPipeline.
/// Always creates extra thread. If query is executed in single thread, use PullingPipelineExecutor.
/// Typical usage is:
///
/// PullingAsyncPipelineExecutor executor(query_pipeline);
/// while (executor.pull(chunk, timeout))
/// ... process chunk ...
class PullingAsyncPipelineExecutor
{
public:
explicit PullingAsyncPipelineExecutor(QueryPipeline & pipeline_);
~PullingAsyncPipelineExecutor();
/// Get structure of returned block or chunk.
const Block & getHeader() const;
/// Methods return false if query is finished.
/// If milliseconds > 0, returns empty object and `true` after timeout exceeded. Otherwise method is blocking.
/// You can use any pull method.
bool pull(Chunk & chunk, uint64_t milliseconds = 0);
bool pull(Block & block, uint64_t milliseconds = 0);
/// Stop execution of all processors. It is not necessary, but helps to stop execution before executor is destroyed.
void cancel();
/// Stop processors which only read data from source.
void cancelReading();
/// Get totals and extremes. Returns empty chunk if doesn't have any.
Chunk getTotals();
Chunk getExtremes();
/// Get totals and extremes. Returns empty chunk if doesn't have any.
Block getTotalsBlock();
Block getExtremesBlock();
/// Get query profile info.
ProfileInfo & getProfileInfo();
/// Internal executor data.
struct Data;
private:
using CancelFunc = std::function<void()>;
void cancelWithExceptionHandling(CancelFunc && cancel_func);
private:
QueryPipeline & pipeline;
std::shared_ptr<LazyOutputFormat> lazy_format;
std::unique_ptr<Data> data;
};
}
|