blob: 12580d5f94a37d1903728db76c034a98e72d5646 (
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
68
69
70
71
72
73
74
75
|
#pragma once
#pragma once
#include <Processors/Sinks/SinkToStorage.h>
#include <Interpreters/Context.h>
#include <Core/BackgroundSchedulePool.h>
namespace Poco { class Logger; }
namespace DB
{
/// Interface for producing messages in streaming storages.
/// It's used in MessageQueueSink.
class IMessageProducer
{
public:
explicit IMessageProducer(Poco::Logger * log_);
/// Do some preparations.
virtual void start(const ContextPtr & context) = 0;
/// Produce single message.
virtual void produce(const String & message, size_t rows_in_message, const Columns & columns, size_t last_row) = 0;
/// Finalize producer.
virtual void finish() = 0;
virtual ~IMessageProducer() = default;
protected:
Poco::Logger * log;
};
/// Implements interface for concurrent message producing.
class AsynchronousMessageProducer : public IMessageProducer
{
public:
explicit AsynchronousMessageProducer(Poco::Logger * log_) : IMessageProducer(log_) {}
/// Create and schedule task in BackgroundSchedulePool that will produce messages.
void start(const ContextPtr & context) override;
/// Stop producing task, wait for ot to finish and finalize.
void finish() override;
/// In this method producer should not do any hard work and send message
/// to producing task, for example, by using ConcurrentBoundedQueue.
void produce(const String & message, size_t rows_in_message, const Columns & columns, size_t last_row) override = 0;
protected:
/// Do some initialization before scheduling producing task.
virtual void initialize() {}
/// Tell producer to finish all work and stop producing task
virtual void stopProducingTask() = 0;
/// Do some finalization after producing task is stopped.
virtual void finishImpl() {}
virtual String getProducingTaskName() const = 0;
/// Method that is called inside producing task, all producing work should be done here.
virtual void startProducingTaskLoop() = 0;
private:
/// Flag, indicated that finish() method was called.
/// It's used to prevent doing finish logic more than once.
std::atomic<bool> finished = false;
BackgroundSchedulePool::TaskHolder producing_task;
std::atomic<bool> scheduled;
};
}
|