-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathitem_pfs_func.cc
304 lines (255 loc) · 8.32 KB
/
item_pfs_func.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file
@brief
This file defines all performance schema native functions
*/
#include "sql/item_pfs_func.h"
#include <assert.h>
#include <cstdint> // uint64_t
#include <cstdio>
#include <cstdlib> // abs
#include "my_psi_config.h"
#include "my_sys.h"
#include "mysql/components/services/bits/psi_thread_bits.h"
#include "mysql/strings/m_ctype.h"
#include "mysqld_error.h"
#include "pfs_thread_provider.h"
#include "sql/field.h"
#include "sql/item.h"
#include "sql/parse_tree_node_base.h" // Parse_context
#include "sql/sql_class.h"
#include "sql/sql_lex.h"
extern bool pfs_enabled;
/** ps_current_thread_id() */
bool Item_func_pfs_current_thread_id::do_itemize(Parse_context *pc,
Item **res) {
if (skip_itemize(res)) return false;
if (super::do_itemize(pc, res)) return true;
pc->thd->lex->safe_to_cache_query = false; /* result can vary */
return false;
}
bool Item_func_pfs_current_thread_id::resolve_type(THD *) {
unsigned_flag = true;
set_nullable(true);
return false;
}
bool Item_func_pfs_current_thread_id::fix_fields(THD *thd, Item **ref) {
if (super::fix_fields(thd, ref)) return true;
thd->thread_specific_used = true; /* for binlog */
return false;
}
longlong Item_func_pfs_current_thread_id::val_int() {
assert(fixed);
/* Verify Performance Schema available. */
if (!pfs_enabled) {
my_printf_error(ER_WRONG_PERFSCHEMA_USAGE,
"'%s': The Performance Schema is not enabled.", MYF(0),
func_name());
return error_int();
}
#ifdef HAVE_PSI_THREAD_INTERFACE
/* Return the thread id for this connection. */
m_thread_id = PSI_THREAD_CALL(get_current_thread_internal_id)();
#endif
/* Valid thread id is > 0. */
if (m_thread_id == 0) {
return error_int();
}
return static_cast<longlong>(m_thread_id);
}
/** ps_thread_id() */
bool Item_func_pfs_thread_id::do_itemize(Parse_context *pc, Item **res) {
if (skip_itemize(res)) return false;
if (super::do_itemize(pc, res)) return true;
pc->thd->lex->safe_to_cache_query = false; /* result can vary */
return false;
}
bool Item_func_pfs_thread_id::resolve_type(THD *thd) {
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_LONGLONG)) return true;
unsigned_flag = true;
set_nullable(true);
return false;
}
longlong Item_func_pfs_thread_id::val_int() {
assert(fixed);
/* Verify Performance Schema available. */
if (!pfs_enabled) {
my_printf_error(ER_WRONG_PERFSCHEMA_USAGE,
"'%s': The Performance Schema is not enabled.", MYF(0),
func_name());
return error_int();
}
/* Evaluate the function argument. */
const longlong processlist_id = args[0]->val_int();
/* Verify argument type. */
if (!is_integer_type(args[0]->data_type())) {
return error_int();
}
/* If argument is null, return null. */
null_value = args[0]->null_value;
if (null_value) {
return error_int();
}
/* Verify argument sign. */
if (processlist_id < 0) {
return error_int();
}
#ifdef HAVE_PSI_THREAD_INTERFACE
/* Get the thread id assigned to the processlist id. */
PSI_thread *psi = PSI_THREAD_CALL(get_thread_by_id)(processlist_id);
if (psi) {
m_thread_id = PSI_THREAD_CALL(get_thread_internal_id)(psi);
}
#endif
/* Valid thread id is > 0. */
if (m_thread_id == 0) {
return error_int();
}
return static_cast<longlong>(m_thread_id);
}
/** format_bytes() */
bool Item_func_pfs_format_bytes::resolve_type(THD *thd) {
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_DOUBLE)) return true;
/* Format is 'AAAA.BB UUU' = 11 characters or 'AAAA bytes' = 10 characters. */
set_data_type_string(11U, &my_charset_utf8mb3_general_ci);
return false;
}
String *Item_func_pfs_format_bytes::val_str(String *) {
/* Evaluate argument value. */
const double bytes = args[0]->val_real();
/* If input is null, return null. */
null_value = args[0]->null_value;
if (null_value) {
return error_str();
}
/* Declaring 'volatile' as workaround for 32-bit optimization bug. */
volatile double bytes_abs = std::abs(bytes);
constexpr uint64_t kib{1024};
constexpr uint64_t mib{1024 * kib};
constexpr uint64_t gib{1024 * mib};
constexpr uint64_t tib{1024 * gib};
constexpr uint64_t pib{1024 * tib};
constexpr uint64_t eib{1024 * pib};
uint64_t divisor;
int len;
const char *unit;
if (bytes_abs >= eib) {
divisor = eib;
unit = "EiB";
} else if (bytes_abs >= pib) {
divisor = pib;
unit = "PiB";
} else if (bytes_abs >= tib) {
divisor = tib;
unit = "TiB";
} else if (bytes_abs >= gib) {
divisor = gib;
unit = "GiB";
} else if (bytes_abs >= mib) {
divisor = mib;
unit = "MiB";
} else if (bytes_abs >= kib) {
divisor = kib;
unit = "KiB";
} else {
divisor = 1;
unit = "bytes";
}
if (divisor == 1) {
len = sprintf(m_value_buffer, "%4d %s", (int)bytes, unit);
} else {
const double value = bytes / divisor;
if (std::abs(value) >= 100000.0) {
len = sprintf(m_value_buffer, "%4.2e %s", value, unit);
} else {
len = sprintf(m_value_buffer, "%4.2f %s", value, unit);
}
}
m_value.set(m_value_buffer, len, &my_charset_utf8mb3_general_ci);
return &m_value;
}
/** format_pico_time() */
bool Item_func_pfs_format_pico_time::resolve_type(THD *thd) {
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_DOUBLE)) return true;
set_nullable(true);
/* Format is 'AAAA.BB UUU' = 11 characters or 'AAA ps' = 6 characters. */
set_data_type_string(11U, &my_charset_utf8mb3_general_ci);
return false;
}
String *Item_func_pfs_format_pico_time::val_str(String *) {
/* Evaluate the argument */
const double time_val = args[0]->val_real();
/* If argument is null, return null. */
null_value = args[0]->null_value;
if (null_value) {
return error_str();
}
constexpr uint64_t nano{1000};
constexpr uint64_t micro{1000 * nano};
constexpr uint64_t milli{1000 * micro};
constexpr uint64_t sec{1000 * milli};
constexpr uint64_t min{60 * sec};
constexpr uint64_t hour{60 * min};
constexpr uint64_t day{24 * hour};
/* Declaring 'volatile' as workaround for 32-bit optimization bug. */
volatile double time_abs = std::abs(time_val);
uint64_t divisor;
int len;
const char *unit;
/* SI-approved time units. */
if (time_abs >= day) {
divisor = day;
unit = "d";
} else if (time_abs >= hour) {
divisor = hour;
unit = "h";
} else if (time_abs >= min) {
divisor = min;
unit = "min";
} else if (time_abs >= sec) {
divisor = sec;
unit = "s";
} else if (time_abs >= milli) {
divisor = milli;
unit = "ms";
} else if (time_abs >= micro) {
divisor = micro;
unit = "us";
} else if (time_abs >= nano) {
divisor = nano;
unit = "ns";
} else {
divisor = 1;
unit = "ps";
}
if (divisor == 1) {
len = sprintf(m_value_buffer, "%3d %s", (int)time_val, unit);
} else {
const double value = time_val / divisor;
if (std::abs(value) >= 100000.0) {
len = sprintf(m_value_buffer, "%4.2e %s", value, unit);
} else {
len = sprintf(m_value_buffer, "%4.2f %s", value, unit);
}
}
m_value.set(m_value_buffer, len, &my_charset_utf8mb3_general_ci);
return &m_value;
}