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.



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

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.



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

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.



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

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.



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

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

  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.



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

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.



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

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.



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

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.



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

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.



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

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.



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

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