Class: Honeybadger::Backtrace Private

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

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Front end to parsing the backtrace for each notice.

Defined Under Namespace

Classes: Line

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lines) ⇒ Backtrace

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Backtrace.



127
128
129
130
# File 'lib/honeybadger/backtrace.rb', line 127

def initialize(lines)
  self.lines = lines
  self.application_lines = lines.select(&:application?)
end

Instance Attribute Details

#application_linesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Holder for an Array of Backtrace::Line instances.



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

def application_lines
  @application_lines
end

#linesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Holder for an Array of Backtrace::Line instances.



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

def lines
  @lines
end

Class Method Details

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

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



117
118
119
120
121
122
123
124
125
# File 'lib/honeybadger/backtrace.rb', line 117

def self.parse(ruby_backtrace, opts = {})
  ruby_lines = split_multiline_backtrace(ruby_backtrace.to_a)

  lines = ruby_lines.collect do |unparsed_line|
    Line.parse(unparsed_line.to_s, opts)
  end.compact

  instance = new(lines)
end

Instance Method Details

#==(other) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



162
163
164
165
166
167
168
# File 'lib/honeybadger/backtrace.rb', line 162

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

#as_json(options = {}) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

JSON support.

Returns JSON representation of backtrace.



143
144
145
# File 'lib/honeybadger/backtrace.rb', line 143

def as_json(options = {})
  to_ary
end

#inspectObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



158
159
160
# File 'lib/honeybadger/backtrace.rb', line 158

def inspect
  "<Backtrace: " + lines.collect { |line| line.inspect }.join(", ") + ">"
end

#to_aryObject Also known as: to_a

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Convert Backtrace to arry.

Returns array containing backtrace lines.



135
136
137
# File 'lib/honeybadger/backtrace.rb', line 135

def to_ary
  lines.take(1000).map { |l| { :number => l.filtered_number, :file => l.filtered_file, :method => l.filtered_method, :source => l.source } }
end

#to_json(*a) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Creates JSON.

Returns valid JSON representation of backtrace.



150
151
152
# File 'lib/honeybadger/backtrace.rb', line 150

def to_json(*a)
  as_json.to_json(*a)
end

#to_sObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



154
155
156
# File 'lib/honeybadger/backtrace.rb', line 154

def to_s
  lines.map(&:to_s).join("\n")
end