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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
|
/* Copyright (c) 2011, 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,
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
/*
Always provide the noop performance interface, for plugins.
*/
#define USE_PSI_V1
#define HAVE_PSI_INTERFACE
#include "my_global.h"
#include "my_pthread.h"
#include "my_sys.h"
#include "mysql/psi/psi.h"
C_MODE_START
#define NNN __attribute__((unused))
static void register_mutex_noop(const char *category NNN,
PSI_mutex_info *info NNN,
int count NNN)
{
return;
}
static void register_rwlock_noop(const char *category NNN,
PSI_rwlock_info *info NNN,
int count NNN)
{
return;
}
static void register_cond_noop(const char *category NNN,
PSI_cond_info *info NNN,
int count NNN)
{
return;
}
static void register_thread_noop(const char *category NNN,
PSI_thread_info *info NNN,
int count NNN)
{
return;
}
static void register_file_noop(const char *category NNN,
PSI_file_info *info NNN,
int count NNN)
{
return;
}
static void register_stage_noop(const char *category NNN,
PSI_stage_info **info_array NNN,
int count NNN)
{
return;
}
static void register_statement_noop(const char *category NNN,
PSI_statement_info *info NNN,
int count NNN)
{
return;
}
static void register_socket_noop(const char *category NNN,
PSI_socket_info *info NNN,
int count NNN)
{
return;
}
static PSI_mutex*
init_mutex_noop(PSI_mutex_key key NNN, const void *identity NNN)
{
return NULL;
}
static void destroy_mutex_noop(PSI_mutex* mutex NNN)
{
return;
}
static PSI_rwlock*
init_rwlock_noop(PSI_rwlock_key key NNN, const void *identity NNN)
{
return NULL;
}
static void destroy_rwlock_noop(PSI_rwlock* rwlock NNN)
{
return;
}
static PSI_cond*
init_cond_noop(PSI_cond_key key NNN, const void *identity NNN)
{
return NULL;
}
static void destroy_cond_noop(PSI_cond* cond NNN)
{
return;
}
static PSI_socket*
init_socket_noop(PSI_socket_key key NNN, const my_socket *fd NNN,
const struct sockaddr *addr NNN, socklen_t addr_len NNN)
{
return NULL;
}
static void destroy_socket_noop(PSI_socket* socket NNN)
{
return;
}
static PSI_table_share*
get_table_share_noop(my_bool temporary NNN, struct TABLE_SHARE *share NNN)
{
return NULL;
}
static void release_table_share_noop(PSI_table_share* share NNN)
{
return;
}
static void
drop_table_share_noop(my_bool temporary NNN, const char *schema_name NNN,
int schema_name_length NNN, const char *table_name NNN,
int table_name_length NNN)
{
return;
}
static PSI_table*
open_table_noop(PSI_table_share *share NNN, const void *identity NNN)
{
return NULL;
}
static void unbind_table_noop(PSI_table *table NNN)
{
return;
}
static PSI_table*
rebind_table_noop(PSI_table_share *share NNN,
const void *identity NNN,
PSI_table *table NNN)
{
return NULL;
}
static void close_table_noop(PSI_table *table NNN)
{
return;
}
static void create_file_noop(PSI_file_key key NNN,
const char *name NNN, File file NNN)
{
return;
}
static int spawn_thread_noop(PSI_thread_key key NNN,
pthread_t *thread NNN,
const pthread_attr_t *attr NNN,
void *(*start_routine)(void*) NNN, void *arg NNN)
{
return pthread_create(thread, attr, start_routine, arg);
}
static PSI_thread*
new_thread_noop(PSI_thread_key key NNN,
const void *identity NNN, ulonglong thread_id NNN)
{
return NULL;
}
static void set_thread_id_noop(PSI_thread *thread NNN, ulonglong id NNN)
{
return;
}
static PSI_thread*
get_thread_noop(void NNN)
{
return NULL;
}
static void set_thread_user_noop(const char *user NNN, int user_len NNN)
{
return;
}
static void set_thread_user_host_noop(const char *user NNN, int user_len NNN,
const char *host NNN, int host_len NNN)
{
return;
}
static void set_thread_db_noop(const char* db NNN, int db_len NNN)
{
return;
}
static void set_thread_command_noop(int command NNN)
{
return;
}
static void set_thread_start_time_noop(time_t start_time NNN)
{
return;
}
static void set_thread_state_noop(const char* state NNN)
{
return;
}
static void set_thread_info_noop(const char* info NNN, uint info_len NNN)
{
return;
}
static void set_thread_noop(PSI_thread* thread NNN)
{
return;
}
static void delete_current_thread_noop(void)
{
return;
}
static void delete_thread_noop(PSI_thread *thread NNN)
{
return;
}
static PSI_file_locker*
get_thread_file_name_locker_noop(PSI_file_locker_state *state NNN,
PSI_file_key key NNN,
enum PSI_file_operation op NNN,
const char *name NNN, const void *identity NNN)
{
return NULL;
}
static PSI_file_locker*
get_thread_file_stream_locker_noop(PSI_file_locker_state *state NNN,
PSI_file *file NNN,
enum PSI_file_operation op NNN)
{
return NULL;
}
static PSI_file_locker*
get_thread_file_descriptor_locker_noop(PSI_file_locker_state *state NNN,
File file NNN,
enum PSI_file_operation op NNN)
{
return NULL;
}
static void unlock_mutex_noop(PSI_mutex *mutex NNN)
{
return;
}
static void unlock_rwlock_noop(PSI_rwlock *rwlock NNN)
{
return;
}
static void signal_cond_noop(PSI_cond* cond NNN)
{
return;
}
static void broadcast_cond_noop(PSI_cond* cond NNN)
{
return;
}
static PSI_idle_locker*
start_idle_wait_noop(PSI_idle_locker_state* state NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_idle_wait_noop(PSI_idle_locker* locker NNN)
{
return;
}
static PSI_mutex_locker*
start_mutex_wait_noop(PSI_mutex_locker_state *state NNN,
PSI_mutex *mutex NNN,
PSI_mutex_operation op NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_mutex_wait_noop(PSI_mutex_locker* locker NNN, int rc NNN)
{
return;
}
static PSI_rwlock_locker*
start_rwlock_rdwait_noop(struct PSI_rwlock_locker_state_v1 *state NNN,
struct PSI_rwlock *rwlock NNN,
enum PSI_rwlock_operation op NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_rwlock_rdwait_noop(PSI_rwlock_locker* locker NNN, int rc NNN)
{
return;
}
static struct PSI_rwlock_locker*
start_rwlock_wrwait_noop(struct PSI_rwlock_locker_state_v1 *state NNN,
struct PSI_rwlock *rwlock NNN,
enum PSI_rwlock_operation op NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_rwlock_wrwait_noop(PSI_rwlock_locker* locker NNN, int rc NNN)
{
return;
}
static struct PSI_cond_locker*
start_cond_wait_noop(struct PSI_cond_locker_state_v1 *state NNN,
struct PSI_cond *cond NNN,
struct PSI_mutex *mutex NNN,
enum PSI_cond_operation op NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_cond_wait_noop(PSI_cond_locker* locker NNN, int rc NNN)
{
return;
}
static struct PSI_table_locker*
start_table_io_wait_noop(struct PSI_table_locker_state_v1 *state NNN,
struct PSI_table *table NNN,
enum PSI_table_io_operation op NNN,
uint index NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_table_io_wait_noop(PSI_table_locker* locker NNN)
{
return;
}
static struct PSI_table_locker*
start_table_lock_wait_noop(struct PSI_table_locker_state_v1 *state NNN,
struct PSI_table *table NNN,
enum PSI_table_lock_operation op NNN,
ulong flags NNN,
const char *src_file NNN, uint src_line NNN)
{
return NULL;
}
static void end_table_lock_wait_noop(PSI_table_locker* locker NNN)
{
return;
}
static void start_file_open_wait_noop(PSI_file_locker *locker NNN,
const char *src_file NNN,
uint src_line NNN)
{
return;
}
static PSI_file* end_file_open_wait_noop(PSI_file_locker *locker NNN,
void *result NNN)
{
return NULL;
}
static void end_file_open_wait_and_bind_to_descriptor_noop
(PSI_file_locker *locker NNN, File file NNN)
{
return;
}
static void start_file_wait_noop(PSI_file_locker *locker NNN,
size_t count NNN,
const char *src_file NNN,
uint src_line NNN)
{
return;
}
static void end_file_wait_noop(PSI_file_locker *locker NNN,
size_t count NNN)
{
return;
}
static void start_file_close_wait_noop(PSI_file_locker *locker NNN,
const char *src_file NNN,
uint src_line NNN)
{
return;
}
static void end_file_close_wait_noop(PSI_file_locker *locker NNN,
int result NNN)
{
return;
}
static void start_stage_noop(PSI_stage_key key NNN,
const char *src_file NNN, int src_line NNN)
{
return;
}
static void end_stage_noop(void)
{
return;
}
static PSI_statement_locker*
get_thread_statement_locker_noop(PSI_statement_locker_state *state NNN,
PSI_statement_key key NNN,
const void *charset NNN)
{
return NULL;
}
static PSI_statement_locker*
refine_statement_noop(PSI_statement_locker *locker NNN,
PSI_statement_key key NNN)
{
return NULL;
}
static void start_statement_noop(PSI_statement_locker *locker NNN,
const char *db NNN, uint db_len NNN,
const char *src_file NNN, uint src_line NNN)
{
return;
}
static void set_statement_text_noop(PSI_statement_locker *locker NNN,
const char *text NNN, uint text_len NNN)
{
return;
}
static void set_statement_lock_time_noop(PSI_statement_locker *locker NNN,
ulonglong count NNN)
{
return;
}
static void set_statement_rows_sent_noop(PSI_statement_locker *locker NNN,
ulonglong count NNN)
{
return;
}
static void set_statement_rows_examined_noop(PSI_statement_locker *locker NNN,
ulonglong count NNN)
{
return;
}
static void inc_statement_created_tmp_disk_tables_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_created_tmp_tables_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_select_full_join_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_select_full_range_join_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_select_range_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_select_range_check_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_select_scan_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_sort_merge_passes_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_sort_range_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_sort_rows_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void inc_statement_sort_scan_noop(PSI_statement_locker *locker NNN,
ulong count NNN)
{
return;
}
static void set_statement_no_index_used_noop(PSI_statement_locker *locker NNN)
{
return;
}
static void set_statement_no_good_index_used_noop(PSI_statement_locker *locker NNN)
{
return;
}
static void end_statement_noop(PSI_statement_locker *locker NNN,
void *stmt_da NNN)
{
return;
}
static PSI_socket_locker*
start_socket_wait_noop(PSI_socket_locker_state *state NNN,
PSI_socket *socket NNN,
PSI_socket_operation op NNN,
size_t count NNN,
const char *src_file NNN,
uint src_line NNN)
{
return NULL;
}
static void end_socket_wait_noop(PSI_socket_locker *locker NNN,
size_t count NNN)
{
return;
}
static void set_socket_state_noop(PSI_socket *socket NNN,
enum PSI_socket_state state NNN)
{
return;
}
static void set_socket_info_noop(PSI_socket *socket NNN,
const my_socket *fd NNN,
const struct sockaddr *addr NNN,
socklen_t addr_len NNN)
{
return;
}
static void set_socket_thread_owner_noop(PSI_socket *socket NNN)
{
return;
}
static struct PSI_digest_locker*
digest_start_noop(PSI_statement_locker *locker NNN)
{
return NULL;
}
static PSI_digest_locker*
digest_add_token_noop(PSI_digest_locker *locker NNN,
uint token NNN,
struct OPAQUE_LEX_YYSTYPE *yylval NNN)
{
return NULL;
}
static int
set_thread_connect_attrs_noop(const char *buffer __attribute__((unused)),
uint length __attribute__((unused)),
const void *from_cs __attribute__((unused)))
{
return 0;
}
static PSI PSI_noop=
{
register_mutex_noop,
register_rwlock_noop,
register_cond_noop,
register_thread_noop,
register_file_noop,
register_stage_noop,
register_statement_noop,
register_socket_noop,
init_mutex_noop,
destroy_mutex_noop,
init_rwlock_noop,
destroy_rwlock_noop,
init_cond_noop,
destroy_cond_noop,
init_socket_noop,
destroy_socket_noop,
get_table_share_noop,
release_table_share_noop,
drop_table_share_noop,
open_table_noop,
unbind_table_noop,
rebind_table_noop,
close_table_noop,
create_file_noop,
spawn_thread_noop,
new_thread_noop,
set_thread_id_noop,
get_thread_noop,
set_thread_user_noop,
set_thread_user_host_noop,
set_thread_db_noop,
set_thread_command_noop,
set_thread_start_time_noop,
set_thread_state_noop,
set_thread_info_noop,
set_thread_noop,
delete_current_thread_noop,
delete_thread_noop,
get_thread_file_name_locker_noop,
get_thread_file_stream_locker_noop,
get_thread_file_descriptor_locker_noop,
unlock_mutex_noop,
unlock_rwlock_noop,
signal_cond_noop,
broadcast_cond_noop,
start_idle_wait_noop,
end_idle_wait_noop,
start_mutex_wait_noop,
end_mutex_wait_noop,
start_rwlock_rdwait_noop,
end_rwlock_rdwait_noop,
start_rwlock_wrwait_noop,
end_rwlock_wrwait_noop,
start_cond_wait_noop,
end_cond_wait_noop,
start_table_io_wait_noop,
end_table_io_wait_noop,
start_table_lock_wait_noop,
end_table_lock_wait_noop,
start_file_open_wait_noop,
end_file_open_wait_noop,
end_file_open_wait_and_bind_to_descriptor_noop,
start_file_wait_noop,
end_file_wait_noop,
start_file_close_wait_noop,
end_file_close_wait_noop,
start_stage_noop,
end_stage_noop,
get_thread_statement_locker_noop,
refine_statement_noop,
start_statement_noop,
set_statement_text_noop,
set_statement_lock_time_noop,
set_statement_rows_sent_noop,
set_statement_rows_examined_noop,
inc_statement_created_tmp_disk_tables_noop,
inc_statement_created_tmp_tables_noop,
inc_statement_select_full_join_noop,
inc_statement_select_full_range_join_noop,
inc_statement_select_range_noop,
inc_statement_select_range_check_noop,
inc_statement_select_scan_noop,
inc_statement_sort_merge_passes_noop,
inc_statement_sort_range_noop,
inc_statement_sort_rows_noop,
inc_statement_sort_scan_noop,
set_statement_no_index_used_noop,
set_statement_no_good_index_used_noop,
end_statement_noop,
start_socket_wait_noop,
end_socket_wait_noop,
set_socket_state_noop,
set_socket_info_noop,
set_socket_thread_owner_noop,
digest_start_noop,
digest_add_token_noop,
set_thread_connect_attrs_noop
};
/**
Hook for the instrumentation interface.
Code implementing the instrumentation interface should register here.
*/
struct PSI_bootstrap *PSI_hook= NULL;
/**
Instance of the instrumentation interface for the MySQL server.
@todo This is currently a global variable, which is handy when
compiling instrumented code that is bundled with the server.
When dynamic plugin are truly supported, this variable will need
to be replaced by a macro, so that each XYZ plugin can have it's own
xyz_psi_server variable, obtained from PSI_bootstrap::get_interface()
with the version used at compile time for plugin XYZ.
*/
PSI *PSI_server= & PSI_noop;
void set_psi_server(PSI *psi)
{
PSI_server= psi;
}
C_MODE_END
|