blob: f5a1562a340855e11abf0d63059d623df8a11613 (
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
|
#pragma once
#include <Processors/Formats/IInputFormat.h>
#include <Processors/ISimpleTransform.h>
#include <IO/EmptyReadBuffer.h>
namespace DB
{
using SimpleTransformPtr = std::shared_ptr<ISimpleTransform>;
/// Receives format and allows to execute
/// it multiple times for streaming processing of data.
class StreamingFormatExecutor
{
public:
/// Callback is called, when exception is thrown in `execute` method.
/// It provides currently accumulated columns to make a rollback, for example,
/// and exception to rethrow it or add context to it.
/// Should return number of new rows, which are added in callback
/// to result columns in comparison to previous call of `execute`.
using ErrorCallback = std::function<size_t(const MutableColumns &, Exception &)>;
StreamingFormatExecutor(
const Block & header_,
InputFormatPtr format_,
ErrorCallback on_error_ = [](const MutableColumns &, Exception & e) -> size_t { throw std::move(e); },
SimpleTransformPtr adding_defaults_transform_ = nullptr);
/// Returns numbers of new read rows.
size_t execute();
/// Execute with provided read buffer.
size_t execute(ReadBuffer & buffer);
/// Releases currently accumulated columns.
MutableColumns getResultColumns();
private:
const Block header;
const InputFormatPtr format;
const ErrorCallback on_error;
const SimpleTransformPtr adding_defaults_transform;
InputPort port;
MutableColumns result_columns;
};
}
|