Exception: StandardError

Inherits:
Exception
  • Object
show all
Defined in:
lib/coaster/core_ext/standard_error.rb,
lib/coaster/core_ext/standard_error/raven.rb,
lib/coaster/core_ext/standard_error/sentry.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, cause = $!) ⇒ StandardError

Returns a new instance of StandardError.



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
# File 'lib/coaster/core_ext/standard_error.rb', line 35

def initialize(message = nil, cause = $!)
  @fingerprint = Coaster.default_fingerprint.dup
  @tags = {}
  @level = 'error'
  @attributes = HashWithIndifferentAccess.new
  @attributes.merge!(cause.attributes || {}) if cause && cause.respond_to?(:attributes)
  @tkey = nil

  case message
  when Exception
    msg = message
    set_backtrace(message.backtrace)
  when StandardError
    @fingerprint = message.fingerprint
    @tags = message.tags
    @level = message.level
    @tkey = message.tkey
    @attributes = message.attributes
    msg = message
    set_backtrace(message.backtrace)
  when Hash then
    @coaster = true # coaster 확장을 사용한 에러임을 확인할 수 있음.
    hash = message.with_indifferent_access rescue message
    msg = hash.delete(:m)
    msg = hash.delete(:msg) || msg
    msg = hash.delete(:message) || msg
    hash[:description] ||= hash.delete(:desc) if hash[:desc].present?
    @fingerprint = hash.delete(:fingerprint) || hash.delete(:fingerprints)
    @tags = hash.delete(:tags) || hash.delete(:tag)
    @level = hash.delete(:level) || hash.delete(:severity) || @level
    @tkey = hash.delete(:tkey)
    @attributes.merge!(hash)
    if @attributes[:description] == :translate
      @attributes.delete(:description)
      @attributes[:description] = _translate
    end
    msg = "#{_translate} (#{msg || self.class.name})"
    msg = "#{msg} {#{cause.message}}" if cause
  when String then
    msg = message
  when FalseClass, NilClass then
    msg = nil
  else
    msg = message
  end

  @fingerprint = [] unless @fingerprint.is_a?(Array)
  @tags = {} unless @tags.is_a?(Hash)
  msg = "{#{cause.message}}" if msg.blank? && cause
  super(msg)
end

Instance Attribute Details

#fingerprintObject

Returns the value of attribute fingerprint.



33
34
35
# File 'lib/coaster/core_ext/standard_error.rb', line 33

def fingerprint
  @fingerprint
end

#levelObject

Returns the value of attribute level.



33
34
35
# File 'lib/coaster/core_ext/standard_error.rb', line 33

def level
  @level
end

#ravenObject



10
11
12
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 10

def raven
  @raven ||= {}.with_indifferent_access
end

#tagsObject

Returns the value of attribute tags.



33
34
35
# File 'lib/coaster/core_ext/standard_error.rb', line 33

def tags
  @tags
end

#tkeyObject

Returns the value of attribute tkey.



33
34
35
# File 'lib/coaster/core_ext/standard_error.rb', line 33

def tkey
  @tkey
end

Class Method Details

.after_logging(name, &block) ⇒ Object



23
24
25
26
# File 'lib/coaster/core_ext/standard_error.rb', line 23

def after_logging(name, &block)
  @after_logging_blocks ||= {}
  @after_logging_blocks[name] = block
end

.after_logging_blocksObject



27
28
29
30
# File 'lib/coaster/core_ext/standard_error.rb', line 27

def after_logging_blocks
  @after_logging_blocks ||= {}
  superclass <= StandardError ? superclass.after_logging_blocks.merge(@after_logging_blocks) : @after_logging_blocks
end

.before_logging(name, &block) ⇒ Object



14
15
16
17
# File 'lib/coaster/core_ext/standard_error.rb', line 14

def before_logging(name, &block)
  @before_logging_blocks ||= {}
  @before_logging_blocks[name] = block
end

.before_logging_blocksObject



18
19
20
21
# File 'lib/coaster/core_ext/standard_error.rb', line 18

def before_logging_blocks
  @before_logging_blocks ||= {}
  superclass <= StandardError ? superclass.before_logging_blocks.merge(@before_logging_blocks) : @before_logging_blocks
