Module: Hammertime

Included in:
Object
Defined in:
lib/hammertime.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.debug_supported?Boolean

Returns:

  • (Boolean)


20
21
22
23
24
25
26
27
# File 'lib/hammertime.rb', line 20

def self.debug_supported?
  require 'ruby-debug'
  @debug_support = true
rescue LoadError
  warn "Unable to load ruby-debug"
  warn "Gem not installed or debugging not supported on your platform"
  @debug_support = false
end

.ignored_errorsObject



4
5
6
# File 'lib/hammertime.rb', line 4

def self.ignored_errors
  @ignored_errors ||= [LoadError]
end

.ignored_linesObject



8
9
10
# File 'lib/hammertime.rb', line 8

def self.ignored_lines
  @ignored_lines ||= []
end

.stoppedObject



12
13
14
# File 'lib/hammertime.rb', line 12

def self.stopped
  @stopped ||= false
end

.stopped=(value) ⇒ Object



16
17
18
# File 'lib/hammertime.rb', line 16

def self.stopped=(value)
  @stopped = value
end

Instance Method Details

#fail(*args) ⇒ Object



111
112
113
# File 'lib/hammertime.rb', line 111

def fail(*args)
  hammertime_raise(*args)
end

#hammertime_original_raise(*args) ⇒ Object



107
108
109
# File 'lib/hammertime.rb', line 107

def hammertime_original_raise(*args)
  Kernel.instance_method(:raise).bind(self).call(*args)
end

#hammertime_raise(*args) ⇒ Object



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
# File 'lib/hammertime.rb', line 29

def hammertime_raise(*args)
  backtrace = caller(2)
  Thread.exclusive do
    error, backtrace = 
      case args.size
      when 0 then [($!.nil? ? RuntimeError.new : $!), backtrace]
      when 1 then 
        if args[0].is_a?(String) 
          [RuntimeError.exception(args[0]), backtrace]
        else
          [args[0].exception, backtrace]
        end
      when 2 then
        [args[0].exception(args[1]), backtrace]
      when 3 then
        [args[0].exception(args[1]), args[2]]
      else
        super(ArgumentError, "wrong number of arguments", backtrace)
      end
    error.set_backtrace(backtrace)

    if hammertime_ignore_error?(error, backtrace)
      hammertime_original_raise(error)
    else
      ::Hammertime.stopped = true
    end
    
    c = ::Hammertime.hammertime_console
    c.say "\n"
    c.say "=== Stop! Hammertime. ==="
    c.say "An error has occurred at #{backtrace.first}"
    c.say "The error is: #{error.inspect}"
    menu_config = lambda do |menu|
      menu.prompt    = "What now?"
      menu.default   = "Continue"
      menu.select_by = :index_or_name

      menu.choice "Continue (process the exception normally)" do
        hammertime_original_raise(error)
        true
      end
      menu.choice "Ignore (proceed without raising an exception)" do
        true
      end
      menu.choice "Permit by type (don't ask about future errors of this type)" do
        ::Hammertime.ignored_errors << error.class
        c.say "Added #{error.class} to permitted error types"
        hammertime_original_raise(error)
        true
      end
      menu.choice "Permit by line (don't ask about future errors raised from this point)" do
        ::Hammertime.ignored_lines << backtrace.first
        c.say "Added #{backtrace.first} to permitted error lines"
        hammertime_original_raise(error)
        true
      end
      menu.choice "Backtrace (show the call stack leading up to the error)" do
        backtrace.each do |frame| c.say frame end
        false
      end
      if Hammertime.debug_supported?
        menu.choice "Debug (start a debugger)" do
          debugger
          false
        end
      end
      menu.choice "Console (start an IRB session)" do
        require 'irb'
        IRB.start
        false
      end
    end
    continue = c.choose(&menu_config) until continue
  end
ensure
  ::Hammertime.stopped = false
end

#raise(*args) ⇒ Object



115
116
117
# File 'lib/hammertime.rb', line 115

def raise(*args)
  hammertime_raise(*args)
end