MySQL 9.0.0
Source Code Documentation
classic_binlog_dump_forwarder.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2023, 2024, Oracle and/or its affiliates.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License, version 2.0,
6 as published by the Free Software Foundation.
7
8 This program is designed to work with certain software (including
9 but not limited to OpenSSL) that is licensed under separate terms,
10 as designated in a particular file or component or in included license
11 documentation. The authors of MySQL hereby grant you an additional
12 permission to link the program and your derivative works with the
13 separately licensed software that they have either included with
14 the program or referenced in the documentation.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24*/
25
26#ifndef ROUTING_CLASSIC_BINLOG_DUMP_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_BINLOG_DUMP_FORWARDER_INCLUDED
28
30
32 public:
33 using ForwardingProcessor::ForwardingProcessor;
34
35 enum class Stage {
36 Command,
37
39
40 Connect,
44 Event,
45 Error,
46 Done,
47 };
48
50
52 Stage stage() const { return stage_; }
53
54 private:
63
65};
66
67#endif
Definition: classic_binlog_dump_forwarder.h:31
Stage
Definition: classic_binlog_dump_forwarder.h:35
stdx::expected< Result, std::error_code > command()
Definition: classic_binlog_dump_forwarder.cc:65
stdx::expected< Result, std::error_code > connect()
Definition: classic_binlog_dump_forwarder.cc:114
stdx::expected< Result, std::error_code > forbid_command()
Definition: classic_binlog_dump_forwarder.cc:88
stdx::expected< Result, std::error_code > error()
Definition: classic_binlog_dump_forwarder.cc:210
Stage stage_
Definition: classic_binlog_dump_forwarder.h:64
stdx::expected< Result, std::error_code > event()
Definition: classic_binlog_dump_forwarder.cc:185
stdx::expected< Result, std::error_code > end_of_stream()
Definition: classic_binlog_dump_forwarder.cc:196
stdx::expected< Result, std::error_code > response()
Definition: classic_binlog_dump_forwarder.cc:151
stdx::expected< Result, std::error_code > process() override
Definition: classic_binlog_dump_forwarder.cc:39
void stage(Stage stage)
Definition: classic_binlog_dump_forwarder.h:51
Stage stage() const
Definition: classic_binlog_dump_forwarder.h:52
stdx::expected< Result, std::error_code > connected()
Definition: classic_binlog_dump_forwarder.cc:124
a processor base class with helper functions.
Definition: forwarding_processor.h:38
Definition: expected.h:284