MySQL 9.0.0
Source Code Documentation
table_keyring_keys.h
Go to the documentation of this file.
1/* Copyright (c) 2012, 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 TABLE_KEYRING_KEYS_H
25#define TABLE_KEYRING_KEYS_H
26
27/**
28 @file storage/perfschema/table_keyring_keys.h
29 TABLE KEYRING_KEYS.
30*/
31
32#include <sys/types.h>
34
35/**
36 A row of PERFORMANCE_SCHEMA.KEYRING_KEYS table.
37*/
39 /** Column KEY_ID. In UTF8MB4 */
40 std::string m_key_id;
41 /** Column KEY_OWNER. In UTF8MB4 */
42 std::string m_key_owner;
43 /** Column BACK_END_KEY_ID. In UTF8MB4 */
44 std::string m_backend_key_id;
45};
46
47/**
48 @addtogroup performance_schema_tables
49 @{
50*/
51
52/** Table PERFORMANCE_SCHEMA.KEYRING_KEYS. */
54 public:
55 /** Table share */
57 /** Table builder */
59 static ha_rows get_row_count();
60
61 void reset_position() override;
62 int rnd_next() override;
63 int rnd_pos(const void *pos) override;
64
65 private:
67 int read_row_values(TABLE *table, unsigned char *buf, Field **fields,
68 bool read_all) override;
70
71 private:
72 /** Safe copy of the keyring keys. */
73 std::vector<row_keyring_keys> m_copy_keyring_keys;
74
75 /** Current row. */
77 /** Current position. */
79 /** Next position. */
81
82 /** Table share lock. */
84 /** Table definition. */
86};
87
88/** @} */
89
90#endif
Definition: field.h:577
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:70
Class to hold information regarding a table to be created on behalf of a plugin.
Definition: plugin_table.h:40
Table PERFORMANCE_SCHEMA.KEYRING_KEYS.
Definition: table_keyring_keys.h:53
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: table_keyring_keys.cc:115
bool copy_keys_from_keyring()
Copy the keys from the keyring vault.
Definition: table_keyring_keys.cc:240
static THR_LOCK s_table_lock
Table share lock.
Definition: table_keyring_keys.h:83
PFS_simple_index m_pos
Current position.
Definition: table_keyring_keys.h:78
row_keyring_keys * m_row
Current row.
Definition: table_keyring_keys.h:76
int read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) override
Read the current row values.
Definition: table_keyring_keys.cc:134
static Plugin_table s_table_def
Table definition.
Definition: table_keyring_keys.h:85
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: table_keyring_keys.cc:110
static PFS_engine_table_share s_share
Table share.
Definition: table_keyring_keys.h:56
static ha_rows get_row_count()
Definition: table_keyring_keys.cc:101
std::vector< row_keyring_keys > m_copy_keyring_keys
Safe copy of the keyring keys.
Definition: table_keyring_keys.h:73
table_keyring_keys()
Definition: table_keyring_keys.cc:89
PFS_simple_index m_next_pos
Next position.
Definition: table_keyring_keys.h:80
int rnd_next() override
Fetch the next row in this cursor.
Definition: table_keyring_keys.cc:122
static PFS_engine_table * create(PFS_engine_table_share *)
Table builder.
Definition: table_keyring_keys.cc:85
my_off_t ha_rows
Definition: my_base.h:1141
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:358
Position of a cursor, for simple iterations.
Definition: pfs_engine_table.h:566
Definition: table.h:1407
Definition: thr_lock.h:139
A row of PERFORMANCE_SCHEMA.KEYRING_KEYS table.
Definition: table_keyring_keys.h:38
std::string m_key_id
Column KEY_ID.
Definition: table_keyring_keys.h:40
std::string m_backend_key_id
Column BACK_END_KEY_ID.
Definition: table_keyring_keys.h:44
std::string m_key_owner
Column KEY_OWNER.
Definition: table_keyring_keys.h:42
Helpers to implement a performance schema table.