class Brakeman::CallIndex

Stores call sites to look up later.

def calls_by_method method

def calls_by_method method
  case method
  when Array
    calls_by_methods method
  when Regexp
    calls_by_methods_regex method
  else
    @calls_by_method[method.to_sym] || []
  end
end

def calls_by_methods methods

def calls_by_methods methods
  methods = methods.map { |m| m.to_sym }
  calls = []
  methods.each do |method|
    calls.concat @calls_by_method[method] if @calls_by_method.key? method
  end
  calls
end

def calls_by_methods_regex methods_regex

def calls_by_methods_regex methods_regex
  calls = []
  @calls_by_method.each do |key, value|
    calls.concat value if key.match methods_regex
  end
  calls
end

def calls_by_target target

def calls_by_target target
  case target
  when Array
    calls_by_targets target
  when Regexp
    calls_by_targets_regex target
  else
    @calls_by_target[target] || []
  end
end

def calls_by_targets targets

def calls_by_targets targets
  calls = []
  targets.each do |target|
    calls.concat @calls_by_target[target] if @calls_by_target.key? target
  end
  calls
end

def calls_by_targets_regex targets_regex

def calls_by_targets_regex targets_regex
  calls = []
  @calls_by_target.each do |key, value|
    case key
    when String, Symbol
      calls.concat value if key.match targets_regex
    end
  end
  calls
end

def filter calls, key, value

def filter calls, key, value
  case value
  when Array
    values = Set.new value
    calls.select do |call|
      values.include? call[key]
    end
  when Regexp
    calls.select do |call|
      case call[key]
      when String, Symbol
        call[key].match value
      end
    end
  else
    calls.select do |call|
      call[key] == value
    end
  end
end

def filter_by_chain calls, target

def filter_by_chain calls, target
  case target
  when Array
    targets = Set.new target
    calls.select do |call|
      targets.include? call[:chain].first
    end
  when Regexp
    calls.select do |call|
      case call[:chain].first
      when String, Symbol
        call[:chain].first.match target
      end
    end
  else
    calls.select do |call|
      call[:chain].first == target
    end
  end
end

def filter_by_method calls, method

def filter_by_method calls, method
  filter calls, :method, method
end

def filter_by_target calls, target

def filter_by_target calls, target
  filter calls, :target, target
end

def filter_nested calls

def filter_nested calls
  filter calls, :nested, false
end

def find_calls options

* :nested - boolean, whether or not to match against a method call that is a target itself (false by default)
* :chained - boolean, whether or not to match against a whole method chain (false by default)
* :method - symbol, array of symbols, or regular expression to match method(s)
* :target - symbol, array of symbols, or regular expression to match target(s)

Options:

Find calls matching specified option hash.
def find_calls options
  target = options[:target] || options[:targets]
  method = options[:method] || options[:methods]
  nested = options[:nested]
  if options[:chained]
    return find_chain options
  #Find by narrowest category
  elsif target.is_a? Array and method.is_a? Array
    if target.length > method.length
      calls = filter_by_target calls_by_methods(method), target
    else
      calls = calls_by_targets(target)
      calls = filter_by_method calls, method
    end
  elsif target.is_a? Regexp and method
    calls = filter_by_target(calls_by_method(method), target)
  elsif method.is_a? Regexp and target
    calls = filter_by_method(calls_by_target(target), method)
  #Find by target, then by methods, if provided
  elsif target
    calls = calls_by_target target
    if calls and method
      calls = filter_by_method calls, method
    end
  #Find calls with no explicit target
  #with either :target => nil or :target => false
  elsif (options.key? :target or options.key? :targets) and not target and method
    calls = calls_by_method method
    calls = filter_by_target calls, nil
  #Find calls by method
  elsif method
    calls = calls_by_method method
  else
    raise "Invalid arguments to CallCache#find_calls: #{options.inspect}"
  end
  return [] if calls.nil?
  #Remove calls that are actually targets of other calls
  #Unless those are explicitly desired
  calls = filter_nested calls unless nested
  calls
end

def find_chain options

def find_chain options
  target = options[:target] || options[:targets]
  method = options[:method] || options[:methods]
  calls = calls_by_method method
  return [] if calls.nil?
  calls = filter_by_chain calls, target
end

def from_template call, template_name

def from_template call, template_name
  return false unless call[:location][:type] == :template
  return true if template_name.nil?
  call[:location][:template] == template_name
end

def index_calls calls

def index_calls calls
  calls.each do |call|
    @calls_by_method[call[:method]] ||= []
    @calls_by_method[call[:method]] << call
    target = call[:target]
    if not target.is_a? Sexp
      @calls_by_target[target] ||= []
      @calls_by_target[target] << call
    elsif target.node_type == :params or target.node_type == :session
      @calls_by_target[target.node_type] ||= []
      @calls_by_target[target.node_type] << call
    end
  end
end

def initialize calls

Initialize index with calls from FindAllCalls
def initialize calls
  @calls_by_method = {}
  @calls_by_target = {}
  index_calls calls
end

def remove_indexes_by_class classes

def remove_indexes_by_class classes
  [@calls_by_method, @calls_by_target].each do |calls_by|
    calls_by.each do |_name, calls|
      calls.delete_if do |call|
        call[:location][:type] == :class and classes.include? call[:location][:class]
      end
    end
  end
end

def remove_indexes_by_file file

def remove_indexes_by_file file
  [@calls_by_method, @calls_by_target].each do |calls_by|
    calls_by.each do |_name, calls|
      calls.delete_if do |call|
        call[:location][:file] == file
      end
    end
  end
end

def remove_template_indexes template_name = nil

def remove_template_indexes template_name = nil
  [@calls_by_method, @calls_by_target].each do |calls_by|
    calls_by.each do |_name, calls|
      calls.delete_if do |call|
        from_template call, template_name
      end
    end
  end
end