Class: Byebug::Breakpoint
- Inherits:
-
Object
- Object
- Byebug::Breakpoint
- Defined in:
- lib/byebug/breakpoint.rb,
ext/byebug/breakpoint.c
Overview
Implements breakpoints
Class Method Summary collapse
-
.add(file, line, expr = nil) ⇒ Object
Adds a new breakpoint.
-
.first ⇒ Object
First breakpoint, in order of creation.
-
.last ⇒ Object
Last breakpoint, in order of creation.
-
.none? ⇒ Boolean
True if there’s no breakpoints.
-
.potential_line?(filename, lineno) ⇒ Boolean
Returns true if a breakpoint could be set in line number
lineno
in file name +filename. -
.potential_lines(filename) ⇒ Object
Returns an array of line numbers in file named
filename
where breakpoints could be set. -
.remove(id) ⇒ Object
Removes a breakpoint.
Instance Method Summary collapse
-
#enabled=(true) ⇒ Object
Enables or disables breakpoint.
-
#enabled? ⇒ Boolean
Returns
true
if breakpoint is enabled, false otherwise. -
#expr ⇒ String
Returns a conditional expression which indicates when this breakpoint should be activated.
-
#expr=(string) ⇒ Object
Sets or unsets the conditional expression which indicates when this breakpoint should be activated.
-
#hit_condition ⇒ Object
Returns the hit condition of the breakpoint:
nil
if it is an unconditional breakpoint, or :greater_or_equal, :equal or :modulo otherwise. -
#hit_condition=(symbol) ⇒ Object
Sets the hit condition of the breakpoint which must be one of the following values:.
-
#hit_count ⇒ Integer
Returns the number of times this breakpoint has been hit.
-
#hit_value ⇒ Integer
Returns the hit value of the breakpoint, namely, a value to build a condition on the number of hits of the breakpoint.
-
#hit_value=(int) ⇒ Object
Sets the hit value of the breakpoint.
-
#id ⇒ Integer
Returns the id of the breakpoint.
- #initialize(source, pos, expr) ⇒ Object constructor
-
#inspect ⇒ Object
Prints all information associated to the breakpoint.
-
#pos ⇒ String, Integer
Returns the position of this breakpoint, either a method name or a line number.
-
#source ⇒ String
Returns the source file of the breakpoint.
Constructor Details
#initialize(source, pos, expr) ⇒ Object
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'ext/byebug/breakpoint.c', line 263
static VALUE
brkpt_initialize(VALUE self, VALUE source, VALUE pos, VALUE expr)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
breakpoint->type = FIXNUM_P(pos) ? BP_POS_TYPE : BP_METHOD_TYPE;
if (breakpoint->type == BP_POS_TYPE)
breakpoint->pos.line = FIX2INT(pos);
else
breakpoint->pos.mid = SYM2ID(pos);
breakpoint->id = ++breakpoint_max;
breakpoint->source = StringValue(source);
breakpoint->enabled = Qtrue;
breakpoint->expr = NIL_P(expr) ? expr : StringValue(expr);
breakpoint->hit_count = 0;
breakpoint->hit_value = 0;
breakpoint->hit_condition = HIT_COND_NONE;
return Qnil;
}
|
Class Method Details
.add(file, line, expr = nil) ⇒ Object
Adds a new breakpoint
29 30 31 32 33 |
# File 'lib/byebug/breakpoint.rb', line 29 def self.add(file, line, expr = nil) breakpoint = Breakpoint.new(file, line, expr) Byebug.breakpoints << breakpoint breakpoint end |
.first ⇒ Object
First breakpoint, in order of creation
11 12 13 |
# File 'lib/byebug/breakpoint.rb', line 11 def self.first Byebug.breakpoints.first end |
.last ⇒ Object
Last breakpoint, in order of creation
18 19 20 |
# File 'lib/byebug/breakpoint.rb', line 18 def self.last Byebug.breakpoints.last end |
.none? ⇒ Boolean
True if there’s no breakpoints
81 82 83 |
# File 'lib/byebug/breakpoint.rb', line 81 def self.none? Byebug.breakpoints.empty? end |
.potential_line?(filename, lineno) ⇒ Boolean
Returns true if a breakpoint could be set in line number lineno
in file name +filename.
74 75 76 |
# File 'lib/byebug/breakpoint.rb', line 74 def self.potential_line?(filename, lineno) potential_lines(filename).member?(lineno) end |
.potential_lines(filename) ⇒ Object
Returns an array of line numbers in file named filename
where breakpoints could be set. The list will contain an entry for each distinct line event call so it is possible (and possibly useful) for a line number appear more than once.
52 53 54 55 56 57 |
# File 'lib/byebug/breakpoint.rb', line 52 def self.potential_lines(filename) name = "#{Time.new.to_i}_#{rand(2**31)}" iseq = RubyVM::InstructionSequence.compile(File.read(filename), name) potential_lines_with_trace_points(iseq, {}) end |
.remove(id) ⇒ Object
Removes a breakpoint
40 41 42 |
# File 'lib/byebug/breakpoint.rb', line 40 def self.remove(id) Byebug.breakpoints.reject! { |b| b.id == id } end |
Instance Method Details
#enabled=(true) ⇒ Object
Enables or disables breakpoint.
45 46 47 48 49 50 51 52 |
# File 'ext/byebug/breakpoint.c', line 45
static VALUE
brkpt_set_enabled(VALUE self, VALUE enabled)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return breakpoint->enabled = enabled;
}
|
#enabled? ⇒ Boolean
Returns true
if breakpoint is enabled, false otherwise.
30 31 32 33 34 35 36 37 |
# File 'ext/byebug/breakpoint.c', line 30
static VALUE
brkpt_enabled(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return breakpoint->enabled;
}
|
#expr ⇒ String
Returns a conditional expression which indicates when this breakpoint should be activated.
61 62 63 64 65 66 67 68 |
# File 'ext/byebug/breakpoint.c', line 61
static VALUE
brkpt_expr(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return breakpoint->expr;
}
|
#expr=(string) ⇒ Object
Sets or unsets the conditional expression which indicates when this breakpoint should be activated.
77 78 79 80 81 82 83 84 85 |
# File 'ext/byebug/breakpoint.c', line 77
static VALUE
brkpt_set_expr(VALUE self, VALUE expr)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
breakpoint->expr = NIL_P(expr) ? expr : StringValue(expr);
return expr;
}
|
#hit_condition ⇒ Object
Returns the hit condition of the breakpoint: nil
if it is an
unconditional breakpoint, or :greater_or_equal, :equal or :modulo otherwise
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'ext/byebug/breakpoint.c', line 94
static VALUE
brkpt_hit_condition(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
switch (breakpoint->hit_condition)
{
case HIT_COND_GE:
return ID2SYM(rb_intern("greater_or_equal"));
case HIT_COND_EQ:
return ID2SYM(rb_intern("equal"));
case HIT_COND_MOD:
return ID2SYM(rb_intern("modulo"));
case HIT_COND_NONE:
default:
return Qnil;
}
}
|
#hit_condition=(symbol) ⇒ Object
Sets the hit condition of the breakpoint which must be one of the following values:
nil
if it is an unconditional breakpoint, or :greater_or_equal(:ge), :equal(:eq), :modulo(:mod)
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 |
# File 'ext/byebug/breakpoint.c', line 124
static VALUE
brkpt_set_hit_condition(VALUE self, VALUE value)
{
breakpoint_t *breakpoint;
ID id_value;
Data_Get_Struct(self, breakpoint_t, breakpoint);
if (NIL_P(value))
{
breakpoint->hit_condition = HIT_COND_NONE;
return value;
}
id_value = rb_to_id(value);
if (rb_intern("greater_or_equal") == id_value || rb_intern("ge") == id_value)
breakpoint->hit_condition = HIT_COND_GE;
else if (rb_intern("equal") == id_value || rb_intern("eq") == id_value)
breakpoint->hit_condition = HIT_COND_EQ;
else if (rb_intern("modulo") == id_value || rb_intern("mod") == id_value)
breakpoint->hit_condition = HIT_COND_MOD;
else
rb_raise(rb_eArgError, "Invalid condition parameter");
return value;
}
|
#hit_count ⇒ Integer
Returns the number of times this breakpoint has been hit.
157 158 159 160 161 162 163 164 |
# File 'ext/byebug/breakpoint.c', line 157
static VALUE
brkpt_hit_count(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return INT2FIX(breakpoint->hit_count);
}
|
#hit_value ⇒ Integer
Returns the hit value of the breakpoint, namely, a value to build a condition on the number of hits of the breakpoint.
173 174 175 176 177 178 179 180 |
# File 'ext/byebug/breakpoint.c', line 173
static VALUE
brkpt_hit_value(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return INT2FIX(breakpoint->hit_value);
}
|
#hit_value=(int) ⇒ Object
Sets the hit value of the breakpoint. This allows the user to set conditions on the number of hits to enable/disable the breakpoint.
189 190 191 192 193 194 195 196 197 |
# File 'ext/byebug/breakpoint.c', line 189
static VALUE
brkpt_set_hit_value(VALUE self, VALUE value)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
breakpoint->hit_value = FIX2INT(value);
return value;
}
|
#id ⇒ Integer
Returns the id of the breakpoint.
205 206 207 208 209 210 211 212 |
# File 'ext/byebug/breakpoint.c', line 205
static VALUE
brkpt_id(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return INT2FIX(breakpoint->id);
}
|
#inspect ⇒ Object
Prints all information associated to the breakpoint
88 89 90 91 92 |
# File 'lib/byebug/breakpoint.rb', line 88 def inspect meths = %w[id pos source expr hit_condition hit_count hit_value enabled?] values = meths.map { |field| "#{field}: #{send(field)}" }.join(", ") "#<Byebug::Breakpoint #{values}>" end |
#pos ⇒ String, Integer
Returns the position of this breakpoint, either a method name or a line
number.
221 222 223 224 225 226 227 228 229 230 231 |
# File 'ext/byebug/breakpoint.c', line 221
static VALUE
brkpt_pos(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
if (breakpoint->type == BP_METHOD_TYPE)
return rb_str_new2(rb_id2name(breakpoint->pos.mid));
else
return INT2FIX(breakpoint->pos.line);
}
|
#source ⇒ String
Returns the source file of the breakpoint.
239 240 241 242 243 244 245 246 |
# File 'ext/byebug/breakpoint.c', line 239
static VALUE
brkpt_source(VALUE self)
{
breakpoint_t *breakpoint;
Data_Get_Struct(self, breakpoint_t, breakpoint);
return breakpoint->source;
}
|