Sha256: 5cdf36b8abede4ca28d4c70e36a862530684fee52a50bdb434ba9dc94800dc63

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

# exception.rb
require_relative 'enhanced_exception_context'

module ExceptionBindingInfos
  def binding_infos
    ctx = EnhancedExceptionContext.context_for(self)
    unless ctx
      ctx = Context.new
      EnhancedExceptionContext.store_context(self, ctx)
    end
    ctx.binding_infos
  end

  def captured_variables
    if binding_infos.any?
      bindings_of_interest = select_binding_infos
      EnhancedErrors.format(bindings_of_interest)
    else
      ''
    end
  rescue
    ''
  end

  private

  def select_binding_infos
    # Preference:
    # 1. First 'raise' binding that isn't from a library (gem).
    # 2. If none, the first binding.
    # 3. The last 'rescue' binding if available.

    bindings_of_interest = []

    first_app_raise = binding_infos.find do |info|
      info[:capture_event] == 'raise' && !info[:library]
    end
    bindings_of_interest << first_app_raise if first_app_raise

    if bindings_of_interest.empty? && binding_infos.first
      bindings_of_interest << binding_infos.first
    end

    last_rescue = binding_infos.reverse.find do |info|
      info[:capture_event] == 'rescue'
    end
    bindings_of_interest << last_rescue if last_rescue

    bindings_of_interest.compact
  end
end

class Exception
  prepend ExceptionBindingInfos
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enhanced_errors-3.0.3 lib/enhanced/exception.rb
enhanced_errors-3.0.2 lib/enhanced/exception.rb
enhanced_errors-3.0.1 lib/enhanced/exception.rb
enhanced_errors-3.0.0 lib/enhanced/exception.rb
enhanced_errors-2.2.0 lib/enhanced/exception.rb