Module: Byebug
- Defined in:
- ext/byebug/byebug.c
Defined Under Namespace
Classes: Breakpoint, DebugThread, ThreadsTable
Class Method Summary collapse
-
._start ⇒ Object
This method is internal and activates the debugger.
-
.add_catchpoint(exception) ⇒ Exception
Adds a new exception to the catchpoints array.
-
.breakpoints ⇒ Array
Returns an array of breakpoints.
-
.catchpoints ⇒ Array
Returns an array of catchpoints.
-
.contexts ⇒ Array
Returns an array of all contexts.
-
.current_context ⇒ Object
Returns the current context.
-
.debug_at_exit { ... } ⇒ Proc
Register
at_exithook which is escaped from byebug. -
.debug_load(file, stop = false) ⇒ nil
Same as Kernel#load but resets current context’s frames.
-
.post_mortem=(bool) ⇒ Object
Sets post-moterm flag.
-
.post_mortem? ⇒ Boolean
Returns
trueif post-moterm debugging is enabled. -
.started? ⇒ Boolean
Returns
truebyebug is started. -
.stop ⇒ Boolean
This method disables byebug.
-
.thread_context(thread) ⇒ Object
Returns context of the thread passed as an argument.
-
.tracing=(bool) ⇒ Object
Sets the global tracing flag.
-
.tracing ⇒ Boolean
Returns
trueif global tracing is enabled. -
.verbose ⇒ Boolean
Returns
trueif verbose output of TracePoint API events is enabled. -
.verbose=(bool) ⇒ Object
Enable verbose output of every TracePoint API events, useful for debugging byebug.
Class Method Details
.start_ ⇒ Boolean .start_ { ... } ⇒ Boolean
This method is internal and activates the debugger. Use Byebug.start (from lib/byebug.rb) instead.
The return value is the value of !Byebug.started? before issuing the start; That is, true is returned, unless byebug was previously started.
If a block is given, it starts byebug and yields to block. When the block is finished executing it stops the debugger with Byebug.stop method.
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 |
# File 'ext/byebug/byebug.c', line 559 static VALUE bb_start(VALUE self) { VALUE result; if (IS_STARTED) result = Qfalse; else { locker = Qnil; breakpoints = rb_ary_new(); catchpoints = rb_hash_new(); threads = threads_create(); register_tracepoints(self); result = Qtrue; } if (rb_block_given_p()) rb_ensure(rb_yield, self, bb_stop, self); return result; } |
.add_catchpoint(exception) ⇒ Exception
Adds a new exception to the catchpoints array.
785 786 787 788 789 790 791 792 793 |
# File 'ext/byebug/byebug.c', line 785 static VALUE bb_add_catchpoint(VALUE self, VALUE value) { if (TYPE(value) != T_STRING) rb_raise(rb_eTypeError, "value of a catchpoint must be String"); rb_hash_aset(catchpoints, rb_str_dup(value), INT2FIX(0)); return value; } |
.breakpoints ⇒ Array
Returns an array of breakpoints.
761 762 763 764 765 |
# File 'ext/byebug/byebug.c', line 761 static VALUE bb_breakpoints(VALUE self) { return breakpoints; } |
.catchpoints ⇒ Array
Returns an array of catchpoints.
773 774 775 776 777 |
# File 'ext/byebug/byebug.c', line 773 static VALUE bb_catchpoints(VALUE self) { return catchpoints; } |
.contexts ⇒ Array
Returns an array of all contexts.
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 |
# File 'ext/byebug/byebug.c', line 438 static VALUE bb_contexts(VALUE self) { volatile VALUE list; volatile VALUE new_list; VALUE context; threads_table_t *t_tbl; debug_context_t *dc; int i; check_started(); new_list = rb_ary_new(); list = rb_funcall(rb_cThread, rb_intern("list"), 0); for (i = 0; i < RARRAY_LEN(list); i++) { VALUE thread = rb_ary_entry(list, i); thread_context_lookup(thread, &context); rb_ary_push(new_list, context); } threads_clear(threads); Data_Get_Struct(threads, threads_table_t, t_tbl); for (i = 0; i < RARRAY_LEN(new_list); i++) { context = rb_ary_entry(new_list, i); Data_Get_Struct(context, debug_context_t, dc); st_insert(t_tbl->tbl, dc->thread, context); } return new_list; } |
.current_context ⇒ Object
Returns the current context.
<i>Note:</i> Byebug.current_context.thread == Thread.current
498 499 500 501 502 503 504 505 506 507 508 |
# File 'ext/byebug/byebug.c', line 498 static VALUE bb_current_context(VALUE self) { VALUE context; check_started(); thread_context_lookup(rb_thread_current(), &context); return context; } |
.debug_at_exit { ... } ⇒ Proc
Register at_exit hook which is escaped from byebug.
693 694 695 696 697 698 699 700 701 702 703 |
# File 'ext/byebug/byebug.c', line 693 static VALUE bb_at_exit(VALUE self) { VALUE proc; if (!rb_block_given_p()) rb_raise(rb_eArgError, "called without a block"); proc = rb_block_proc(); rb_set_end_proc(debug_at_exit_i, proc); return proc; } |
.debug_load(file, stop = false) ⇒ nil
Same as Kernel#load but resets current context’s frames. stop parameter forces byebug to stop at the first line of code in file
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 |
# File 'ext/byebug/byebug.c', line 590 static VALUE bb_load(int argc, VALUE *argv, VALUE self) { VALUE file, stop, context; debug_context_t *dc; VALUE status = Qnil; int state = 0; if (rb_scan_args(argc, argv, "11", &file, &stop) == 1) { stop = Qfalse; } bb_start(self); context = bb_current_context(self); Data_Get_Struct(context, debug_context_t, dc); if (RTEST(stop)) dc->steps = 1; /* Initializing $0 to the script's path */ ruby_script(RSTRING_PTR(file)); rb_load_protect(file, 0, &state); if (0 != state) { status = rb_errinfo(); reset_stepping_stop_points(dc); } /* We should run all at_exit handler's in order to provide, for instance, a * chance to run all defined test cases */ rb_exec_end_proc(); return status; } |
.post_mortem=(bool) ⇒ Object
Sets post-moterm flag.
748 749 750 751 752 753 |
# File 'ext/byebug/byebug.c', line 748 static VALUE bb_set_post_mortem(VALUE self, VALUE value) { post_mortem = RTEST(value) ? Qtrue : Qfalse; return value; } |
.post_mortem? ⇒ Boolean
Returns true if post-moterm debugging is enabled.
736 737 738 739 740 |
# File 'ext/byebug/byebug.c', line 736 static VALUE bb_post_mortem(VALUE self) { return post_mortem; } |
.started? ⇒ Boolean
Returns true byebug is started.
516 517 518 519 520 |
# File 'ext/byebug/byebug.c', line 516 static VALUE bb_started(VALUE self) { return IS_STARTED; } |
.stop ⇒ Boolean
This method disables byebug. It returns true if byebug was already disabled, otherwise it returns false.
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 |
# File 'ext/byebug/byebug.c', line 529 static VALUE bb_stop(VALUE self) { if (IS_STARTED) { clear_tracepoints(self); breakpoints = Qnil; catchpoints = Qnil; threads = Qnil; return Qfalse; } return Qtrue; } |
.thread_context(thread) ⇒ Object
Returns context of the thread passed as an argument.
479 480 481 482 483 484 485 486 487 488 489 |
# File 'ext/byebug/byebug.c', line 479 static VALUE bb_thread_context(VALUE self, VALUE thread) { VALUE context; check_started(); thread_context_lookup(thread, &context); return context; } |
.tracing=(bool) ⇒ Object
Sets the global tracing flag.
723 724 725 726 727 728 |
# File 'ext/byebug/byebug.c', line 723 static VALUE bb_set_tracing(VALUE self, VALUE value) { tracing = RTEST(value) ? Qtrue : Qfalse; return value; } |
.tracing ⇒ Boolean
Returns true if global tracing is enabled.
711 712 713 714 715 |
# File 'ext/byebug/byebug.c', line 711 static VALUE bb_tracing(VALUE self) { return tracing; } |
.verbose ⇒ Boolean
Returns true if verbose output of TracePoint API events is enabled.
632 633 634 635 636 |
# File 'ext/byebug/byebug.c', line 632 static VALUE bb_verbose(VALUE self) { return verbose; } |
.verbose=(bool) ⇒ Object
Enable verbose output of every TracePoint API events, useful for debugging byebug.
645 646 647 648 649 650 |
# File 'ext/byebug/byebug.c', line 645 static VALUE bb_set_verbose(VALUE self, VALUE value) { verbose = RTEST(value) ? Qtrue : Qfalse; return value; } |