MySQL 8.4.0
Source Code Documentation
config.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
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, version 2.0, 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#ifndef KEYRING_FILE_CONFIG_INCLUDED
25#define KEYRING_FILE_CONFIG_INCLUDED
26
27#include <memory>
28#include <string>
29#include <vector>
30
31namespace keyring_file {
32namespace config {
33
34/* Component path */
35extern char *g_component_path;
36
37/* Instance path */
38extern char *g_instance_path;
39
40/* Config details */
42 public:
43 std::string config_file_path_;
45};
46
47/**
48 Read configuration file
49
50 @param [out] config_pod Configuration details
51 @param [out] err Error message
52
53 @returns status of read operation
54 @retval false Success
55 @retval true Failure
56*/
57bool find_and_read_config_file(std::unique_ptr<Config_pod> &config_pod,
58 std::string &err);
59
60/**
61 Create configuration vector
62
63 @param [out] metadata Configuration data
64
65 @returns status of read operation
66 @retval false Success
67 @retval true Failure
68*/
69bool create_config(
70 std::unique_ptr<std::vector<std::pair<std::string, std::string>>>
71 &metadata);
72} // namespace config
73} // namespace keyring_file
74
75#endif // !KEYRING_FILE_CONFIG_INCLUDED
Definition: config.h:41
std::string config_file_path_
Definition: config.h:43
bool read_only_
Definition: config.h:44
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:927
char * g_instance_path
Definition: config.cc:53
bool create_config(std::unique_ptr< std::vector< std::pair< std::string, std::string > > > &metadata)
Create configuration vector.
Definition: config.cc:134
bool find_and_read_config_file(std::unique_ptr< Config_pod > &config_pod, std::string &err)
Read configuration file.
Definition: config.cc:69
char * g_component_path
Definition: config.cc:52
Definition: backend.cc:38
std::vector< T, ut::allocator< T > > vector
Specialization of vector which uses allocator.
Definition: ut0new.h:2874
std::conditional_t< !std::is_array< T >::value, std::unique_ptr< T, detail::Deleter< T > >, std::conditional_t< detail::is_unbounded_array_v< T >, std::unique_ptr< T, detail::Array_deleter< std::remove_extent_t< T > > >, void > > unique_ptr
The following is a common type that is returned by all the ut::make_unique (non-aligned) specializati...
Definition: ut0new.h:2438