end

.codeObject

Unknown



8
# File 'lib/coaster/core_ext/standard_error.rb', line 8

def status; 999999 end

.http_statusObject



9
# File 'lib/coaster/core_ext/standard_error.rb', line 9

def http_status;  500 end

.intentional?Boolean

Returns:

  • (Boolean)


11
# File 'lib/coaster/core_ext/standard_error.rb', line 11

def intentional?; false end

.report?Boolean

Returns:

  • (Boolean)


10
# File 'lib/coaster/core_ext/standard_error.rb', line 10

def report?;      true end

.statusObject

Unknown



7
# File 'lib/coaster/core_ext/standard_error.rb', line 7

def status; 999999 end

.titleObject



12
# File 'lib/coaster/core_ext/standard_error.rb', line 12

def title; _translate('.title') end

Instance Method Details

#_translate(*args) ⇒ Object



128
129
130
131
# File 'lib/coaster/core_ext/standard_error.rb', line 128

def _translate(*args)
  return description if description.present?
  super
end

#_translate_paramsObject



133
134
135
# File 'lib/coaster/core_ext/standard_error.rb', line 133

def _translate_params
  attributes
end

#after_logging_blocksObject



90
# File 'lib/coaster/core_ext/standard_error.rb', line 90

def after_logging_blocks; self.class.after_logging_blocks end

#attributesObject Also known as: attr



93
94
95
96
97
98
99
100
# File 'lib/coaster/core_ext/standard_error.rb', line 93

def attributes
  return @attributes if defined?(@attributes)
  @attributes = HashWithIndifferentAccess.new
  if cause && cause.respond_to?(:attributes) && cause.attributes.is_a?(Hash)
    @attributes = @attributes.merge(cause.attributes)
  end
  @attributes
end

#before_logging_blocksObject



89
# File 'lib/coaster/core_ext/standard_error.rb', line 89

def before_logging_blocks; self.class.before_logging_blocks end

#capture(options = {}) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 39

def capture(options = {})
  return if options.key?(:report) && !options[:report]
  return unless report?
  nt = notes(options)
  Raven.capture_exception(self, level: nt[:level]) do |event|
    event.user.merge!(nt[:user] || {})
    event.tags.merge!(nt[:tags])
    event.extra.merge!(nt[:extra])
    event.fingerprint = raven_fingerprint
  end
rescue => e
  msg = "#{e.class.name}: #{e.message}"
  msg += "\n\t" + e.backtrace.join("\n\t")
  Raven.logger.error(msg)
end

#codeObject



105
# File 'lib/coaster/core_ext/standard_error.rb', line 105

def code;         attributes[:code] || status end

#code=(value) ⇒ Object



106
# File 'lib/coaster/core_ext/standard_error.rb', line 106

def code=(value); attributes[:code] = value end

#descriptionObject Also known as: desc

description is user friendly message as a attribute, do not use error’s message error message is not user friendly in many cases.



125
# File 'lib/coaster/core_ext/standard_error.rb', line 125

def description; attributes[:description] || attributes[:desc] end

#descriptionsObject

another user friendly messages



145
146
147
148
149
# File 'lib/coaster/core_ext/standard_error.rb', line 145

def descriptions
  return attributes[:descriptions] if attributes[:descriptions]
  attributes[:descriptions] = {}
  attributes[:descriptions]
end

#http_statusObject



103
# File 'lib/coaster/core_ext/standard_error.rb', line 103

def http_status;         attributes[:http_status] || self.class.http_status end

#http_status=(value) ⇒ Object



104
# File 'lib/coaster/core_ext/standard_error.rb', line 104

def http_status=(value); attributes[:http_status] = value end

#initialize_originalStandardError

Returns a new instance of StandardError.

Returns:



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 4

