MySQL 8.4.0
Source Code Documentation
service_requirements.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2024, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef SERVICE_REQUIREMENTS_INCLUDED
25#define SERVICE_REQUIREMENTS_INCLUDED
26
27#include <memory>
28#include <string>
29#include <vector>
30
31namespace keyring_common {
32namespace service_implementation {
33
34using config_vector = std::vector<std::pair<std::string, std::string>>;
35
37 public:
38 /**
39 Keyring component status
40
41 @returns status of keyring component
42 @retval true Keyring component is initialized
43 @retval false Keyring component is not initialized
44 */
46
47 /**
48 Create configuration vector
49
50 @param [in] metadata Output vector for status metadata
51
52 @returns status of metadata vector creation
53 @returns false Success
54 @returns true Failure
55 */
56 bool create_config(std::unique_ptr<config_vector> &metadata);
57};
58} // namespace service_implementation
59} // namespace keyring_common
60
61#endif /* SERVICE_REQUIREMENTS_INCLUDED */
bool create_config(std::unique_ptr< config_vector > &metadata)
Create configuration vector.
Definition: component_callbacks.cc:33
bool keyring_initialized()
Keyring component status.
Definition: component_callbacks.cc:29
std::vector< std::pair< std::string, std::string > > config_vector
Definition: service_requirements.h:34
Definition: keyring_encryption_service_definition.h:32