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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
/* Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
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 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 Street, Fifth Floor, Boston, MA 02110-1301, USA */
#ifndef PFS_TABLE_HELPER_H
#define PFS_TABLE_HELPER_H
#include "pfs_column_types.h"
#include "pfs_stat.h"
#include "pfs_timer.h"
#include "pfs_engine_table.h"
#include "pfs_instr_class.h"
#include "pfs_digest.h"
/*
Write MD5 hash value in a string to be used
as DIGEST for the statement.
*/
#define MD5_HASH_TO_STRING(_hash, _str) \
sprintf(_str, "%02x%02x%02x%02x%02x%02x%02x%02x" \
"%02x%02x%02x%02x%02x%02x%02x%02x", \
_hash[0], _hash[1], _hash[2], _hash[3], \
_hash[4], _hash[5], _hash[6], _hash[7], \
_hash[8], _hash[9], _hash[10], _hash[11], \
_hash[12], _hash[13], _hash[14], _hash[15])
#define MD5_HASH_TO_STRING_LENGTH 32
struct PFS_host;
struct PFS_user;
struct PFS_account;
/**
@file storage/perfschema/table_helper.h
Performance schema table helpers (declarations).
*/
/**
@addtogroup Performance_schema_tables
@{
*/
/** Namespace, internal views used within table setup_instruments. */
struct PFS_instrument_view_constants
{
static const uint FIRST_VIEW= 1;
static const uint VIEW_MUTEX= 1;
static const uint VIEW_RWLOCK= 2;
static const uint VIEW_COND= 3;
static const uint VIEW_FILE= 4;
static const uint VIEW_TABLE= 5;
static const uint VIEW_SOCKET= 6;
static const uint VIEW_IDLE= 7;
static const uint LAST_VIEW= 7;
};
/** Namespace, internal views used within object summaries. */
struct PFS_object_view_constants
{
static const uint FIRST_VIEW= 1;
static const uint VIEW_TABLE= 1;
static const uint LAST_VIEW= 1;
/* Future use */
static const uint VIEW_EVENT= 2;
static const uint VIEW_PROCEDURE= 3;
static const uint VIEW_FUNCTION= 4;
};
/** Row fragment for column HOST. */
struct PFS_host_row
{
/** Column HOST. */
char m_hostname[HOSTNAME_LENGTH];
/** Length in bytes of @c m_hostname. */
uint m_hostname_length;
/** Build a row from a memory buffer. */
int make_row(PFS_host *pfs);
/** Set a table field from the row. */
void set_field(Field *f);
};
/** Row fragment for column USER. */
struct PFS_user_row
{
/** Column USER. */
char m_username[USERNAME_LENGTH];
/** Length in bytes of @c m_username. */
uint m_username_length;
/** Build a row from a memory buffer. */
int make_row(PFS_user *pfs);
/** Set a table field from the row. */
void set_field(Field *f);
};
/** Row fragment for columns USER, HOST. */
struct PFS_account_row
{
/** Column USER. */
char m_username[USERNAME_LENGTH];
/** Length in bytes of @c m_username. */
uint m_username_length;
/** Column HOST. */
char m_hostname[HOSTNAME_LENGTH];
/** Length in bytes of @c m_hostname. */
uint m_hostname_length;
/** Build a row from a memory buffer. */
int make_row(PFS_account *pfs);
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
/** Row fragment for columns DIGEST, DIGEST_TEXT. */
struct PFS_digest_row
{
/** Column SCHEMA_NAME. */
char m_schema_name[NAME_LEN];
/** Length in bytes of @c m_schema_name. */
uint m_schema_name_length;
/** Column DIGEST. */
char m_digest[COL_DIGEST_SIZE];
/** Length in bytes of @c m_digest. */
uint m_digest_length;
/** Column DIGEST_TEXT. */
char m_digest_text[COL_DIGEST_TEXT_SIZE];
/** Length in bytes of @c m_digest_text. */
uint m_digest_text_length;
/** Build a row from a memory buffer. */
int make_row(PFS_statements_digest_stat*);
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
/** Row fragment for column EVENT_NAME. */
struct PFS_event_name_row
{
/** Column EVENT_NAME. */
const char *m_name;
/** Length in bytes of @c m_name. */
uint m_name_length;
/** Build a row from a memory buffer. */
inline void make_row(PFS_instr_class *pfs)
{
m_name= pfs->m_name;
m_name_length= pfs->m_name_length;
}
/** Set a table field from the row. */
inline void set_field(Field *f)
{
PFS_engine_table::set_field_varchar_utf8(f, m_name, m_name_length);
}
};
/** Row fragment for columns OBJECT_TYPE, SCHEMA_NAME, OBJECT_NAME. */
struct PFS_object_row
{
/** Column OBJECT_TYPE. */
enum_object_type m_object_type;
/** Column SCHEMA_NAME. */
char m_schema_name[NAME_LEN];
/** Length in bytes of @c m_schema_name. */
uint m_schema_name_length;
/** Column OBJECT_NAME. */
char m_object_name[NAME_LEN];
/** Length in bytes of @c m_object_name. */
uint m_object_name_length;
/** Build a row from a memory buffer. */
int make_row(PFS_table_share *pfs);
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
/** Row fragment for columns OBJECT_TYPE, SCHEMA_NAME, OBJECT_NAME, INDEX_NAME. */
struct PFS_index_row
{
PFS_object_row m_object_row;
/** Column INDEX_NAME. */
char m_index_name[NAME_LEN];
/** Length in bytes of @c m_index_name. */
uint m_index_name_length;
/** Build a row from a memory buffer. */
int make_row(PFS_table_share *pfs, uint table_index);
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
/** Row fragment for single statistics columns (COUNT, SUM, MIN, AVG, MAX) */
struct PFS_stat_row
{
/** Column COUNT_STAR. */
ulonglong m_count;
/** Column SUM_TIMER_WAIT. */
ulonglong m_sum;
/** Column MIN_TIMER_WAIT. */
ulonglong m_min;
/** Column AVG_TIMER_WAIT. */
ulonglong m_avg;
/** Column MAX_TIMER_WAIT. */
ulonglong m_max;
/** Build a row with timer fields from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_single_stat *stat)
{
m_count= stat->m_count;
if ((m_count != 0) && stat->has_timed_stats())
{
m_sum= normalizer->wait_to_pico(stat->m_sum);
m_min= normalizer->wait_to_pico(stat->m_min);
m_max= normalizer->wait_to_pico(stat->m_max);
m_avg= normalizer->wait_to_pico(stat->m_sum / m_count);
}
else
{
m_sum= 0;
m_min= 0;
m_avg= 0;
m_max= 0;
}
}
/** Set a table field from the row. */
void set_field(uint index, Field *f)
{
switch (index)
{
case 0: /* COUNT */
PFS_engine_table::set_field_ulonglong(f, m_count);
break;
case 1: /* SUM */
PFS_engine_table::set_field_ulonglong(f, m_sum);
break;
case 2: /* MIN */
PFS_engine_table::set_field_ulonglong(f, m_min);
break;
case 3: /* AVG */
PFS_engine_table::set_field_ulonglong(f, m_avg);
break;
case 4: /* MAX */
PFS_engine_table::set_field_ulonglong(f, m_max);
break;
default:
DBUG_ASSERT(false);
}
}
};
/** Row fragment for timer and byte count stats. Corresponds to PFS_byte_stat */
struct PFS_byte_stat_row
{
PFS_stat_row m_waits;
ulonglong m_bytes;
/** Build a row with timer and byte count fields from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_byte_stat *stat)
{
m_waits.set(normalizer, stat);
m_bytes= stat->m_bytes;
}
};
/** Row fragment for table io statistics columns. */
struct PFS_table_io_stat_row
{
PFS_stat_row m_all;
PFS_stat_row m_all_read;
PFS_stat_row m_all_write;
PFS_stat_row m_fetch;
PFS_stat_row m_insert;
PFS_stat_row m_update;
PFS_stat_row m_delete;
/** Build a row from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_table_io_stat *stat)
{
PFS_single_stat all_read;
PFS_single_stat all_write;
PFS_single_stat all;
m_fetch.set(normalizer, & stat->m_fetch);
all_read.aggregate(& stat->m_fetch);
m_insert.set(normalizer, & stat->m_insert);
m_update.set(normalizer, & stat->m_update);
m_delete.set(normalizer, & stat->m_delete);
all_write.aggregate(& stat->m_insert);
all_write.aggregate(& stat->m_update);
all_write.aggregate(& stat->m_delete);
all.aggregate(& all_read);
all.aggregate(& all_write);
m_all_read.set(normalizer, & all_read);
m_all_write.set(normalizer, & all_write);
m_all.set(normalizer, & all);
}
};
/** Row fragment for table lock statistics columns. */
struct PFS_table_lock_stat_row
{
PFS_stat_row m_all;
PFS_stat_row m_all_read;
PFS_stat_row m_all_write;
PFS_stat_row m_read_normal;
PFS_stat_row m_read_with_shared_locks;
PFS_stat_row m_read_high_priority;
PFS_stat_row m_read_no_insert;
PFS_stat_row m_read_external;
PFS_stat_row m_write_allow_write;
PFS_stat_row m_write_concurrent_insert;
PFS_stat_row m_write_delayed;
PFS_stat_row m_write_low_priority;
PFS_stat_row m_write_normal;
PFS_stat_row m_write_external;
/** Build a row from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_table_lock_stat *stat)
{
PFS_single_stat all_read;
PFS_single_stat all_write;
PFS_single_stat all;
m_read_normal.set(normalizer, & stat->m_stat[PFS_TL_READ]);
m_read_with_shared_locks.set(normalizer, & stat->m_stat[PFS_TL_READ_WITH_SHARED_LOCKS]);
m_read_high_priority.set(normalizer, & stat->m_stat[PFS_TL_READ_HIGH_PRIORITY]);
m_read_no_insert.set(normalizer, & stat->m_stat[PFS_TL_READ_NO_INSERT]);
m_read_external.set(normalizer, & stat->m_stat[PFS_TL_READ_EXTERNAL]);
all_read.aggregate(& stat->m_stat[PFS_TL_READ]);
all_read.aggregate(& stat->m_stat[PFS_TL_READ_WITH_SHARED_LOCKS]);
all_read.aggregate(& stat->m_stat[PFS_TL_READ_HIGH_PRIORITY]);
all_read.aggregate(& stat->m_stat[PFS_TL_READ_NO_INSERT]);
all_read.aggregate(& stat->m_stat[PFS_TL_READ_EXTERNAL]);
m_write_allow_write.set(normalizer, & stat->m_stat[PFS_TL_WRITE_ALLOW_WRITE]);
m_write_concurrent_insert.set(normalizer, & stat->m_stat[PFS_TL_WRITE_CONCURRENT_INSERT]);
m_write_delayed.set(normalizer, & stat->m_stat[PFS_TL_WRITE_DELAYED]);
m_write_low_priority.set(normalizer, & stat->m_stat[PFS_TL_WRITE_LOW_PRIORITY]);
m_write_normal.set(normalizer, & stat->m_stat[PFS_TL_WRITE]);
m_write_external.set(normalizer, & stat->m_stat[PFS_TL_WRITE_EXTERNAL]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE_ALLOW_WRITE]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE_CONCURRENT_INSERT]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE_DELAYED]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE_LOW_PRIORITY]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE]);
all_write.aggregate(& stat->m_stat[PFS_TL_WRITE_EXTERNAL]);
all.aggregate(& all_read);
all.aggregate(& all_write);
m_all_read.set(normalizer, & all_read);
m_all_write.set(normalizer, & all_write);
m_all.set(normalizer, & all);
}
};
/** Row fragment for stage statistics columns. */
struct PFS_stage_stat_row
{
PFS_stat_row m_timer1_row;
/** Build a row from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_stage_stat *stat)
{
m_timer1_row.set(normalizer, & stat->m_timer1_stat);
}
/** Set a table field from the row. */
void set_field(uint index, Field *f)
{
m_timer1_row.set_field(index, f);
}
};
/** Row fragment for statement statistics columns. */
struct PFS_statement_stat_row
{
PFS_stat_row m_timer1_row;
ulonglong m_error_count;
ulonglong m_warning_count;
ulonglong m_rows_affected;
ulonglong m_lock_time;
ulonglong m_rows_sent;
ulonglong m_rows_examined;
ulonglong m_created_tmp_disk_tables;
ulonglong m_created_tmp_tables;
ulonglong m_select_full_join;
ulonglong m_select_full_range_join;
ulonglong m_select_range;
ulonglong m_select_range_check;
ulonglong m_select_scan;
ulonglong m_sort_merge_passes;
ulonglong m_sort_range;
ulonglong m_sort_rows;
ulonglong m_sort_scan;
ulonglong m_no_index_used;
ulonglong m_no_good_index_used;
/** Build a row from a memory buffer. */
inline void set(time_normalizer *normalizer, const PFS_statement_stat *stat)
{
m_timer1_row.set(normalizer, & stat->m_timer1_stat);
m_error_count= stat->m_error_count;
m_warning_count= stat->m_warning_count;
m_lock_time= stat->m_lock_time * MICROSEC_TO_PICOSEC;
m_rows_affected= stat->m_rows_affected;
m_rows_sent= stat->m_rows_sent;
m_rows_examined= stat->m_rows_examined;
m_created_tmp_disk_tables= stat->m_created_tmp_disk_tables;
m_created_tmp_tables= stat->m_created_tmp_tables;
m_select_full_join= stat->m_select_full_join;
m_select_full_range_join= stat->m_select_full_range_join;
m_select_range= stat->m_select_range;
m_select_range_check= stat->m_select_range_check;
m_select_scan= stat->m_select_scan;
m_sort_merge_passes= stat->m_sort_merge_passes;
m_sort_range= stat->m_sort_range;
m_sort_rows= stat->m_sort_rows;
m_sort_scan= stat->m_sort_scan;
m_no_index_used= stat->m_no_index_used;
m_no_good_index_used= stat->m_no_good_index_used;
}
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
struct PFS_connection_stat_row
{
ulonglong m_current_connections;
ulonglong m_total_connections;
inline void set(const PFS_connection_stat *stat)
{
m_current_connections= stat->m_current_connections;
m_total_connections= stat->m_total_connections;
}
/** Set a table field from the row. */
void set_field(uint index, Field *f);
};
void set_field_object_type(Field *f, enum_object_type object_type);
/** Row fragment for socket io statistics columns. */
struct PFS_socket_io_stat_row
{
PFS_byte_stat_row m_read;
PFS_byte_stat_row m_write;
PFS_byte_stat_row m_misc;
PFS_byte_stat_row m_all;
inline void set(time_normalizer *normalizer, const PFS_socket_io_stat *stat)
{
PFS_byte_stat all;
m_read.set(normalizer, &stat->m_read);
m_write.set(normalizer, &stat->m_write);
m_misc.set(normalizer, &stat->m_misc);
/* Combine stats for all operations */
all.aggregate(&stat->m_read);
all.aggregate(&stat->m_write);
all.aggregate(&stat->m_misc);
m_all.set(normalizer, &all);
}
};
/** Row fragment for file io statistics columns. */
struct PFS_file_io_stat_row
{
PFS_byte_stat_row m_read;
PFS_byte_stat_row m_write;
PFS_byte_stat_row m_misc;
PFS_byte_stat_row m_all;
inline void set(time_normalizer *normalizer, const PFS_file_io_stat *stat)
{
PFS_byte_stat all;
m_read.set(normalizer, &stat->m_read);
m_write.set(normalizer, &stat->m_write);
m_misc.set(normalizer, &stat->m_misc);
/* Combine stats for all operations */
all.aggregate(&stat->m_read);
all.aggregate(&stat->m_write);
all.aggregate(&stat->m_misc);
m_all.set(normalizer, &all);
}
};
/** @} */
#endif
|