Class: Raven::Backtrace::Line

Inherits:
Object
  • Object
show all
Defined in:
lib/raven/backtrace.rb

Overview

Handles backtrace parsing line by line

Constant Summary collapse

RUBY_INPUT_FORMAT =

regexp (optionnally allowing leading X: for windows support)

/^((?:[a-zA-Z]:)?[^:]+|<.*>):(\d+)(?::in `([^']+)')?$/
JAVA_INPUT_FORMAT =

org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)

/^(.+)\.([^\.]+)\(([^\:]+)\:(\d+)\)$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, number, method, module_name) ⇒ Line

Returns a new instance of Line.



41
42
43
44
45
46
# File 'lib/raven/backtrace.rb', line 41

def initialize(file, number, method, module_name)
  self.file = file
  self.module_name = module_name
  self.number = number.to_i
  self.method = method
end

Instance Attribute Details

#fileObject

The file portion of the line (such as app/models/user.rb)



15
16
17
# File 'lib/raven/backtrace.rb', line 15

def file
  @file
end

#methodObject

The method of the line (such as index)



21
22
23
# File 'lib/raven/backtrace.rb', line 21

def method
  @method
end

#module_nameObject

The module name (JRuby)



24
25
26
# File 'lib/raven/backtrace.rb', line 24

def module_name
  @module_name
end

#numberObject

The line number portion of the line



18
19
20
# File 'lib/raven/backtrace.rb', line 18

def number
  @number
end

Class Method Details

.in_app_patternObject



69
70
71
72
73
74
# File 'lib/raven/backtrace.rb', line 69

def self.in_app_pattern
  @in_app_pattern ||= begin
    project_root = Raven.configuration.project_root && Raven.configuration.project_root.to_s
    Regexp.new("^(#{project_root}/)?#{Raven.configuration.app_dirs_pattern || APP_DIRS_PATTERN}")
  end
end

.parse(unparsed_line) ⇒ Line

Parses a single line of a given backtrace

Parameters:

  • unparsed_line (String)

    The raw line from caller or some backtrace

Returns:

  • (Line)

    The parsed backtrace line



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/raven/backtrace.rb', line 29

def self.parse(unparsed_line)
  ruby_match = unparsed_line.match(RUBY_INPUT_FORMAT)
  if ruby_match
    _, file, number, method = ruby_match.to_a
    module_name = nil
  else
    java_match = unparsed_line.match(JAVA_INPUT_FORMAT)
    _, module_name, method, file, number = java_match.to_a
  end
  new(file, number, method, module_name)
end

Instance Method Details

#==(other) ⇒ Object



61
62
63
# File 'lib/raven/backtrace.rb', line 61

def ==(other)
  to_s == other.to_s
end

#in_appObject



48
49
50
51
52
53
54
# File 'lib/raven/backtrace.rb', line 48

def in_app
  if file =~ self.class.in_app_pattern
    true
  else
    false
  end
end

#inspectObject



65
66
67
# File 'lib/raven/backtrace.rb', line 65

def inspect
  "<Line:#{self}>"
end

#to_sObject

Reconstructs the line in a readable fashion



57
58
59
# File 'lib/raven/backtrace.rb', line 57

def to_s
  "#{file}:#{number}:in `#{method}'"
end