Class: RubyProf::Profile
- Inherits:
-
Object
- Object
- RubyProf::Profile
- Defined in:
- lib/ruby-prof/profile.rb,
ext/ruby_prof/ruby_prof.c
Class Method Summary collapse
-
.profile(*args) ⇒ Object
Profiles the specified block and returns a RubyProf::Profile object.
Instance Method Summary collapse
-
#eliminate_methods!(matchers) ⇒ Object
eliminate some calls from the graph by merging the information into callers.
-
#initialize(*args) ⇒ Object
constructor
Returns a new profiler.
-
#pause ⇒ self
Pauses collecting profile data.
-
#paused? ⇒ Boolean
Returns whether a profile is currently paused.
-
#post_process ⇒ Object
This method gets called once profiling has been completed but before results are returned to the user.
-
#resume ⇒ Object
Resumes recording profile data.
-
#running? ⇒ Boolean
Returns whether a profile is currently running.
-
#start ⇒ self
Starts recording profile data.
-
#stop ⇒ self
Stops collecting profile data.
-
#threads ⇒ array of RubyProf::Thread
Returns an array of RubyProf::Thread instances that were executed while the the program was being run.
Constructor Details
#new ⇒ Object #new(options) ⇒ Object
Returns a new profiler. Possible options for the options hash are:
measure_mode:: Measure mode. Specifies the profile measure mode.
If not specified, defaults to RubyProf::WALL_TIME.
exclude_threads:: Threads to exclude from the profiling results.
include_threads:: Focus profiling on only the given threads. This will ignore
all other threads.
merge_fibers:: Whether to merge all fibers under a given thread. This should be
used when profiling for a callgrind printer.
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 |
# File 'ext/ruby_prof/ruby_prof.c', line 395 static VALUE prof_initialize(int argc, VALUE *argv, VALUE self) { prof_profile_t* profile = prof_get_profile(self); VALUE ; VALUE mode = Qnil; VALUE exclude_threads = Qnil; VALUE include_threads = Qnil; VALUE merge_fibers = Qnil; int i; switch (rb_scan_args(argc, argv, "02", &, &exclude_threads)) { case 0: break; case 1: if (FIXNUM_P()) { mode = ; } else { Check_Type(, T_HASH); mode = rb_hash_aref(, ID2SYM(rb_intern("measure_mode"))); merge_fibers = rb_hash_aref(, ID2SYM(rb_intern("merge_fibers"))); exclude_threads = rb_hash_aref(, ID2SYM(rb_intern("exclude_threads"))); include_threads = rb_hash_aref(, ID2SYM(rb_intern("include_threads"))); } break; case 2: Check_Type(exclude_threads, T_ARRAY); break; } if (mode == Qnil) { mode = INT2NUM(MEASURE_WALL_TIME); } else { Check_Type(mode, T_FIXNUM); } profile->measurer = prof_get_measurer(NUM2INT(mode)); profile->merge_fibers = merge_fibers != Qnil && merge_fibers != Qfalse; if (exclude_threads != Qnil) { Check_Type(exclude_threads, T_ARRAY); assert(profile->exclude_threads_tbl == NULL); profile->exclude_threads_tbl = threads_table_create(); for (i = 0; i < RARRAY_LEN(exclude_threads); i++) { VALUE thread = rb_ary_entry(exclude_threads, i); VALUE thread_id = rb_obj_id(thread); st_insert(profile->exclude_threads_tbl, thread_id, Qtrue); } } if (include_threads != Qnil) { Check_Type(include_threads, T_ARRAY); assert(profile->include_threads_tbl == NULL); profile->include_threads_tbl = threads_table_create(); for (i = 0; i < RARRAY_LEN(include_threads); i++) { VALUE thread = rb_ary_entry(include_threads, i); VALUE thread_id = rb_obj_id(thread); st_insert(profile->include_threads_tbl, thread_id, Qtrue); } } return self; } |
Class Method Details
.profile(&block) ⇒ self .profile(options, &block) ⇒ self
Profiles the specified block and returns a RubyProf::Profile object. Arguments are passed to Profile initialize method.
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'ext/ruby_prof/ruby_prof.c', line 621 static VALUE prof_profile(int argc, VALUE *argv, VALUE klass) { int result; VALUE profile = rb_class_new_instance(argc, argv, cProfile); if (!rb_block_given_p()) { rb_raise(rb_eArgError, "A block must be provided to the profile method."); } prof_start(profile); rb_protect(rb_yield, profile, &result); return prof_stop(profile); } |
Instance Method Details
#eliminate_methods!(matchers) ⇒ Object
eliminate some calls from the graph by merging the information into callers. matchers can be a list of strings or regular expressions or the name of a file containing regexps.
16 17 18 19 20 21 22 23 |
# File 'lib/ruby-prof/profile.rb', line 16 def eliminate_methods!(matchers) matchers = read_regexps_from_file(matchers) if matchers.is_a?(String) eliminated = [] threads.each do |thread| matchers.each{ |matcher| eliminated.concat(eliminate_methods(thread.methods, matcher)) } end eliminated end |
#pause ⇒ self
Pauses collecting profile data.
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
# File 'ext/ruby_prof/ruby_prof.c', line 528 static VALUE prof_pause(VALUE self) { prof_profile_t* profile = prof_get_profile(self); if (profile->running == Qfalse) { rb_raise(rb_eRuntimeError, "RubyProf is not running."); } if (profile->paused == Qfalse) { profile->paused = Qtrue; profile->measurement_at_pause_resume = profile->measurer->measure(); st_foreach(profile->threads_tbl, pause_thread, (st_data_t) profile); } return self; } |
#paused? ⇒ Boolean
Returns whether a profile is currently paused.
463 464 465 466 467 468 |
# File 'ext/ruby_prof/ruby_prof.c', line 463 static VALUE prof_paused(VALUE self) { prof_profile_t* profile = prof_get_profile(self); return profile->paused; } |
#post_process ⇒ Object
This method gets called once profiling has been completed but before results are returned to the user. Thus it provides a hook to do any necessary post-processing on the call graph.
8 9 10 11 12 |
# File 'lib/ruby-prof/profile.rb', line 8 def post_process self.threads.each do |thread| thread.detect_recursion end end |
#resume ⇒ self #resume(&block) ⇒ self
Resumes recording profile data.
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 |
# File 'ext/ruby_prof/ruby_prof.c', line 552 static VALUE prof_resume(VALUE self) { prof_profile_t* profile = prof_get_profile(self); if (profile->running == Qfalse) { rb_raise(rb_eRuntimeError, "RubyProf is not running."); } if (profile->paused == Qtrue) { profile->paused = Qfalse; profile->measurement_at_pause_resume = profile->measurer->measure(); st_foreach(profile->threads_tbl, unpause_thread, (st_data_t) profile); } return rb_block_given_p() ? rb_ensure(rb_yield, self, prof_pause, self) : self; } |
#running? ⇒ Boolean
Returns whether a profile is currently running.
474 475 476 477 478 479 |
# File 'ext/ruby_prof/ruby_prof.c', line 474 static VALUE prof_running(VALUE self) { prof_profile_t* profile = prof_get_profile(self); return profile->running; } |
#start ⇒ self
Starts recording profile data.
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 |
# File 'ext/ruby_prof/ruby_prof.c', line 485 static VALUE prof_start(VALUE self) { char* trace_file_name; prof_profile_t* profile = prof_get_profile(self); if (profile->running == Qtrue) { rb_raise(rb_eRuntimeError, "RubyProf.start was already called"); } profile->running = Qtrue; profile->paused = Qfalse; profile->last_thread_data = NULL; /* open trace file if environment wants it */ trace_file_name = getenv("RUBY_PROF_TRACE"); if (trace_file_name != NULL) { if (strcmp(trace_file_name, "stdout") == 0) { trace_file = stdout; } else if (strcmp(trace_file_name, "stderr") == 0) { trace_file = stderr; } else { trace_file = fopen(trace_file_name, "w"); } } prof_install_hook(self); return self; } |
#stop ⇒ self
Stops collecting profile data.
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 |
# File 'ext/ruby_prof/ruby_prof.c', line 575 static VALUE prof_stop(VALUE self) { prof_profile_t* profile = prof_get_profile(self); if (profile->running == Qfalse) { rb_raise(rb_eRuntimeError, "RubyProf.start was not yet called"); } prof_remove_hook(); /* close trace file if open */ if (trace_file != NULL) { if (trace_file !=stderr && trace_file != stdout) { #ifdef _MSC_VER _fcloseall(); #else fclose(trace_file); #endif } trace_file = NULL; } prof_pop_threads(profile); /* Unset the last_thread_data (very important!) and the threads table */ profile->running = profile->paused = Qfalse; profile->last_thread_data = NULL; /* Post process result */ rb_funcall(self, rb_intern("post_process") , 0); return self; } |
#threads ⇒ array of RubyProf::Thread
Returns an array of RubyProf::Thread instances that were executed while the the program was being run.
642 643 644 645 646 647 648 649 |
# File 'ext/ruby_prof/ruby_prof.c', line 642 static VALUE prof_threads(VALUE self) { VALUE result = rb_ary_new(); prof_profile_t* profile = prof_get_profile(self); st_foreach(profile->threads_tbl, collect_threads, result); return result; } |