Class: Debugger::ConditionCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/ruby-debug/commands/condition.rb

Overview

:nodoc:

Constant Summary

Constants inherited from Command

Debugger::Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map

Constructor Details

This class inherits a constructor from Debugger::Command

Class Method Details

.help(cmd) ⇒ Object



43
44
45
46
47
48
49
50
# File 'lib/ruby-debug/commands/condition.rb', line 43

def help(cmd)
  %{
    Condition breakpoint-number expression
Specify breakpoint number N to break only if COND is true.
N is an integer and COND is an expression to be evaluated whenever 
breakpoint N is reached. If the empty string is used, the condition is removed.
  }
end

.help_commandObject



39
40
41
# File 'lib/ruby-debug/commands/condition.rb', line 39

def help_command
  'condition'
end

Instance Method Details

#executeObject



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
# File 'lib/ruby-debug/commands/condition.rb', line 9

def execute
  if not @match[1]
    errmsg pr("condition.errors.syntax")
  else
    breakpoints = Debugger.breakpoints.sort_by{|b| b.id }
    largest = breakpoints.inject(0) do |tally, b|
      tally = b.id if b.id > tally
    end
    if 0 == largest
      print pr("condition.errors.no_breakpoints")
      return
    end
    pos = get_int(@match[1], "Condition", 1, largest)
    return unless pos
    breakpoints.each do |b|
      if b.id == pos 
        b.expr = @match[2].empty? ? nil : @match[2]
        if b.expr
          print pr("conditions.set_condition", id: b.id, expr: b.expr)
        else
          print pr("conditions.unset_condition", id: b.id)
        end
        break
      end
    end

  end
end

#regexpObject



5
6
7
# File 'lib/ruby-debug/commands/condition.rb', line 5

def regexp
  /^\s* cond(?:ition)? (?:\s+(\d+)\s*(.*))?$/ix
end