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
|
/* Copyright (c) 2010, 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 */
#ifndef PFS_VISITOR_H
#define PFS_VISITOR_H
#include "pfs_stat.h"
/**
@file storage/perfschema/pfs_visitor.h
Visitors (declarations).
*/
/**
@addtogroup Performance_schema_buffers
@{
*/
struct PFS_user;
struct PFS_account;
struct PFS_host;
struct PFS_thread;
struct PFS_instr_class;
struct PFS_mutex_class;
struct PFS_rwlock_class;
struct PFS_cond_class;
struct PFS_file_class;
struct PFS_socket_class;
struct PFS_table_share;
struct PFS_mutex;
struct PFS_rwlock;
struct PFS_cond;
struct PFS_file;
struct PFS_table;
struct PFS_stage_class;
struct PFS_statement_class;
struct PFS_socket;
struct PFS_connection_slice;
/**
Interface class to visit groups of connections.
@sa PFS_connection_iterator
*/
class PFS_connection_visitor
{
public:
PFS_connection_visitor() {}
virtual ~PFS_connection_visitor() {}
/** Visit all connections. */
virtual void visit_global() {}
/** Visit all connections of a host. */
virtual void visit_host(PFS_host *pfs) {}
/** Visit all connections of a user+host. */
virtual void visit_account(PFS_account *pfs) {}
/** Visit all connections of a user. */
virtual void visit_user(PFS_user *pfs) {}
/** Visit a thread. */
virtual void visit_thread(PFS_thread *pfs) {}
};
/**
Iterator over groups of connections.
@sa PFS_connection_visitor
*/
class PFS_connection_iterator
{
public:
/**
Visit all connections.
@param with_hosts when true, visit also all hosts.
@param with_users when true, visit also all users.
@param with_accounts when true, visit also all user+host.
@param with_threads when true, visit also all threads.
@param visitor the visitor to call
*/
static void visit_global(bool with_hosts, bool with_users,
bool with_accounts, bool with_threads,
PFS_connection_visitor *visitor);
/**
Visit all connections of a host.
@param host the host to visit.
@param with_accounts when true, visit also all related user+host.
@param with_threads when true, visit also all related threads.
@param visitor the visitor to call
*/
static void visit_host(PFS_host *host, bool with_accounts, bool with_threads,
PFS_connection_visitor *visitor);
/**
Visit all connections of a user.
@param user the user to visit.
@param with_accounts when true, visit also all related user+host.
@param with_threads when true, visit also all related threads.
@param visitor the visitor to call
*/
static void visit_user(PFS_user *user, bool with_accounts, bool with_threads,
PFS_connection_visitor *visitor);
/**
Visit all connections of a user+host.
@param account the user+host to visit.
@param with_threads when true, visit also all related threads.
@param visitor the visitor to call
*/
static void visit_account(PFS_account *account, bool with_threads,
PFS_connection_visitor *visitor);
/**
Visit a thread or connection.
@param thread the thread to visit.
@param visitor the visitor to call
*/
static inline void visit_thread(PFS_thread *thread,
PFS_connection_visitor *visitor)
{ visitor->visit_thread(thread); }
};
/**
Interface class to visit groups of instrumentation point instances.
@sa PFS_instance_iterator
*/
class PFS_instance_visitor
{
public:
PFS_instance_visitor() {}
virtual ~PFS_instance_visitor() {}
/** Visit a mutex class. */
virtual void visit_mutex_class(PFS_mutex_class *pfs) {}
/** Visit a rwlock class. */
virtual void visit_rwlock_class(PFS_rwlock_class *pfs) {}
/** Visit a cond class. */
virtual void visit_cond_class(PFS_cond_class *pfs) {}
/** Visit a file class. */
virtual void visit_file_class(PFS_file_class *pfs) {}
/** Visit a socket class. */
virtual void visit_socket_class(PFS_socket_class *pfs) {}
/** Visit a mutex instance. */
virtual void visit_mutex(PFS_mutex *pfs) {}
/** Visit a rwlock instance. */
virtual void visit_rwlock(PFS_rwlock *pfs) {}
/** Visit a cond instance. */
virtual void visit_cond(PFS_cond *pfs) {}
/** Visit a file instance. */
virtual void visit_file(PFS_file *pfs) {}
/** Visit a socket instance. */
virtual void visit_socket(PFS_socket *pfs) {}
};
/**
Iterator over groups of instrumentation point instances.
@sa PFS_instance_visitor
*/
class PFS_instance_iterator
{
public:
static void visit_all(PFS_instance_visitor *visitor);
static void visit_all_mutex(PFS_instance_visitor *visitor);
static void visit_all_mutex_classes(PFS_instance_visitor *visitor);
static void visit_all_mutex_instances(PFS_instance_visitor *visitor);
static void visit_all_rwlock(PFS_instance_visitor *visitor);
static void visit_all_rwlock_classes(PFS_instance_visitor *visitor);
static void visit_all_rwlock_instances(PFS_instance_visitor *visitor);
static void visit_all_cond(PFS_instance_visitor *visitor);
static void visit_all_cond_classes(PFS_instance_visitor *visitor);
static void visit_all_cond_instances(PFS_instance_visitor *visitor);
static void visit_all_file(PFS_instance_visitor *visitor);
static void visit_all_file_classes(PFS_instance_visitor *visitor);
static void visit_all_file_instances(PFS_instance_visitor *visitor);
/**
Visit a mutex class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
*/
static void visit_mutex_instances(PFS_mutex_class *klass,
PFS_instance_visitor *visitor);
/**
Visit a rwlock class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
*/
static void visit_rwlock_instances(PFS_rwlock_class *klass,
PFS_instance_visitor *visitor);
/**
Visit a cond class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
*/
static void visit_cond_instances(PFS_cond_class *klass,
PFS_instance_visitor *visitor);
/**
Visit a file class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
*/
static void visit_file_instances(PFS_file_class *klass,
PFS_instance_visitor *visitor);
/**
Visit a socket class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
*/
static void visit_socket_instances(PFS_socket_class *klass,
PFS_instance_visitor *visitor);
/**
Visit a socket class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
@param thread the owning thread to match
@param visit_class if true then visit the socket class
*/
static void visit_socket_instances(PFS_socket_class *klass,
PFS_instance_visitor *visitor,
PFS_thread *thread,
bool visit_class= true);
/**
Visit an instrument class and related instances.
@param klass the klass to visit.
@param visitor the visitor to call
@param thread comparison criteria
@param visit_class if true then visit the class
*/
static void visit_instances(PFS_instr_class *klass,
PFS_instance_visitor *visitor,
PFS_thread *thread,
bool visit_class= true);
};
/**
Interface class to visit groups of SQL objects.
@sa PFS_object_iterator
*/
class PFS_object_visitor
{
public:
PFS_object_visitor() {}
virtual ~PFS_object_visitor() {}
/** Visit global data. */
virtual void visit_global() {}
/** Visit a table share. */
virtual void visit_table_share(PFS_table_share *pfs) {}
/** Visit a table share index. */
virtual void visit_table_share_index(PFS_table_share *pfs, uint index) {}
/** Visit a table. */
virtual void visit_table(PFS_table *pfs) {}
/** Visit a table index. */
virtual void visit_table_index(PFS_table *pfs, uint index) {}
};
/**
Iterator over groups of SQL objects.
@sa PFS_object_visitor
*/
class PFS_object_iterator
{
public:
/** Visit all objects. */
static void visit_all(PFS_object_visitor *visitor);
/** Visit all tables and related handles. */
static void visit_all_tables(PFS_object_visitor *visitor);
/** Visit a table and related table handles. */
static void visit_tables(PFS_table_share *share,
PFS_object_visitor *visitor);
/** Visit a table index and related table handles indexes. */
static void visit_table_indexes(PFS_table_share *share,
uint index,
PFS_object_visitor *visitor);
};
/**
A concrete connection visitor that aggregates
wait statistics for a given event_name.
*/
class PFS_connection_wait_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_wait_visitor(PFS_instr_class *klass);
virtual ~PFS_connection_wait_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** EVENT_NAME instrument index. */
uint m_index;
/** Wait statistic collected. */
PFS_single_stat m_stat;
};
/**
A concrete connection visitor that aggregates
wait statistics for all events.
*/
class PFS_connection_all_wait_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_all_wait_visitor();
virtual ~PFS_connection_all_wait_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** Wait statistic collected. */
PFS_single_stat m_stat;
private:
void visit_connection_slice(PFS_connection_slice *pfs);
};
/**
A concrete connection visitor that aggregates
stage statistics.
*/
class PFS_connection_stage_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_stage_visitor(PFS_stage_class *klass);
virtual ~PFS_connection_stage_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** EVENT_NAME instrument index. */
uint m_index;
/** Stage statistic collected. */
PFS_stage_stat m_stat;
};
/**
A concrete connection visitor that aggregates
statement statistics for a given event_name.
*/
class PFS_connection_statement_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_statement_visitor(PFS_statement_class *klass);
virtual ~PFS_connection_statement_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** EVENT_NAME instrument index. */
uint m_index;
/** Statement statistic collected. */
PFS_statement_stat m_stat;
};
/**
A concrete connection visitor that aggregates
statement statistics for all events.
*/
class PFS_connection_all_statement_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_all_statement_visitor();
virtual ~PFS_connection_all_statement_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** Statement statistic collected. */
PFS_statement_stat m_stat;
private:
void visit_connection_slice(PFS_connection_slice *pfs);
};
/**
A concrete connection visitor that aggregates
connection statistics.
*/
class PFS_connection_stat_visitor : public PFS_connection_visitor
{
public:
/** Constructor. */
PFS_connection_stat_visitor();
virtual ~PFS_connection_stat_visitor();
virtual void visit_global();
virtual void visit_host(PFS_host *pfs);
virtual void visit_account(PFS_account *pfs);
virtual void visit_user(PFS_user *pfs);
virtual void visit_thread(PFS_thread *pfs);
/** Connection statistic collected. */
PFS_connection_stat m_stat;
};
/**
A concrete instance visitor that aggregates
wait statistics.
*/
class PFS_instance_wait_visitor : public PFS_instance_visitor
{
public:
PFS_instance_wait_visitor();
virtual ~PFS_instance_wait_visitor();
virtual void visit_mutex_class(PFS_mutex_class *pfs);
virtual void visit_rwlock_class(PFS_rwlock_class *pfs);
virtual void visit_cond_class(PFS_cond_class *pfs);
virtual void visit_file_class(PFS_file_class *pfs);
virtual void visit_socket_class(PFS_socket_class *pfs);
virtual void visit_mutex(PFS_mutex *pfs);
virtual void visit_rwlock(PFS_rwlock *pfs);
virtual void visit_cond(PFS_cond *pfs);
virtual void visit_file(PFS_file *pfs);
virtual void visit_socket(PFS_socket *pfs);
/** Wait statistic collected. */
PFS_single_stat m_stat;
};
/**
A concrete object visitor that aggregates
object wait statistics.
*/
class PFS_object_wait_visitor : public PFS_object_visitor
{
public:
PFS_object_wait_visitor();
virtual ~PFS_object_wait_visitor();
virtual void visit_global();
virtual void visit_table_share(PFS_table_share *pfs);
virtual void visit_table(PFS_table *pfs);
/** Object wait statistic collected. */
PFS_single_stat m_stat;
};
/**
A concrete object visitor that aggregates
table io wait statistics.
*/
class PFS_table_io_wait_visitor : public PFS_object_visitor
{
public:
PFS_table_io_wait_visitor();
virtual ~PFS_table_io_wait_visitor();
virtual void visit_global();
virtual void visit_table_share(PFS_table_share *pfs);
virtual void visit_table(PFS_table *pfs);
/** Table io wait statistic collected. */
PFS_single_stat m_stat;
};
/**
A concrete object visitor that aggregates
table io statistics.
*/
class PFS_table_io_stat_visitor : public PFS_object_visitor
{
public:
PFS_table_io_stat_visitor();
virtual ~PFS_table_io_stat_visitor();
virtual void visit_table_share(PFS_table_share *pfs);
virtual void visit_table(PFS_table *pfs);
/** Table io statistic collected. */
PFS_table_io_stat m_stat;
};
/**
A concrete object visitor that aggregates
index io statistics.
*/
class PFS_index_io_stat_visitor : public PFS_object_visitor
{
public:
PFS_index_io_stat_visitor();
virtual ~PFS_index_io_stat_visitor();
virtual void visit_table_share_index(PFS_table_share *pfs, uint index);
virtual void visit_table_index(PFS_table *pfs, uint index);
/** Index io statistic collected. */
PFS_table_io_stat m_stat;
};
/**
A concrete object visitor that aggregates
table lock wait statistics.
*/
class PFS_table_lock_wait_visitor : public PFS_object_visitor
{
public:
PFS_table_lock_wait_visitor();
virtual ~PFS_table_lock_wait_visitor();
virtual void visit_global();
virtual void visit_table_share(PFS_table_share *pfs);
virtual void visit_table(PFS_table *pfs);
/** Table lock wait statistic collected. */
PFS_single_stat m_stat;
};
/**
A concrete object visitor that aggregates
table lock statistics.
*/
class PFS_table_lock_stat_visitor : public PFS_object_visitor
{
public:
PFS_table_lock_stat_visitor();
virtual ~PFS_table_lock_stat_visitor();
virtual void visit_table_share(PFS_table_share *pfs);
virtual void visit_table(PFS_table *pfs);
/** Table lock statistic collected. */
PFS_table_lock_stat m_stat;
};
/**
A concrete instance visitor that aggregates
socket wait and byte count statistics.
*/
class PFS_instance_socket_io_stat_visitor : public PFS_instance_visitor
{
public:
PFS_instance_socket_io_stat_visitor();
virtual ~PFS_instance_socket_io_stat_visitor();
virtual void visit_socket_class(PFS_socket_class *pfs);
virtual void visit_socket(PFS_socket *pfs);
/** Wait and byte count statistics collected. */
PFS_socket_io_stat m_socket_io_stat;
};
/**
A concrete instance visitor that aggregates
file wait and byte count statistics.
*/
class PFS_instance_file_io_stat_visitor : public PFS_instance_visitor
{
public:
PFS_instance_file_io_stat_visitor();
virtual ~PFS_instance_file_io_stat_visitor();
virtual void visit_file_class(PFS_file_class *pfs);
virtual void visit_file(PFS_file *pfs);
/** Wait and byte count statistics collected. */
PFS_file_io_stat m_file_io_stat;
};
/** @} */
#endif
|