MySQL 9.1.0
Source Code Documentation
classic_stmt_prepare_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_STMT_PREPARE_FORWARDER_INCLUDED
27#define ROUTING_CLASSIC_STMT_PREPARE_FORWARDER_INCLUDED
28
30
32
34 public:
35 using ForwardingProcessor::ForwardingProcessor;
36
37 enum class Stage {
38 Command,
39
41
43
44 Connect,
46 Forward,
49 Column,
51 Param,
53 Ok,
54 OkDone,
55 Error,
56 Done,
57 };
58
59 static std::string_view prefix() { return "mysql/stmt_prepare"; }
60
62
64 Stage stage() const { return stage_; }
65
66 private:
82
83 bool has_more_messages() const;
84
86
87 size_t columns_left_{0};
88 size_t params_left_{0};
89
90 uint16_t stmt_id_{};
92
96};
97
98#endif
a processor base class with helper functions.
Definition: forwarding_processor.h:38
Definition: classic_stmt_prepare_forwarder.h:33
stdx::expected< Result, std::error_code > prepare_backend()
Definition: classic_stmt_prepare_forwarder.cc:264
stdx::expected< Result, std::error_code > end_of_columns()
Definition: classic_stmt_prepare_forwarder.cc:534
stdx::expected< Result, std::error_code > column()
Definition: classic_stmt_prepare_forwarder.cc:510
stdx::expected< Result, std::error_code > ok()
Definition: classic_stmt_prepare_forwarder.cc:365
stdx::expected< Result, std::error_code > end_of_params()
Definition: classic_stmt_prepare_forwarder.cc:462
stdx::expected< Result, std::error_code > command()
Definition: classic_stmt_prepare_forwarder.cc:96
stdx::expected< Result, std::error_code > error()
Definition: classic_stmt_prepare_forwarder.cc:559
stdx::expected< Result, std::error_code > forward_done()
Definition: classic_stmt_prepare_forwarder.cc:325
Stage
Definition: classic_stmt_prepare_forwarder.h:37
TraceEvent * trace_event_command_
Definition: classic_stmt_prepare_forwarder.h:93
stdx::expected< Result, std::error_code > forbid_command()
Definition: classic_stmt_prepare_forwarder.cc:238
void stage(Stage stage)
Definition: classic_stmt_prepare_forwarder.h:63
static std::string_view prefix()
Definition: classic_stmt_prepare_forwarder.h:59
uint16_t stmt_id_
Definition: classic_stmt_prepare_forwarder.h:90
Stage stage_
Definition: classic_stmt_prepare_forwarder.h:85
stdx::expected< Result, std::error_code > response()
Definition: classic_stmt_prepare_forwarder.cc:335
stdx::expected< Result, std::error_code > connect()
Definition: classic_stmt_prepare_forwarder.cc:277
bool has_more_messages() const
Definition: classic_stmt_prepare_forwarder.cc:415
stdx::expected< Result, std::error_code > process() override
Definition: classic_stmt_prepare_forwarder.cc:56
Stage stage() const
Definition: classic_stmt_prepare_forwarder.h:64
PreparedStatement prep_stmt_
Definition: classic_stmt_prepare_forwarder.h:91
stdx::expected< Result, std::error_code > param()
Definition: classic_stmt_prepare_forwarder.cc:420
stdx::expected< Result, std::error_code > connected()
Definition: classic_stmt_prepare_forwarder.cc:287
TraceEvent * trace_event_forward_command_
Definition: classic_stmt_prepare_forwarder.h:95
size_t params_left_
Definition: classic_stmt_prepare_forwarder.h:88
stdx::expected< Result, std::error_code > ok_done()
Definition: classic_stmt_prepare_forwarder.cc:545
TraceEvent * trace_event_connect_and_forward_command_
Definition: classic_stmt_prepare_forwarder.h:94
size_t columns_left_
Definition: classic_stmt_prepare_forwarder.h:87
stdx::expected< Result, std::error_code > forward()
Definition: classic_stmt_prepare_forwarder.cc:319
Definition: expected.h:286
Definition: classic_prepared_statement.h:33
Definition: trace_span.h:35