MySQL 8.4.0
Source Code Documentation
table_error_log.h
Go to the documentation of this file.
1/* Copyright (c) 2020, 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_ERROR_LOG_H
25#define TABLE_ERROR_LOG_H
26
27/**
28 @file storage/perfschema/table_error_log.h
29 TABLE ERROR_LOG (declarations for table,
30 indices, and keys).
31*/
32
33#include <sys/types.h>
34#include <time.h>
35
36#include "my_inttypes.h"
42
43/**
44 @addtogroup performance_schema_error_log
45 @{
46*/
47
48/*
49 These values have a fixed relationship with
50 (SYSTEM|ERROR|WARNING|INFORMATION)_LEVEL
51 from <my_loglevel.h> and must not be changed
52 except in response to changes in that header.
53*/
59};
60
61/**
62 Key for the LOGGED (timestamp/primary key) column.
63
64 We process these values as ulongongs, so inherit from PFS_key_ulonglong.
65 The keys are stored as TIMESTAMP(6) however, so we use a custom reader
66 that reads that format and returns a ulonglong.
67*/
69 public:
70 explicit PFS_key_error_log_logged(const char *name)
72
73 ~PFS_key_error_log_logged() override = default;
74
75 void read(PFS_key_reader &reader, enum ha_rkey_function find_flag) override {
76 m_find_flag = reader.read_timestamp(find_flag, m_is_null, &m_key_value, 6);
77 }
78
79 bool match(const log_sink_pfs_event *row);
80
81 private:
82 ulonglong m_key_value; // TIMESTAMP(6) (microsecond precision) as ulonglong
83};
84
85/// index on the LOGGED (timestamp/primary key) column
87 public:
89 : PFS_index_error_log(&m_key), m_key("LOGGED") {}
90
91 ~PFS_index_error_log_by_logged() override = default;
92
93 bool match(log_sink_pfs_event *row) override;
94
95 private:
97};
98
99/// key for the THREAD_ID column
101 public:
102 explicit PFS_key_error_log_thread_id(const char *name)
104
105 ~PFS_key_error_log_thread_id() override = default;
106
107 bool match(const log_sink_pfs_event *row);
108};
109
110/// index on the THREAD_ID column
112 public:
114 : PFS_index_error_log(&m_key), m_key("THREAD_ID") {}
115
117
118 bool match(log_sink_pfs_event *row) override;
119
120 private:
122};
123
124/// key for the PRIO column
126 public:
127 explicit PFS_key_error_log_prio(const char *name)
129
130 ~PFS_key_error_log_prio() override = default;
131
132 void read(PFS_key_reader &reader, enum ha_rkey_function find_flag) override;
133
134 bool match(const log_sink_pfs_event *row);
135
136 private:
138};
139
140/// index on the PRIO column
142 public:
144
145 ~PFS_index_error_log_by_prio() override = default;
146
147 bool match(log_sink_pfs_event *row) override;
148
149 private:
151};
152
153/// key for the ERROR_CODE column
155 public:
157 : PFS_index_error_log(&m_key), m_key("ERROR_CODE") {}
158
160
161 bool match(log_sink_pfs_event *row) override;
162
163 private:
165};
166
167/// index on the ERROR_CODE column
169 public:
171 : PFS_index_error_log(&m_key), m_key("SUBSYSTEM") {}
172
173 ~PFS_index_error_log_by_subsys() override = default;
174
175 bool match(log_sink_pfs_event *row) override;
176
177 private:
179};
180
181/** Table PERFORMANCE_SCHEMA.ERROR_LOG. */
183 public:
184 /** Table share */
186 /** Table builder */
188
189 protected:
190 /** Fill in a row's fields from this class's buffer. */
191 int read_row_values(TABLE *table, unsigned char *buf, Field **fields,
192 bool read_all) override;
193
194 protected:
196 /** Create an index for the column with the ordinal idx. */
197 int index_init(uint idx, bool sorted) override;
198
199 public:
200 ~table_error_log() override = default;
201
202 private:
203 /** Copy an event from the ring-buffer into this class's buffer. */
204 int make_row(log_sink_pfs_event *e) override;
205
206 /** Table share lock. */
208 /** Table definition. */
210
211 /** Current row. */
212 log_sink_pfs_event m_header; ///< event-header copied from ring-buffer
213 char m_message[LOG_BUFF_MAX]; ///< message (DATA column) from ring-buffer
214};
215
216/** @} */
217
218#endif
Definition: field.h:575
bool m_is_null
Definition: pfs_engine_table.h:281
enum ha_rkey_function m_find_flag
Definition: pfs_engine_table.h:280
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:70
key for the ERROR_CODE column
Definition: table_error_log.h:154
PFS_key_name m_key
Definition: table_error_log.h:164
bool match(log_sink_pfs_event *row) override
Match function for the index on the ERROR_CODE column.
Definition: table_error_log.cc:201
~PFS_index_error_log_by_error_code() override=default
PFS_index_error_log_by_error_code()
Definition: table_error_log.h:156
index on the LOGGED (timestamp/primary key) column
Definition: table_error_log.h:86
~PFS_index_error_log_by_logged() override=default
PFS_index_error_log_by_logged()
Definition: table_error_log.h:88
bool match(log_sink_pfs_event *row) override
Match function for the index on the LOGGED column.
Definition: table_error_log.cc:117
PFS_key_error_log_logged m_key
Definition: table_error_log.h:96
index on the PRIO column
Definition: table_error_log.h:141
PFS_index_error_log_by_prio()
Definition: table_error_log.h:143
bool match(log_sink_pfs_event *row) override
Match function for the index on the PRIO column.
Definition: table_error_log.cc:191
PFS_key_error_log_prio m_key
Definition: table_error_log.h:150
~PFS_index_error_log_by_prio() override=default
index on the ERROR_CODE column
Definition: table_error_log.h:168
bool match(log_sink_pfs_event *row) override
Match function for the index on the SUBSYSTEM column.
Definition: table_error_log.cc:211
PFS_index_error_log_by_subsys()
Definition: table_error_log.h:170
PFS_key_name m_key
Definition: table_error_log.h:178
~PFS_index_error_log_by_subsys() override=default
index on the THREAD_ID column
Definition: table_error_log.h:111
~PFS_index_error_log_by_thread_id() override=default
PFS_key_error_log_thread_id m_key
Definition: table_error_log.h:121
PFS_index_error_log_by_thread_id()
Definition: table_error_log.h:113
bool match(log_sink_pfs_event *row) override
Match function for the index on the THREAD_ID column.
Definition: table_error_log.cc:132
Generic index for error_log table.
Definition: cursor_by_error_log.h:242
Key for the LOGGED (timestamp/primary key) column.
Definition: table_error_log.h:68
ulonglong m_key_value
Definition: table_error_log.h:82
PFS_key_error_log_logged(const char *name)
Definition: table_error_log.h:70
void read(PFS_key_reader &reader, enum ha_rkey_function find_flag) override
Definition: table_error_log.h:75
~PFS_key_error_log_logged() override=default
bool match(const log_sink_pfs_event *row)
Match function / comparator for the key on the LOGGED column.
Definition: table_error_log.cc:111
key for the PRIO column
Definition: table_error_log.h:125
void read(PFS_key_reader &reader, enum ha_rkey_function find_flag) override
Read function for the key on the PRIO column.
Definition: table_error_log.cc:177
enum enum_prio m_prio
Definition: table_error_log.h:137
PFS_key_error_log_prio(const char *name)
Definition: table_error_log.h:127
~PFS_key_error_log_prio() override=default
bool match(const log_sink_pfs_event *row)
Match function / comparator for the key on the PRIO column.
Definition: table_error_log.cc:142
key for the THREAD_ID column
Definition: table_error_log.h:100
~PFS_key_error_log_thread_id() override=default
bool match(const log_sink_pfs_event *row)
Match function / comparator for the key on the THREAD_ID column.
Definition: table_error_log.cc:127
PFS_key_error_log_thread_id(const char *name)
Definition: table_error_log.h:102
Definition: table_helper.h:1554
Definition: table_helper.h:1700
Definition: table_helper.h:1257
Class to hold information regarding a table to be created on behalf of a plugin.
Definition: plugin_table.h:40
Cursor CURSOR_BY_ERROR_LOG for error_log table.
Definition: cursor_by_error_log.h:252
Table PERFORMANCE_SCHEMA.ERROR_LOG.
Definition: table_error_log.h:182
static THR_LOCK m_table_lock
Table share lock.
Definition: table_error_log.h:207
static PFS_engine_table_share m_share
Table share.
Definition: table_error_log.h:185
table_error_log()
Definition: table_error_log.cc:108
static Plugin_table m_table_def
Table definition.
Definition: table_error_log.h:209
log_sink_pfs_event m_header
Current row.
Definition: table_error_log.h:212
static PFS_engine_table * create(PFS_engine_table_share *)
Table builder.
Definition: table_error_log.cc:103
int index_init(uint idx, bool sorted) override
Create an index for the column with the ordinal idx.
Definition: table_error_log.cc:228
int read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) override
Fill in a row's fields from this class's buffer.
Definition: table_error_log.cc:288
int make_row(log_sink_pfs_event *e) override
Copy an event from the ring-buffer into this class's buffer.
Definition: table_error_log.cc:267
char m_message[LOG_BUFF_MAX]
message (DATA column) from ring-buffer
Definition: table_error_log.h:213
~table_error_log() override=default
Cursor CURSOR_BY_ERROR_LOG (declarations); PFS_ringbuffer_index, PFS_index_error_log.
enum ha_rkey_function read_timestamp(enum ha_rkey_function find_flag, bool &isnull, ulonglong *value, uint dec)
Definition: pfs_engine_table.cc:1340
enum_prio
Definition: table_error_log.h:54
@ PS_ERROR_LOG_PRIO_NOTE
Definition: table_error_log.h:58
@ PS_ERROR_LOG_PRIO_WARNING
Definition: table_error_log.h:57
@ PS_ERROR_LOG_PRIO_SYSTEM
Definition: table_error_log.h:55
@ PS_ERROR_LOG_PRIO_ERROR
Definition: table_error_log.h:56
#define LOG_BUFF_MAX
advisory.
Definition: log_shared.h:225
ha_rkey_function
Definition: my_base.h:78
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
Data types for columns used in the performance schema tables (declarations)
This file contains.
case opt name
Definition: sslopt-case.h:29
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:358
PFS_key_reader: Convert key into internal format.
Definition: pfs_engine_table.h:196
Definition: table.h:1405
Definition: thr_lock.h:139
Definition: log_sink_perfschema.h:59
Helpers to implement a performance schema table.
Include file for Sun RPC to compile out of the box.