MySQL 9.0.0
Source Code Documentation
cursor_by_user.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_USER_H
26#define CURSOR_BY_USER_H
27
28/**
29 @file storage/perfschema/cursor_by_user.h
30 Cursor CURSOR_BY_USER (declarations).
31*/
32
36
37/**
38 @addtogroup performance_schema_tables
39 @{
40*/
41
43 public:
44 explicit PFS_index_users(PFS_engine_key *key_1) : PFS_engine_index(key_1) {}
45
46 ~PFS_index_users() override = default;
47
48 virtual bool match(PFS_user *pfs) = 0;
49};
50
51/** Cursor CURSOR_BY_USER. */
53 public:
54 static ha_rows get_row_count();
55
56 void reset_position() override;
57
58 int rnd_next() override;
59 int rnd_pos(const void *pos) override;
60
61 int index_next() override;
62
63 protected:
64 explicit cursor_by_user(const PFS_engine_table_share *share);
65
66 public:
67 ~cursor_by_user() override = default;
68
69 protected:
70 virtual int make_row(PFS_user *user) = 0;
71
72 private:
73 /** Current position. */
75 /** Next position. */
77
78 protected:
80};
81
82/** @} */
83#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_user.h:42
virtual bool match(PFS_user *pfs)=0
PFS_index_users(PFS_engine_key *key_1)
Definition: cursor_by_user.h:44
~PFS_index_users() override=default
Cursor CURSOR_BY_USER.
Definition: cursor_by_user.h:52
PFS_simple_index m_pos
Current position.
Definition: cursor_by_user.h:74
int index_next() override
Find key in index, read record.
Definition: cursor_by_user.cc:78
PFS_index_users * m_opened_index
Definition: cursor_by_user.h:79
PFS_simple_index m_next_pos
Next position.
Definition: cursor_by_user.h:76
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: cursor_by_user.cc:46
static ha_rows get_row_count()
Definition: cursor_by_user.cc:36
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: cursor_by_user.cc:65
cursor_by_user(const PFS_engine_table_share *share)
Definition: cursor_by_user.cc:40
int rnd_next() override
Fetch the next row in this cursor.
Definition: cursor_by_user.cc:51
~cursor_by_user() override=default
virtual int make_row(PFS_user *user)=0
my_off_t ha_rows
Definition: my_base.h:1141
char * user
Definition: mysqladmin.cc:66
Performance schema tables (declarations).
Performance schema user (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
Per user statistics.
Definition: pfs_user.h:63
Helpers to implement a performance schema table.