MySQL 8.4.0
Source Code Documentation
classic_reset_connection_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_RESET_CONNECTION_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_RESET_CONNECTION_FORWARDER_INCLUDED
28
30
32 public:
33 using ForwardingProcessor::ForwardingProcessor;
34
35 enum class Stage {
36 Command,
38 Connect,
41 Ok,
42 SetVars,
46 EndLoop,
47 SendOk,
48 Done,
49 };
50
52
54 Stage stage() const { return stage_; }
55
56 void failed(
57 const std::optional<classic_protocol::message::server::Error> &err) {
58 failed_ = err;
59 }
60
61 std::optional<classic_protocol::message::server::Error> failed() const {
62 return failed_;
63 }
64
65 private:
78
80
81 std::optional<classic_protocol::message::server::Error> failed_;
82
83 int round_{0};
84};
85
86#endif
a processor base class with helper functions.
Definition: forwarding_processor.h:38
Definition: classic_reset_connection_forwarder.h:31
std::optional< classic_protocol::message::server::Error > failed_
Definition: classic_reset_connection_forwarder.h:81
stdx::expected< Result, std::error_code > start_loop()
Definition: classic_reset_connection_forwarder.cc:267
stdx::expected< Result, std::error_code > connected()
Definition: classic_reset_connection_forwarder.cc:337
stdx::expected< Result, std::error_code > fetch_sys_vars_done()
Definition: classic_reset_connection_forwarder.cc:562
int round_
Definition: classic_reset_connection_forwarder.h:83
stdx::expected< Result, std::error_code > response()
Definition: classic_reset_connection_forwarder.cc:362
void failed(const std::optional< classic_protocol::message::server::Error > &err)
Definition: classic_reset_connection_forwarder.h:56
stdx::expected< Result, std::error_code > command()
Definition: classic_reset_connection_forwarder.cc:219
stdx::expected< Result, std::error_code > send_ok()
Definition: classic_reset_connection_forwarder.cc:624
void stage(Stage stage)
Definition: classic_reset_connection_forwarder.h:53
stdx::expected< Result, std::error_code > end_loop()
Definition: classic_reset_connection_forwarder.cc:572
stdx::expected< Result, std::error_code > ok()
Definition: classic_reset_connection_forwarder.cc:388
stdx::expected< Result, std::error_code > process() override
forward the reset-connection message flow.
Definition: classic_reset_connection_forwarder.cc:185
stdx::expected< Result, std::error_code > set_vars_done()
Definition: classic_reset_connection_forwarder.cc:512
Stage stage_
Definition: classic_reset_connection_forwarder.h:79
std::optional< classic_protocol::message::server::Error > failed() const
Definition: classic_reset_connection_forwarder.h:61
stdx::expected< Result, std::error_code > set_vars()
Definition: classic_reset_connection_forwarder.cc:455
Stage
Definition: classic_reset_connection_forwarder.h:35
stdx::expected< Result, std::error_code > fetch_sys_vars()
Definition: classic_reset_connection_forwarder.cc:522
stdx::expected< Result, std::error_code > connect()
Definition: classic_reset_connection_forwarder.cc:327
Stage stage() const
Definition: classic_reset_connection_forwarder.h:54
Definition: expected.h:284
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:927