MySQL 9.0.0
Source Code Documentation
cursor_by_thread.h
Go to the documentation of this file.
1/* Copyright (c) 2011, 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
25#ifndef CURSOR_BY_THREAD_H
26#define CURSOR_BY_THREAD_H
27
28/**
29 @file storage/perfschema/cursor_by_thread.h
30 Cursor CURSOR_BY_THREAD (declarations).
31*/
32
36
37/**
38 @addtogroup performance_schema_tables
39 @{
40*/
41
43 public:
45
47 : PFS_engine_index(key_1, key_2) {}
48
49 ~PFS_index_threads() override = default;
50
51 virtual bool match(PFS_thread *pfs) = 0;
52};
53
54/** Cursor CURSOR_BY_THREAD. */
56 public:
57 static ha_rows get_row_count();
58
59 void reset_position() override;
60
61 int rnd_next() override;
62 int rnd_pos(const void *pos) override;
63
64 int index_next() override;
65
66 protected:
67 explicit cursor_by_thread(const PFS_engine_table_share *share);
68
69 public:
70 ~cursor_by_thread() override = default;
71
72 protected:
73 virtual int make_row(PFS_thread *thread) = 0;
74
75 private:
76 /** Current position. */
78 /** Next position. */
80
81 protected:
83};
84
85/** @} */
86#endif
Definition: pfs_engine_table.h:300
Definition: pfs_engine_table.h:268
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:70
Definition: cursor_by_thread.h:42
virtual bool match(PFS_thread *pfs)=0
PFS_index_threads(PFS_engine_key *key_1)
Definition: cursor_by_thread.h:44
PFS_index_threads(PFS_engine_key *key_1, PFS_engine_key *key_2)
Definition: cursor_by_thread.h:46
~PFS_index_threads() override=default
Cursor CURSOR_BY_THREAD.
Definition: cursor_by_thread.h:55
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: cursor_by_thread.cc:66
int rnd_next() override
Fetch the next row in this cursor.
Definition: cursor_by_thread.cc:52
static ha_rows get_row_count()
Definition: cursor_by_thread.cc:37
~cursor_by_thread() override=default
PFS_simple_index m_pos
Current position.
Definition: cursor_by_thread.h:77
PFS_index_threads * m_opened_index
Definition: cursor_by_thread.h:82
PFS_simple_index m_next_pos
Next position.
Definition: cursor_by_thread.h:79
int index_next() override
Find key in index, read record.
Definition: cursor_by_thread.cc:79
cursor_by_thread(const PFS_engine_table_share *share)
Definition: cursor_by_thread.cc:41
virtual int make_row(PFS_thread *thread)=0
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: cursor_by_thread.cc:47
my_off_t ha_rows
Definition: my_base.h:1141
Performance schema tables (declarations).
Performance schema instruments (declarations).
static const LEX_CSTRING pfs
Definition: sql_show_processlist.cc:66
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:358
Position of a cursor, for simple iterations.
Definition: pfs_engine_table.h:566
Instrumented thread implementation.
Definition: pfs_instr.h:375
Helpers to implement a performance schema table.