MySQL 9.0.0
Source Code Documentation
classic_clone_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_CLONE_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_CLONE_FORWARDER_INCLUDED
28
30
32 public:
33 using ForwardingProcessor::ForwardingProcessor;
34
35 enum class Stage {
36 Command,
37 Connect,
51 Ok,
52 Error,
53 Done,
54 };
55
57
59 Stage stage() const { return stage_; }
60
61 private:
79
81
82 uint8_t clone_cmd_{};
83};
84
85#endif
Definition: classic_clone_forwarder.h:31
void stage(Stage stage)
Definition: classic_clone_forwarder.h:58
stdx::expected< Result, std::error_code > clone_init()
Definition: classic_clone_forwarder.cc:241
stdx::expected< Result, std::error_code > clone_response()
Definition: classic_clone_forwarder.cc:306
stdx::expected< Result, std::error_code > clone_attach()
Definition: classic_clone_forwarder.cc:252
Stage stage() const
Definition: classic_clone_forwarder.h:59
uint8_t clone_cmd_
Definition: classic_clone_forwarder.h:82
stdx::expected< Result, std::error_code > response()
Definition: classic_clone_forwarder.cc:131
stdx::expected< Result, std::error_code > clone_complete()
Definition: classic_clone_forwarder.cc:355
stdx::expected< Result, std::error_code > connect()
Definition: classic_clone_forwarder.cc:96
stdx::expected< Result, std::error_code > clone_command()
Definition: classic_clone_forwarder.cc:182
Stage
Definition: classic_clone_forwarder.h:35
stdx::expected< Result, std::error_code > process() override
Definition: classic_clone_forwarder.cc:38
Stage stage_
Definition: classic_clone_forwarder.h:80
stdx::expected< Result, std::error_code > clone_execute()
Definition: classic_clone_forwarder.cc:274
stdx::expected< Result, std::error_code > clone_data()
Definition: classic_clone_forwarder.cc:344
stdx::expected< Result, std::error_code > connected()
Definition: classic_clone_forwarder.cc:105
stdx::expected< Result, std::error_code > command()
Definition: classic_clone_forwarder.cc:81
stdx::expected< Result, std::error_code > clone_ack()
Definition: classic_clone_forwarder.cc:284
stdx::expected< Result, std::error_code > ok()
Definition: classic_clone_forwarder.cc:161
stdx::expected< Result, std::error_code > clone_exit()
Definition: classic_clone_forwarder.cc:295
stdx::expected< Result, std::error_code > clone_error()
Definition: classic_clone_forwarder.cc:374
stdx::expected< Result, std::error_code > error()
Definition: classic_clone_forwarder.cc:171
stdx::expected< Result, std::error_code > clone_reinit()
Definition: classic_clone_forwarder.cc:263
a processor base class with helper functions.
Definition: forwarding_processor.h:38
Definition: expected.h:284