MySQL 8.3.0
Source Code Documentation
classic_auth_native_sender.h
Go to the documentation of this file.
1/*
2 Copyright (c) 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_AUTH_NATIVE_SENDER_INCLUDED
26#define ROUTING_CLASSIC_AUTH_NATIVE_SENDER_INCLUDED
27
28#include <optional>
29#include <string>
30#include <string_view>
31#include <system_error>
32
33#include "classic_auth_native.h"
36#include "processor.h"
37
39 public:
41 std::string initial_server_auth_data, std::string password)
42 : Processor(conn),
43 initial_server_auth_data_{std::move(initial_server_auth_data)},
44 password_{std::move(password)} {}
45
46 enum class Stage {
47 Init,
48
50
51 Error,
52 Ok,
53
54 Done,
55 };
56
58
60 [[nodiscard]] Stage stage() const { return stage_; }
61
62 private:
64
69
71
73 std::string password_;
74};
75
76#endif
Definition: classic_auth_native.h:32
Definition: classic_auth_native_sender.h:38
std::string initial_server_auth_data_
Definition: classic_auth_native_sender.h:72
stdx::expected< Result, std::error_code > error()
Definition: classic_auth_native_sender.cc:134
stdx::expected< Result, std::error_code > response()
Definition: classic_auth_native_sender.cc:81
void stage(Stage stage)
Definition: classic_auth_native_sender.h:59
Stage stage() const
Definition: classic_auth_native_sender.h:60
Stage
Definition: classic_auth_native_sender.h:46
stdx::expected< Result, std::error_code > init()
Definition: classic_auth_native_sender.cc:54
AuthNativeSender(MysqlRoutingClassicConnectionBase *conn, std::string initial_server_auth_data, std::string password)
Definition: classic_auth_native_sender.h:40
std::string password_
Definition: classic_auth_native_sender.h:73
stdx::expected< Result, std::error_code > process() override
Definition: classic_auth_native_sender.cc:37
Stage stage_
Definition: classic_auth_native_sender.h:70
stdx::expected< Result, std::error_code > ok()
Definition: classic_auth_native_sender.cc:124
Definition: classic_connection_base.h:257
a processor base class with helper functions.
Definition: processor.h:90
Definition: expected.h:943
static char * password
Definition: mysql_secure_installation.cc:57
Definition: varlen_sort.h:174