MySQL 8.0.37
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 Connect,
42 Column,
44 Param,
46 Ok,
47 OkDone,
48 Error,
49 Done,
50 };
51
53
55 Stage stage() const { return stage_; }
56
57 private:
69
70 bool has_more_messages() const;
71
73
74 size_t columns_left_{0};
75 size_t params_left_{0};
76
77 uint16_t stmt_id_{};
79};
80
81#endif
a processor base class with helper functions.
Definition: forwarding_processor.h:34
Definition: classic_stmt_prepare_forwarder.h:33
stdx::expected< Result, std::error_code > end_of_columns()
Definition: classic_stmt_prepare_forwarder.cc:264
stdx::expected< Result, std::error_code > column()
Definition: classic_stmt_prepare_forwarder.cc:248
stdx::expected< Result, std::error_code > ok()
Definition: classic_stmt_prepare_forwarder.cc:156
stdx::expected< Result, std::error_code > end_of_params()
Definition: classic_stmt_prepare_forwarder.cc:229
stdx::expected< Result, std::error_code > command()
Definition: classic_stmt_prepare_forwarder.cc:67
stdx::expected< Result, std::error_code > error()
Definition: classic_stmt_prepare_forwarder.cc:294
Stage
Definition: classic_stmt_prepare_forwarder.h:37
void stage(Stage stage)
Definition: classic_stmt_prepare_forwarder.h:54
uint16_t stmt_id_
Definition: classic_stmt_prepare_forwarder.h:77
Stage stage_
Definition: classic_stmt_prepare_forwarder.h:72
stdx::expected< Result, std::error_code > response()
Definition: classic_stmt_prepare_forwarder.cc:124
stdx::expected< Result, std::error_code > connect()
Definition: classic_stmt_prepare_forwarder.cc:83
bool has_more_messages() const
Definition: classic_stmt_prepare_forwarder.cc:190
stdx::expected< Result, std::error_code > process() override
Definition: classic_stmt_prepare_forwarder.cc:35
Stage stage() const
Definition: classic_stmt_prepare_forwarder.h:55
PreparedStatement prep_stmt_
Definition: classic_stmt_prepare_forwarder.h:78
stdx::expected< Result, std::error_code > param()
Definition: classic_stmt_prepare_forwarder.cc:195
stdx::expected< Result, std::error_code > connected()
Definition: classic_stmt_prepare_forwarder.cc:93
size_t params_left_
Definition: classic_stmt_prepare_forwarder.h:75
stdx::expected< Result, std::error_code > ok_done()
Definition: classic_stmt_prepare_forwarder.cc:282
size_t columns_left_
Definition: classic_stmt_prepare_forwarder.h:74
Definition: expected.h:944
Definition: classic_prepared_statement.h:33