MySQL 9.0.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::config {
32
33/* Component path */
34extern char *g_component_path;
35
36/* Instance path */
37extern char *g_instance_path;
38
39/* Config details */
41 public:
42 std::string config_file_path_;
44};
45
46/**
47 Read configuration file
48
49 @param [out] config_pod Configuration details
50 @param [out] err Error message
51
52 @returns status of read operation
53 @retval false Success
54 @retval true Failure
55*/
56bool find_and_read_config_file(std::unique_ptr<Config_pod> &config_pod,
57 std::string &err);
58
59/**
60 Create configuration vector
61
62 @param [out] metadata Configuration data
63
64 @returns status of read operation
65 @retval false Success
66 @retval true Failure
67*/
68bool create_config(
69 std::unique_ptr<std::vector<std::pair<std::string, std::string>>>
70 &metadata);
71
72} // namespace keyring_file::config
73
74#endif // !KEYRING_FILE_CONFIG_INCLUDED
Definition: config.h:40
std::string config_file_path_
Definition: config.h:42
bool read_only_
Definition: config.h:43
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:927
Definition: config.cc:48
char * g_instance_path
Definition: config.cc:51
bool create_config(std::unique_ptr< std::vector< std::pair< std::string, std::string > > > &metadata)
Create configuration vector.
Definition: config.cc:128
bool find_and_read_config_file(std::unique_ptr< Config_pod > &config_pod, std::string &err)
Read configuration file.
Definition: config.cc:67
char * g_component_path
Definition: config.cc:50
std::vector< T, ut::allocator< T > > vector
Specialization of vector which uses allocator.
Definition: ut0new.h:2875
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:2439