Class: Raven::Backtrace

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

Overview

Front end to parsing the backtrace for each notice

Defined Under Namespace

Classes: Line

Constant Summary collapse

APP_DIRS_PATTERN =
/(bin|exe|app|config|lib|test)/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lines) ⇒ Backtrace

Returns a new instance of Backtrace.



104
105
106
# File 'lib/raven/backtrace.rb', line 104

def initialize(lines)
  self.lines = lines
end

Instance Attribute Details

#linesObject

holder for an Array of Backtrace::Line instances



85
86
87
# File 'lib/raven/backtrace.rb', line 85

def lines
  @lines
end

Class Method Details

.parse(backtrace, opts = {}) ⇒ Object



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/raven/backtrace.rb', line 87

def self.parse(backtrace, opts = {})
  ruby_lines = backtrace.is_a?(Array) ? backtrace : backtrace.split(/\n\s*/)

  filters = opts[:filters] || []
  filtered_lines = ruby_lines.to_a.map do |line|
    filters.reduce(line) do |nested_line, proc|
      proc.call(nested_line)
    end
  end.compact

  lines = filtered_lines.map do |unparsed_line|
    Line.parse(unparsed_line)
  end

  new(lines)
end

Instance Method Details

#==(other) ⇒ Object



120
121
122
123
124
125
126
# File 'lib/raven/backtrace.rb', line 120

def ==(other)
  if other.respond_to?(:lines)
    lines == other.lines
  else
    false
  end
end

#inspectObject



108
109
110
# File 'lib/raven/backtrace.rb', line 108

def inspect
  "<Backtrace: " + lines.map(&inspect).join(", ") + ">"
end

#to_sObject



112
113
114
115
116
117
118
# File 'lib/raven/backtrace.rb', line 112

def to_s
  content = []
  lines.each do |line|
    content << line
  end
  content.join("\n")
end