Sha256: fe1c9283ac68d6f53e2f485da7016d30711a87590321801f7ea6465bf997fe4e

Contents?: true

Size: 1.74 KB

Versions: 1

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

module Bullet
  module StackTraceFilter
    VENDOR_PATH = '/vendor'

    def caller_in_project
      vendor_root = Bullet.app_root + VENDOR_PATH
      bundler_path = Bundler.bundle_path.to_s
      select_caller_locations do |location|
        caller_path = location_as_path(location)
        caller_path.include?(Bullet.app_root) && !caller_path.include?(vendor_root) &&
          !caller_path.include?(bundler_path) ||
          Bullet.stacktrace_includes.any? { |include_pattern| pattern_matches?(location, include_pattern) }
      end
    end

    def excluded_stacktrace_path?
      Bullet.stacktrace_excludes.any? do |exclude_pattern|
        caller_in_project.any? { |location| pattern_matches?(location, exclude_pattern) }
      end
    end

    private

    def pattern_matches?(location, pattern)
      path = location_as_path(location)
      case pattern
      when Array
        pattern_path = pattern.first
        filter = pattern.last
        return false unless pattern_matches?(location, pattern_path)

        case filter
        when Range
          filter.include?(location.lineno)
        when Integer
          filter == location.lineno
        when String
          filter == location.base_label
        end
      when String
        path.include?(pattern)
      when Regexp
        path =~ pattern
      end
    end

    def location_as_path(location)
      ruby_19? ? location : location.absolute_path.to_s
    end

    def select_caller_locations
      if ruby_19?
        caller.select { |caller_path| yield caller_path }
      else
        caller_locations.select { |location| yield location }
      end
    end

    def ruby_19?
      @ruby_19 ||= Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.0.0') 
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bullet-6.1.3 lib/bullet/stack_trace_filter.rb