edouard-metric_fu 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +119 -0
- data/MIT-LICENSE +22 -0
- data/Manifest.txt +25 -0
- data/README +1 -0
- data/Rakefile +47 -0
- data/TODO +14 -0
- data/lib/base/base_template.rb +134 -0
- data/lib/base/configuration.rb +207 -0
- data/lib/base/generator.rb +160 -0
- data/lib/base/graph.rb +37 -0
- data/lib/base/md5_tracker.rb +52 -0
- data/lib/base/report.rb +100 -0
- data/lib/generators/churn.rb +91 -0
- data/lib/generators/flay.rb +34 -0
- data/lib/generators/flog.rb +133 -0
- data/lib/generators/rcov.rb +87 -0
- data/lib/generators/reek.rb +37 -0
- data/lib/generators/roodi.rb +31 -0
- data/lib/generators/saikuro.rb +209 -0
- data/lib/generators/stats.rb +43 -0
- data/lib/graphs/flay_grapher.rb +34 -0
- data/lib/graphs/flog_grapher.rb +37 -0
- data/lib/graphs/rcov_grapher.rb +34 -0
- data/lib/graphs/reek_grapher.rb +44 -0
- data/lib/graphs/roodi_grapher.rb +34 -0
- data/lib/metric_fu.rb +24 -0
- data/lib/templates/awesome/awesome_template.rb +30 -0
- data/lib/templates/awesome/churn.html.erb +19 -0
- data/lib/templates/awesome/default.css +66 -0
- data/lib/templates/awesome/flay.html.erb +27 -0
- data/lib/templates/awesome/flog.html.erb +46 -0
- data/lib/templates/awesome/index.html.erb +28 -0
- data/lib/templates/awesome/layout.html.erb +27 -0
- data/lib/templates/awesome/rcov.html.erb +36 -0
- data/lib/templates/awesome/reek.html.erb +34 -0
- data/lib/templates/awesome/roodi.html.erb +21 -0
- data/lib/templates/awesome/saikuro.html.erb +71 -0
- data/lib/templates/awesome/stats.html.erb +41 -0
- data/lib/templates/standard/churn.html.erb +31 -0
- data/lib/templates/standard/default.css +64 -0
- data/lib/templates/standard/flay.html.erb +34 -0
- data/lib/templates/standard/flog.html.erb +53 -0
- data/lib/templates/standard/index.html.erb +38 -0
- data/lib/templates/standard/rcov.html.erb +43 -0
- data/lib/templates/standard/reek.html.erb +42 -0
- data/lib/templates/standard/roodi.html.erb +29 -0
- data/lib/templates/standard/saikuro.html.erb +84 -0
- data/lib/templates/standard/standard_template.rb +26 -0
- data/lib/templates/standard/stats.html.erb +55 -0
- data/spec/base/base_template_spec.rb +140 -0
- data/spec/base/configuration_spec.rb +303 -0
- data/spec/base/generator_spec.rb +181 -0
- data/spec/base/md5_tracker_spec.rb +57 -0
- data/spec/base/report_spec.rb +139 -0
- data/spec/generators/churn_spec.rb +152 -0
- data/spec/generators/flay_spec.rb +104 -0
- data/spec/generators/flog_spec.rb +208 -0
- data/spec/generators/reek_spec.rb +60 -0
- data/spec/generators/saikuro_spec.rb +63 -0
- data/spec/generators/stats_spec.rb +74 -0
- data/spec/spec_helper.rb +28 -0
- data/tasks/metric_fu.rake +19 -0
- data/tasks/railroad.rake +39 -0
- data/vendor/_fonts/monaco.ttf +0 -0
- data/vendor/saikuro/saikuro.rb +1214 -0
- metadata +174 -0
@@ -0,0 +1,160 @@
|
|
1
|
+
module MetricFu
|
2
|
+
|
3
|
+
# = Generator
|
4
|
+
#
|
5
|
+
# The Generator class is an abstract class that provides the
|
6
|
+
# skeleton for producing different types of metrics.
|
7
|
+
#
|
8
|
+
# It drives the production of the metrics through a template
|
9
|
+
# method - #generate_report(options={}). This method calls
|
10
|
+
# #emit, #analyze and #to_h in order to produce the metrics.
|
11
|
+
#
|
12
|
+
# To implement a concrete class to generate a metric, therefore,
|
13
|
+
# the class must implement those three methods.
|
14
|
+
#
|
15
|
+
# * #emit should take care of running the metric tool and
|
16
|
+
# gathering its output.
|
17
|
+
# * #analyze should take care of manipulating the output from
|
18
|
+
# #emit and making it possible to store it in a programmatic way.
|
19
|
+
# * #to_h should provide a hash representation of the output from
|
20
|
+
# #analyze ready to be serialized into yaml at some point.
|
21
|
+
#
|
22
|
+
# == Pre-conditions
|
23
|
+
#
|
24
|
+
# Based on the class name of the concrete class implementing a
|
25
|
+
# Generator, the Generator class will create a 'metric_directory'
|
26
|
+
# named after the class under the MetricFu.scratch_directory, where
|
27
|
+
# any output from the #emit method should go.
|
28
|
+
#
|
29
|
+
# It will also create the MetricFu.output_directory if neccessary, and
|
30
|
+
# in general setup the directory structure that the MetricFu system
|
31
|
+
# expects.
|
32
|
+
class Generator
|
33
|
+
attr_reader :report, :template
|
34
|
+
|
35
|
+
def initialize(options={})
|
36
|
+
self.class.verify_dependencies!
|
37
|
+
create_metric_dir_if_missing
|
38
|
+
create_output_dir_if_missing
|
39
|
+
create_data_dir_if_missing
|
40
|
+
end
|
41
|
+
|
42
|
+
# Creates a new generator and returns the output of the
|
43
|
+
# #generate_report method. This is the typical way to
|
44
|
+
# generate a new MetricFu report. For more information see
|
45
|
+
# the #generate_report instance method.
|
46
|
+
#
|
47
|
+
# @params options Hash
|
48
|
+
# A currently unused hash to configure the Generator
|
49
|
+
#
|
50
|
+
# @see generate_report
|
51
|
+
def self.generate_report(options={})
|
52
|
+
generator = self.new(options)
|
53
|
+
generator.generate_report
|
54
|
+
end
|
55
|
+
|
56
|
+
# Provides the unqualified class name of an implemented concrete
|
57
|
+
# class, as a string. For example:
|
58
|
+
#
|
59
|
+
# class Flay < Generator; end
|
60
|
+
# klass = Flay.new
|
61
|
+
# klass.class_name
|
62
|
+
# > "flay"
|
63
|
+
#
|
64
|
+
# @return String
|
65
|
+
# The unqualified class name of this concrete class, returned
|
66
|
+
# as a string.
|
67
|
+
def self.class_name
|
68
|
+
self.to_s.split('::').last.downcase
|
69
|
+
end
|
70
|
+
|
71
|
+
# Returns the directory where the Generator will write any output
|
72
|
+
def self.metric_directory
|
73
|
+
File.join(MetricFu.scratch_directory, class_name)
|
74
|
+
end
|
75
|
+
|
76
|
+
def create_metric_dir_if_missing #:nodoc:
|
77
|
+
unless File.directory?(metric_directory)
|
78
|
+
FileUtils.mkdir_p(metric_directory, :verbose => false)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def create_output_dir_if_missing #:nodoc:
|
83
|
+
unless File.directory?(MetricFu.output_directory)
|
84
|
+
FileUtils.mkdir_p(MetricFu.output_directory, :verbose => false)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def create_data_dir_if_missing #:nodoc:
|
89
|
+
unless File.directory?(MetricFu.data_directory)
|
90
|
+
FileUtils.mkdir_p(MetricFu.data_directory, :verbose => false)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
# @return String
|
95
|
+
# The path of the metric directory this class is using.
|
96
|
+
def metric_directory
|
97
|
+
self.class.metric_directory
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
# Defines some hook methods for the concrete classes to hook into.
|
102
|
+
%w[emit analyze].each do |meth|
|
103
|
+
define_method("before_#{meth}".to_sym) {}
|
104
|
+
define_method("after_#{meth}".to_sym) {}
|
105
|
+
end
|
106
|
+
define_method("before_to_h".to_sym) {}
|
107
|
+
|
108
|
+
# Provides a template method to drive the production of a metric
|
109
|
+
# from a concrete implementation of this class. Each concrete
|
110
|
+
# class must implement the three methods that this template method
|
111
|
+
# calls: #emit, #analyze and #to_h. For more details, see the
|
112
|
+
# class documentation.
|
113
|
+
#
|
114
|
+
# This template method also calls before_emit, after_emit... etc.
|
115
|
+
# methods to allow extra hooks into the processing methods, and help
|
116
|
+
# to keep the logic of your Generators clean.
|
117
|
+
def generate_report
|
118
|
+
%w[emit analyze].each do |meth|
|
119
|
+
send("before_#{meth}".to_sym)
|
120
|
+
send("#{meth}".to_sym)
|
121
|
+
send("after_#{meth}".to_sym)
|
122
|
+
end
|
123
|
+
before_to_h()
|
124
|
+
to_h()
|
125
|
+
end
|
126
|
+
|
127
|
+
def round_to_tenths(decimal)
|
128
|
+
(decimal * 10).round / 10.0
|
129
|
+
end
|
130
|
+
|
131
|
+
# Allows subclasses to check for required gems
|
132
|
+
def self.verify_dependencies!
|
133
|
+
true
|
134
|
+
end
|
135
|
+
|
136
|
+
def emit #:nodoc:
|
137
|
+
raise <<-EOF
|
138
|
+
This method must be implemented by a concrete class descending
|
139
|
+
from Generator. See generator class documentation for more
|
140
|
+
information.
|
141
|
+
EOF
|
142
|
+
end
|
143
|
+
|
144
|
+
def analyze #:nodoc:
|
145
|
+
raise <<-EOF
|
146
|
+
This method must be implemented by a concrete class descending
|
147
|
+
from Generator. See generator class documentation for more
|
148
|
+
information.
|
149
|
+
EOF
|
150
|
+
end
|
151
|
+
|
152
|
+
def to_graph #:nodoc:
|
153
|
+
raise <<-EOF
|
154
|
+
This method must be implemented by a concrete class descending
|
155
|
+
from Generator. See generator class documentation for more
|
156
|
+
information.
|
157
|
+
EOF
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
data/lib/base/graph.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
module MetricFu
|
2
|
+
|
3
|
+
def self.graph
|
4
|
+
@graph ||= Graph.new
|
5
|
+
end
|
6
|
+
|
7
|
+
class Graph
|
8
|
+
|
9
|
+
attr_accessor :clazz
|
10
|
+
|
11
|
+
def initialize
|
12
|
+
self.clazz = []
|
13
|
+
end
|
14
|
+
|
15
|
+
def add(graph_type)
|
16
|
+
grapher_name = graph_type.to_s.capitalize + "Grapher"
|
17
|
+
self.clazz.push MetricFu.const_get(grapher_name).new
|
18
|
+
end
|
19
|
+
|
20
|
+
|
21
|
+
def generate
|
22
|
+
puts "Generating graphs"
|
23
|
+
Dir[File.join(MetricFu.data_directory, '*.yml')].sort.each do |metric_file|
|
24
|
+
puts "Generating graphs for #{metric_file}"
|
25
|
+
date = metric_file.split('/')[3].split('.')[0]
|
26
|
+
metrics = YAML::load(File.open(metric_file))
|
27
|
+
|
28
|
+
self.clazz.each do |grapher|
|
29
|
+
grapher.get_metrics(metrics, date)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
self.clazz.each do |grapher|
|
33
|
+
grapher.graph!
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'digest/md5'
|
2
|
+
require 'fileutils'
|
3
|
+
|
4
|
+
module MetricFu
|
5
|
+
class MD5Tracker
|
6
|
+
|
7
|
+
@@unchanged_md5s = []
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def md5_dir(path_to_file, base_dir)
|
11
|
+
File.join(base_dir,
|
12
|
+
path_to_file.split('/')[0..-2].join('/'))
|
13
|
+
end
|
14
|
+
|
15
|
+
def md5_file(path_to_file, base_dir)
|
16
|
+
File.join(md5_dir(path_to_file, base_dir),
|
17
|
+
path_to_file.split('/').last.sub(/\.[a-z]+/, '.md5'))
|
18
|
+
end
|
19
|
+
|
20
|
+
def track(path_to_file, base_dir)
|
21
|
+
md5 = Digest::MD5.hexdigest(File.read(path_to_file))
|
22
|
+
FileUtils.mkdir_p(md5_dir(path_to_file, base_dir), :verbose => false)
|
23
|
+
f = File.new(md5_file(path_to_file, base_dir), "w")
|
24
|
+
f.puts(md5)
|
25
|
+
f.close
|
26
|
+
md5
|
27
|
+
end
|
28
|
+
|
29
|
+
def file_changed?(path_to_file, base_dir)
|
30
|
+
orig_md5_file = md5_file(path_to_file, base_dir)
|
31
|
+
return !!track(path_to_file, base_dir) unless File.exist?(orig_md5_file)
|
32
|
+
|
33
|
+
current_md5 = ""
|
34
|
+
file = File.open(orig_md5_file, 'r')
|
35
|
+
file.each_line { |line| current_md5 << line }
|
36
|
+
file.close
|
37
|
+
current_md5.chomp!
|
38
|
+
|
39
|
+
new_md5 = Digest::MD5.hexdigest(File.read(path_to_file))
|
40
|
+
new_md5.chomp!
|
41
|
+
|
42
|
+
@@unchanged_md5s << path_to_file if new_md5 == current_md5
|
43
|
+
|
44
|
+
return new_md5 != current_md5
|
45
|
+
end
|
46
|
+
|
47
|
+
def file_already_counted?(path_to_file)
|
48
|
+
return @@unchanged_md5s.include?(path_to_file)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
data/lib/base/report.rb
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
module MetricFu
|
2
|
+
|
3
|
+
# MetricFu.report memoizes access to a Report object, that will be
|
4
|
+
# used throughout the lifecycle of the MetricFu app.
|
5
|
+
def self.report
|
6
|
+
@report ||= Report.new
|
7
|
+
end
|
8
|
+
|
9
|
+
# = Report
|
10
|
+
#
|
11
|
+
# The Report class is responsible two things:
|
12
|
+
#
|
13
|
+
# It adds information to the yaml report, produced by the system
|
14
|
+
# as a whole, for each of the generators used in this test run.
|
15
|
+
#
|
16
|
+
# It also handles passing the information from each generator used
|
17
|
+
# in this test run out to the template class set in
|
18
|
+
# MetricFu::Configuration.
|
19
|
+
class Report
|
20
|
+
|
21
|
+
# Renders the result of the report_hash into a yaml serialization
|
22
|
+
# ready for writing out to a file.
|
23
|
+
#
|
24
|
+
# @return YAML
|
25
|
+
# A YAML object containing the results of the report generation
|
26
|
+
# process
|
27
|
+
def to_yaml
|
28
|
+
report_hash.to_yaml
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
def report_hash #:nodoc:
|
33
|
+
@report_hash ||= {}
|
34
|
+
end
|
35
|
+
|
36
|
+
# Instantiates a new template class based on the configuration set
|
37
|
+
# in MetricFu::Configuration, or through the MetricFu.config block
|
38
|
+
# in your rake file (defaults to the included StandardTemplate) and
|
39
|
+
# assigns the report_hash to the report_hash to the template and
|
40
|
+
# asks itself to write itself out.
|
41
|
+
def save_templatized_report
|
42
|
+
@template = MetricFu.template_class.new
|
43
|
+
@template.report = report_hash
|
44
|
+
@template.write
|
45
|
+
end
|
46
|
+
|
47
|
+
# Adds a hash from a passed report, produced by one of the Generator
|
48
|
+
# classes to the aggregate report_hash managed by this hash.
|
49
|
+
#
|
50
|
+
# @param report_type Hash
|
51
|
+
# The hash to add to the aggregate report_hash
|
52
|
+
def add(report_type)
|
53
|
+
clazz = MetricFu.const_get(report_type.to_s.capitalize)
|
54
|
+
report_hash.merge!(clazz.generate_report)
|
55
|
+
end
|
56
|
+
|
57
|
+
# Saves the passed in content to the passed in directory. If
|
58
|
+
# a filename is passed in it will be used as the name of the
|
59
|
+
# file, otherwise it will default to 'index.html'
|
60
|
+
#
|
61
|
+
# @param content String
|
62
|
+
# A string containing the content (usually html) to be written
|
63
|
+
# to the file.
|
64
|
+
#
|
65
|
+
# @param dir String
|
66
|
+
# A dir containing the path to the directory to write the file in.
|
67
|
+
#
|
68
|
+
# @param file String
|
69
|
+
# A filename to save the path as. Defaults to 'index.html'.
|
70
|
+
#
|
71
|
+
def save_output(content, dir, file='index.html')
|
72
|
+
open("#{dir}/#{file}", "w") do |f|
|
73
|
+
f.puts content
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# Checks to discover whether we should try and open the results
|
78
|
+
# of the report in the browser on this system. We only try and open
|
79
|
+
# in the browser if we're on OS X and we're not running in a
|
80
|
+
# CruiseControl.rb environment. See MetricFu.configuration for more
|
81
|
+
# details about how we make those guesses.
|
82
|
+
#
|
83
|
+
# @return Boolean
|
84
|
+
# Should we open in the browser or not?
|
85
|
+
def open_in_browser?
|
86
|
+
MetricFu.configuration.platform.include?('darwin') &&
|
87
|
+
! MetricFu.configuration.is_cruise_control_rb?
|
88
|
+
end
|
89
|
+
|
90
|
+
# Shows 'index.html' from the passed directory in the browser
|
91
|
+
# if we're able to open the browser on this platform.
|
92
|
+
#
|
93
|
+
# @param dir String
|
94
|
+
# The directory path where the 'index.html' we want to open is
|
95
|
+
# stored
|
96
|
+
def show_in_browser(dir)
|
97
|
+
system("open #{dir}/index.html") if open_in_browser?
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
require 'chronic'
|
2
|
+
require 'generator'
|
3
|
+
module MetricFu
|
4
|
+
|
5
|
+
class Churn < Generator
|
6
|
+
|
7
|
+
|
8
|
+
def initialize(options={})
|
9
|
+
super
|
10
|
+
if self.class.git?
|
11
|
+
@source_control = Git.new(MetricFu.churn[:start_date])
|
12
|
+
elsif File.exist?(".svn")
|
13
|
+
@source_control = Svn.new(MetricFu.churn[:start_date])
|
14
|
+
else
|
15
|
+
raise "Churning requires a subversion or git repo"
|
16
|
+
end
|
17
|
+
@minimum_churn_count = MetricFu.churn[:minimum_churn_count] || 5
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.git?
|
21
|
+
system("git branch")
|
22
|
+
end
|
23
|
+
|
24
|
+
def emit
|
25
|
+
@changes = parse_log_for_changes.reject {|file, change_count| change_count < @minimum_churn_count}
|
26
|
+
end
|
27
|
+
|
28
|
+
def analyze
|
29
|
+
@changes = @changes.to_a.sort {|x,y| y[1] <=> x[1]}
|
30
|
+
@changes = @changes.map {|change| {:file_path => change[0], :times_changed => change[1] }}
|
31
|
+
end
|
32
|
+
|
33
|
+
def to_h
|
34
|
+
{:churn => {:changes => @changes}}
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
def parse_log_for_changes
|
40
|
+
changes = {}
|
41
|
+
|
42
|
+
logs = @source_control.get_logs
|
43
|
+
logs.each do |line|
|
44
|
+
changes[line] ? changes[line] += 1 : changes[line] = 1
|
45
|
+
end
|
46
|
+
changes
|
47
|
+
end
|
48
|
+
|
49
|
+
|
50
|
+
class SourceControl
|
51
|
+
def initialize(start_date=nil)
|
52
|
+
@start_date = start_date
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class Git < SourceControl
|
57
|
+
def get_logs
|
58
|
+
`git log #{date_range} --name-only --pretty=format:`.split(/\n/).reject{|line| line == ""}
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
def date_range
|
63
|
+
if @start_date
|
64
|
+
date = Chronic.parse(@start_date)
|
65
|
+
"--after=#{date.strftime('%Y-%m-%d')}"
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
|
71
|
+
class Svn < SourceControl
|
72
|
+
def get_logs
|
73
|
+
`svn log #{date_range} --verbose`.split(/\n/).map { |line| clean_up_svn_line(line) }.compact
|
74
|
+
end
|
75
|
+
|
76
|
+
private
|
77
|
+
def date_range
|
78
|
+
if @start_date
|
79
|
+
date = Chronic.parse(@start_date)
|
80
|
+
"--revision {#{date.strftime('%Y-%m-%d')}}:{#{Time.now.strftime('%Y-%m-%d')}}"
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def clean_up_svn_line(line)
|
85
|
+
m = line.match(/\W*[A,M]\W+(\/.*)\b/)
|
86
|
+
m ? m[1] : nil
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'generator'
|
2
|
+
module MetricFu
|
3
|
+
|
4
|
+
class Flay < Generator
|
5
|
+
|
6
|
+
def self.verify_dependencies!
|
7
|
+
`flay --help`
|
8
|
+
raise 'sudo gem install flay # if you want the flay tasks' unless $?.success?
|
9
|
+
end
|
10
|
+
|
11
|
+
def emit
|
12
|
+
files_to_flay = MetricFu.flay[:dirs_to_flay].map{|dir| Dir[File.join(dir, "**/*.rb")] }
|
13
|
+
@output = `flay #{files_to_flay.join(" ")}`
|
14
|
+
end
|
15
|
+
|
16
|
+
def analyze
|
17
|
+
@matches = @output.chomp.split("\n\n").map{|m| m.split("\n ") }
|
18
|
+
end
|
19
|
+
|
20
|
+
def to_h
|
21
|
+
target = []
|
22
|
+
total_score = @matches.shift.first.split('=').last.strip
|
23
|
+
@matches.each do |problem|
|
24
|
+
reason = problem.shift.strip
|
25
|
+
lines_info = problem.map do |full_line|
|
26
|
+
name, line = full_line.split(":")
|
27
|
+
{:name => name.strip, :line => line.strip}
|
28
|
+
end
|
29
|
+
target << [:reason => reason, :matches => lines_info]
|
30
|
+
end
|
31
|
+
{:flay => {:total_score => total_score, :matches => target.flatten}}
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
module MetricFu
|
2
|
+
|
3
|
+
class Flog < Generator
|
4
|
+
attr_reader :pages
|
5
|
+
|
6
|
+
def self.verify_dependencies!
|
7
|
+
`flog --help`
|
8
|
+
raise 'sudo gem install flog # if you want the flog tasks' unless $?.success?
|
9
|
+
end
|
10
|
+
|
11
|
+
SCORE_FORMAT = "%0.2f"
|
12
|
+
METHOD_LINE_REGEX = /(\d+\.\d+):\s+([A-Za-z:]+#.*)/
|
13
|
+
OPERATOR_LINE_REGEX = /\s*(\d+\.\d+):\s(.*)$/
|
14
|
+
|
15
|
+
def emit
|
16
|
+
metric_dir = MetricFu::Flog.metric_directory
|
17
|
+
MetricFu.flog[:dirs_to_flog].each do |directory|
|
18
|
+
Dir.glob("#{directory}/**/*.rb").each do |filename|
|
19
|
+
output_dir = "#{metric_dir}/#{filename.split("/")[0..-2].join("/")}"
|
20
|
+
mkdir_p(output_dir, :verbose => false) unless File.directory?(output_dir)
|
21
|
+
if MetricFu::MD5Tracker.file_changed?(filename, metric_dir)
|
22
|
+
`flog -ad #{filename} > #{metric_dir}/#{filename.split('.')[0]}.txt`
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
rescue LoadError
|
27
|
+
if RUBY_PLATFORM =~ /java/
|
28
|
+
puts 'running in jruby - flog tasks not available'
|
29
|
+
else
|
30
|
+
puts 'sudo gem install flog # if you want the flog tasks'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def parse(text)
|
35
|
+
summary, methods_summary = text.split "\n\n"
|
36
|
+
return unless summary
|
37
|
+
score, average = summary.split("\n").map {|line| line[OPERATOR_LINE_REGEX, 1]}
|
38
|
+
return nil unless score && methods_summary
|
39
|
+
page = Flog::Page.new(score, average)
|
40
|
+
methods_summary.each_line do |method_line|
|
41
|
+
if match = method_line.match(METHOD_LINE_REGEX)
|
42
|
+
page.scanned_methods << ScannedMethod.new(match[2], match[1])
|
43
|
+
elsif match = method_line.match(OPERATOR_LINE_REGEX)
|
44
|
+
return if page.scanned_methods.empty?
|
45
|
+
page.scanned_methods.last.operators << Operator.new(match[1], match[2])
|
46
|
+
end
|
47
|
+
end
|
48
|
+
page
|
49
|
+
end
|
50
|
+
|
51
|
+
def analyze
|
52
|
+
@pages = []
|
53
|
+
flog_results.each do |path|
|
54
|
+
page = parse(open(path, "r") { |f| f.read })
|
55
|
+
if page
|
56
|
+
page.path = path.sub(metric_directory, "").sub(".txt", ".rb")
|
57
|
+
@pages << page
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def to_h
|
63
|
+
number_of_methods = @pages.inject(0) {|count, page| count += page.scanned_methods.size}
|
64
|
+
total_flog_score = @pages.inject(0) {|total, page| total += page.score}
|
65
|
+
sorted_pages = @pages.sort_by {|page| page.score }.reverse
|
66
|
+
{:flog => { :total => total_flog_score,
|
67
|
+
:average => round_to_tenths(total_flog_score/number_of_methods),
|
68
|
+
:pages => sorted_pages.map {|page| page.to_h}}}
|
69
|
+
end
|
70
|
+
|
71
|
+
def flog_results
|
72
|
+
Dir.glob("#{metric_directory}/**/*.txt")
|
73
|
+
end
|
74
|
+
|
75
|
+
class Operator
|
76
|
+
attr_accessor :score, :operator
|
77
|
+
|
78
|
+
def initialize(score, operator)
|
79
|
+
@score = score.to_f
|
80
|
+
@operator = operator
|
81
|
+
end
|
82
|
+
|
83
|
+
def to_h
|
84
|
+
{:score => @score, :operator => @operator}
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
class ScannedMethod
|
89
|
+
attr_accessor :name, :score, :operators
|
90
|
+
|
91
|
+
def initialize(name, score, operators = [])
|
92
|
+
@name = name
|
93
|
+
@score = score.to_f
|
94
|
+
@operators = operators
|
95
|
+
end
|
96
|
+
|
97
|
+
def to_h
|
98
|
+
{:name => @name,
|
99
|
+
:score => @score,
|
100
|
+
:operators => @operators.map {|o| o.to_h}}
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
end
|
105
|
+
|
106
|
+
class Flog::Page < MetricFu::Generator
|
107
|
+
attr_accessor :path, :score, :scanned_methods, :average_score
|
108
|
+
|
109
|
+
def initialize(score, average_score, scanned_methods = [])
|
110
|
+
@score = score.to_f
|
111
|
+
@scanned_methods = scanned_methods
|
112
|
+
@average_score = average_score.to_f
|
113
|
+
end
|
114
|
+
|
115
|
+
def filename
|
116
|
+
File.basename(path, ".txt")
|
117
|
+
end
|
118
|
+
|
119
|
+
def to_h
|
120
|
+
{:score => @score,
|
121
|
+
:scanned_methods => @scanned_methods.map {|sm| sm.to_h},
|
122
|
+
:highest_score => highest_score,
|
123
|
+
:average_score => average_score,
|
124
|
+
:path => path}
|
125
|
+
end
|
126
|
+
|
127
|
+
def highest_score
|
128
|
+
scanned_methods.inject(0) do |highest, m|
|
129
|
+
m.score > highest ? m.score : highest
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
require 'enumerator'
|
2
|
+
|
3
|
+
module MetricFu
|
4
|
+
|
5
|
+
class Rcov < Generator
|
6
|
+
NEW_FILE_MARKER = ("=" * 80) + "\n"
|
7
|
+
|
8
|
+
def self.verify_dependencies!
|
9
|
+
`flay --help`
|
10
|
+
unless $?.success?
|
11
|
+
if RUBY_PLATFORM =~ /java/
|
12
|
+
raise 'running in jruby - rcov tasks not available'
|
13
|
+
else
|
14
|
+
raise 'sudo gem install rcov # if you want the rcov tasks'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class Line
|
20
|
+
attr_accessor :content, :was_run
|
21
|
+
|
22
|
+
def initialize(content, was_run)
|
23
|
+
@content = content
|
24
|
+
@was_run = was_run
|
25
|
+
end
|
26
|
+
|
27
|
+
def to_h
|
28
|
+
{:content => @content, :was_run => @was_run}
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def emit
|
33
|
+
begin
|
34
|
+
FileUtils.rm_rf(MetricFu::Rcov.metric_directory, :verbose => false)
|
35
|
+
Dir.mkdir(MetricFu::Rcov.metric_directory)
|
36
|
+
test_files = FileList[*MetricFu.rcov[:test_files]].join(' ')
|
37
|
+
rcov_opts = MetricFu.rcov[:rcov_opts].join(' ')
|
38
|
+
output = ">> #{MetricFu::Rcov.metric_directory}/rcov.txt"
|
39
|
+
`rcov --include-file #{test_files} #{rcov_opts} #{output}`
|
40
|
+
rescue LoadError
|
41
|
+
if RUBY_PLATFORM =~ /java/
|
42
|
+
puts 'running in jruby - rcov tasks not available'
|
43
|
+
else
|
44
|
+
puts 'sudo gem install rcov # if you want the rcov tasks'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
|
50
|
+
def analyze
|
51
|
+
output = File.open(MetricFu::Rcov.metric_directory + '/rcov.txt').read
|
52
|
+
output = output.split(NEW_FILE_MARKER)
|
53
|
+
# Throw away the first entry - it's the execution time etc.
|
54
|
+
output.shift
|
55
|
+
files = {}
|
56
|
+
output.each_slice(2) {|out| files[out.first.strip] = out.last}
|
57
|
+
files.each_pair {|fname, content| files[fname] = content.split("\n") }
|
58
|
+
files.each_pair do |fname, content|
|
59
|
+
content.map! do |raw_line|
|
60
|
+
if raw_line.match(/^!!/)
|
61
|
+
line = Line.new(raw_line.gsub('!!', ' '), false).to_h
|
62
|
+
else
|
63
|
+
line = Line.new(raw_line, true).to_h
|
64
|
+
end
|
65
|
+
end
|
66
|
+
files[fname] = {:lines => content}
|
67
|
+
end
|
68
|
+
|
69
|
+
# Calculate the percentage of lines run in each file
|
70
|
+
@global_total_lines = 0
|
71
|
+
@global_total_lines_run = 0
|
72
|
+
files.each_pair do |fname, content|
|
73
|
+
lines = content[:lines]
|
74
|
+
@global_total_lines_run += lines_run = lines.find_all {|line| line[:was_run] == true }.length
|
75
|
+
@global_total_lines += total_lines = lines.length
|
76
|
+
percent_run = ((lines_run.to_f / total_lines.to_f) * 100).round
|
77
|
+
files[fname][:percent_run] = percent_run
|
78
|
+
end
|
79
|
+
@rcov = files
|
80
|
+
end
|
81
|
+
|
82
|
+
def to_h
|
83
|
+
global_percent_run = ((@global_total_lines_run.to_f / @global_total_lines.to_f) * 100)
|
84
|
+
{:rcov => @rcov.merge({:global_percent_run => round_to_tenths(global_percent_run) })}
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|