def initialize(message = nil, cause = $!)
  @fingerprint = Coaster.default_fingerprint.dup
  @tags = {}
  @level = 'error'
  @attributes = HashWithIndifferentAccess.new
  @attributes.merge!(cause.attributes || {}) if cause && cause.respond_to?(:attributes)
  @tkey = nil

  case message
  when Exception
    msg = message
    set_backtrace(message.backtrace)
  when StandardError
    @fingerprint = message.fingerprint
    @tags = message.tags
    @level = message.level
    @tkey = message.tkey
    @attributes = message.attributes
    msg = message
    set_backtrace(message.backtrace)
  when Hash then
    @coaster = true # coaster 확장을 사용한 에러임을 확인할 수 있음.
    hash = message.with_indifferent_access rescue message
    msg = hash.delete(:m)
    msg = hash.delete(:msg) || msg
    msg = hash.delete(:message) || msg
    hash[:description] ||= hash.delete(:desc) if hash[:desc].present?
    @fingerprint = hash.delete(:fingerprint) || hash.delete(:fingerprints)
    @tags = hash.delete(:tags) || hash.delete(:tag)
    @level = hash.delete(:level) || hash.delete(:severity) || @level
    @tkey = hash.delete(:tkey)
    @attributes.merge!(hash)
    if @attributes[:description] == :translate
      @attributes.delete(:description)
      @attributes[:description] = _translate
    end
    msg = "#{_translate} (#{msg || self.class.name})"
    msg = "#{msg} {#{cause.message}}" if cause
  when String then
    msg = message
  when FalseClass, NilClass then
    msg = nil
  else
    msg = message
  end

  @fingerprint = [] unless @fingerprint.is_a?(Array)
  @tags = {} unless @tags.is_a?(Hash)
  msg = "{#{cause.message}}" if msg.blank? && cause
  super(msg)
end

#intentional?Boolean

not logging in test

Returns:

  • (Boolean)


115
116
117
118
119
# File 'lib/coaster/core_ext/standard_error.rb', line 115

def intentional? # not logging in test
  return attributes[:intentional] if attributes.key?(:intentional)
  return true if it_should_not_happen?
  self.class.intentional?
end

#it_might_happen?Boolean

Returns:

  • (Boolean)


108
# File 'lib/coaster/core_ext/standard_error.rb', line 108

def it_might_happen?;      attributes[:it] == :might_happen      end

#it_should_not_happen?Boolean

Returns:

  • (Boolean)


109
# File 'lib/coaster/core_ext/standard_error.rb', line 109

def it_should_not_happen?; attributes[:it] == :should_not_happen end

#just_loggingObject

options

:logger
:cleaner
:fingerprint
:tags
:level
:extra
:report
and others are merged to extra


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
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 64

def logging(options = {})
  before_logging_blocks.values.each { |blk| instance_exec &blk }

  if !report? || intentional?
    if defined?(Rails)
      return if Rails.env.test?
    else
      return
    end
  end

  logger = options[:logger] || Coaster.logger
  return unless logger

  cl = options[:cleaner] || cleaner
  msg = to_detail

  if cl && backtrace
    bt = cl.clean(backtrace)
    bt = bt[0..2] if intentional?
    msg += "\tBACKTRACE:\n\t"
    msg += bt.join("\n\t")
  end

  if level && logger.respond_to?(level)
    logger.send(level, msg)
  else
    logger.error(msg)
  end
  msg
ensure
  after_logging_blocks.values.each { |blk| instance_exec &blk }
end

#logging(options = {}) ⇒ Object



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/coaster/core_ext/standard_error.rb', line 210

def logging(options = {})
  before_logging_blocks.values.each { |blk| instance_exec &blk }

  if !report? || intentional?
    if defined?(Rails)
      return if Rails.env.test?
    else
      return
    end
  end

  logger = options[:logger] || Coaster.logger
  return unless logger

  cl = options[:cleaner] || cleaner
  msg = to_detail

  if cl && backtrace
    bt = cl.clean(backtrace)
    bt = bt[0..2] if intentional?
    msg += "\tBACKTRACE:\n\t"
    msg += bt.join("\n\t")
  end

  if level && logger.respond_to?(level)
    logger.send(level, msg)
  else
    logger.error(msg)
  end
  msg
ensure
  after_logging_blocks.values.each { |blk| instance_exec &blk }
end

#notes(options = {}) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 26

