Class: FlogAnalyzer

Inherits:
Object
  • Object
show all
Includes:
ScoringStrategies
Defined in:
lib/base/flog_analyzer.rb

Constant Summary collapse

COLUMNS =
%w{score}

Instance Method Summary collapse

Methods included from ScoringStrategies

#average, #identity, #percentile, #present, #sum

Instance Method Details

#columnsObject



6
7
8
# File 'lib/base/flog_analyzer.rb', line 6

def columns
  COLUMNS
end

#generate_records(data, table) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/base/flog_analyzer.rb', line 26

def generate_records(data, table)
  return if data==nil
  Array(data[:method_containers]).each do |method_container|
    Array(method_container[:methods]).each do |entry|
      file_path = entry[1][:path].sub(%r{^/},'') if entry[1][:path]
      location = MetricFu::Location.for(entry.first)
      table << {
        "metric" => name,
        "score" => entry[1][:score],
        "file_path" => file_path,
        "class_name" => location.class_name,
        "method_name" => location.method_name
      }
    end
  end
end

#map(row) ⇒ Object



14
15
16
# File 'lib/base/flog_analyzer.rb', line 14

def map(row)
  row.score
end

#nameObject



10
11
12
# File 'lib/base/flog_analyzer.rb', line 10

def name
  :flog
end

#reduce(scores) ⇒ Object



18
19
20
# File 'lib/base/flog_analyzer.rb', line 18

def reduce(scores)
  ScoringStrategies.average(scores)
end

#score(metric_ranking, item) ⇒ Object



22
23
24
# File 'lib/base/flog_analyzer.rb', line 22

def score(metric_ranking, item)
  ScoringStrategies.identity(metric_ranking, item)
end