MySQL 8.4.0
Source Code Documentation
cursor_by_host.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_HOST_H
26#define CURSOR_BY_HOST_H
27
28/**
29 @file storage/perfschema/cursor_by_host.h
30 Cursor CURSOR_BY_HOST (declarations).
31*/
32
36
37/**
38 @addtogroup performance_schema_tables
39 @{
40*/
41
43 public:
44 explicit PFS_index_hosts(PFS_engine_key *key_1) : PFS_engine_index(key_1) {}
45
46 ~PFS_index_hosts() override = default;
47
48 virtual bool match(PFS_host *pfs) = 0;
49};
50
51/** Cursor CURSOR_BY_HOST. */
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_host(const PFS_engine_table_share *share);
65
66 public:
67 ~cursor_by_host() override = default;
68
69 protected:
70 virtual int make_row(PFS_host *host) = 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_host.h:42
virtual bool match(PFS_host *pfs)=0
~PFS_index_hosts() override=default
PFS_index_hosts(PFS_engine_key *key_1)
Definition: cursor_by_host.h:44
Cursor CURSOR_BY_HOST.
Definition: cursor_by_host.h:52
cursor_by_host(const PFS_engine_table_share *share)
Definition: cursor_by_host.cc:40
int index_next() override
Find key in index, read record.
Definition: cursor_by_host.cc:75
virtual int make_row(PFS_host *host)=0
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: cursor_by_host.cc:62
~cursor_by_host() override=default
PFS_simple_index m_next_pos
Next position.
Definition: cursor_by_host.h:76
PFS_simple_index m_pos
Current position.
Definition: cursor_by_host.h:74
PFS_index_hosts * m_opened_index
Definition: cursor_by_host.h:79
static ha_rows get_row_count()
Definition: cursor_by_host.cc:36
int rnd_next() override
Fetch the next row in this cursor.
Definition: cursor_by_host.cc:48
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: cursor_by_host.cc:43
my_off_t ha_rows
Definition: my_base.h:1141
const char * host
Definition: mysqladmin.cc:65
Performance schema tables (declarations).
Performance schema host (declarations).
static const LEX_CSTRING pfs
Definition: sql_show_processlist.cc:66
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:358
Per host statistics.
Definition: pfs_host.h:64
Position of a cursor, for simple iterations.
Definition: pfs_engine_table.h:558
Helpers to implement a performance schema table.