def notes(options = {})
  opts = options ? options.dup : {}
  extra_opts = opts.slice!(:fingerprint, :tags, :level, :extra)
  opts[:extra] = extra_opts.merge(opts[:extra] || {})
  nt = raven.merge(opts)

  nt[:tags] ||= (tags && tags.merge(nt[:tags] || {})) || {}
  nt[:tags] = nt[:tags].merge(environment: Rails.env) if defined?(Rails)
  nt[:level] ||= self.level
  nt[:extra] = attributes.merge(nt[:extra])
  nt
end

#objectObject Also known as: obj



120
# File 'lib/coaster/core_ext/standard_error.rb', line 120

def object;       attributes[:object] || attributes[:obj] end

#rails_tagObject



198
199
200
201
202
203
204
205
206
207
208
# File 'lib/coaster/core_ext/standard_error.rb', line 198

def rails_tag
  (fingerprint || Coaster.default_fingerprint).flatten.map do |fp|
    if fp == true || fp == :class
      self.class.name
    elsif fp == :default || fp == '{{ default }}'
      nil
    else
      fp
    end
  end.compact
end

#raven_fingerprintObject



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/coaster/core_ext/standard_error/raven.rb', line 14

def raven_fingerprint
  (fingerprint || Coaster.default_fingerprint).flatten.map do |fp|
    if fp == true || fp == :class
      self.class.name
    elsif fp == :default
      '{{ default }}'
    else
      fp
    end
  end.flatten
end

#report?Boolean

Returns:

  • (Boolean)


110
111
112
113
114
# File 'lib/coaster/core_ext/standard_error.rb', line 110

def report?
  return attributes[:report] if attributes.key?(:report)
  return false if it_might_happen?
  self.class.report?
end

#root_causeObject



91
# File 'lib/coaster/core_ext/standard_error.rb', line 91

def root_cause;   cause.respond_to?(:root_cause) ? cause.root_cause : self end

#safe_messageObject



87
# File 'lib/coaster/core_ext/standard_error.rb', line 87

def safe_message; message || '' end

#statusObject



88
# File 'lib/coaster/core_ext/standard_error.rb', line 88

def status;       self.class.status end

#titleObject



107
# File 'lib/coaster/core_ext/standard_error.rb', line 107

def title;        attributes[:title] || self.class.title end

#to_detailObject



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/coaster/core_ext/standard_error.rb', line 170

def to_detail
  lg = "[#{self.class.name}] status:#{status}"
  lg += "\n\tMESSAGE: #{safe_message.gsub(/\n/, "\n\t\t")}"
  instance_variables.each do |var|
    if var.to_s.start_with?('@_') || var.to_s == '@coaster'
      next
    elsif var.to_s == '@spell_checker'
      next
    else
      val = instance_variable_get(var)
      val = val.inspect rescue val.to_s
      lg += "\n\t#{var}: #{val}"
    end
  end
  if cause
    if cause.respond_to?(:to_detail)
      lg += "\n\tCAUSE: "
      lg += cause.to_detail.strip.gsub(/\n/, "\n\t")
    else
      lg += "\n\tCAUSE: #{cause.class.name}: #{cause.message.gsub(/\n/, "\n\t\t")}"
    end
    if cause_cleaner && cause.backtrace
      lg += cause_cleaner.clean(cause.backtrace).join("\n\t\t")
    end
  end
  lg << "\n"
end

#to_hashObject



151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/coaster/core_ext/standard_error.rb', line 151

def to_hash
  hash = attributes.merge(
    type: self.class.name, status: status,
    http_status: http_status, message: message
  )
  if cause
    if cause.respond_to?(:to_hash)
      hash[:cause] = cause.to_hash
    else
      hash[:cause] = cause
    end
  end
  hash
end

#to_jsonObject



166
167
168
# File 'lib/coaster/core_ext/standard_error.rb', line 166

def to_json
  Oj.dump(to_hash.with_indifferent_access, mode: :compat)
end

#user_messageObject

user friendly message, for overid



138
139
140
141
142
# File 'lib/coaster/core_ext/standard_error.rb', line 138

def user_message
  return _translate if description.present? || tkey.present?
  return "#{_translate} (#{message})" unless defined?(@coaster)
  message
end