MySQL 8.3.0
Source Code Documentation
classic_command.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2022, 2023, 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 also distributed 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 included with MySQL.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23*/
24
25#ifndef ROUTING_CLASSIC_COMMAND_INCLUDED
26#define ROUTING_CLASSIC_COMMAND_INCLUDED
27
29
31
33 public:
34 using ForwardingProcessor::ForwardingProcessor;
35
36 enum class Stage {
39 Command,
40 Done,
41 };
42
44
46 Stage stage() const { return stage_; }
47
48 private:
52
54
56
59};
60
61#endif
Definition: classic_command.h:32
stdx::expected< Result, std::error_code > command()
Definition: classic_command.cc:351
void client_idle_timeout()
Definition: classic_command.cc:101
stdx::expected< Result, std::error_code > wait_both()
wait for an read-event from client and server at the same time.
Definition: classic_command.cc:317
stdx::expected< Result, std::error_code > is_authed()
Definition: classic_command.cc:86
Stage stage() const
Definition: classic_command.h:46
stdx::expected< Result, std::error_code > process() override
Definition: classic_command.cc:70
Stage
Definition: classic_command.h:36
stdx::expected< AwaitClientOrServerProcessor::AwaitResult, std::error_code > wait_both_result_
Definition: classic_command.h:58
void stage(Stage stage)
Definition: classic_command.h:45
Stage stage_
Definition: classic_command.h:55
a processor base class with helper functions.
Definition: forwarding_processor.h:36
Definition: expected.h:943