nielsm-metric_fu 0.9.1 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. data/HISTORY +38 -0
  2. data/README +1 -154
  3. data/Rakefile +9 -2
  4. data/TODO +3 -3
  5. data/lib/base/base_template.rb +146 -0
  6. data/lib/base/configuration.rb +207 -0
  7. data/lib/base/generator.rb +160 -0
  8. data/lib/base/graph.rb +37 -0
  9. data/lib/{metric_fu → base}/md5_tracker.rb +0 -0
  10. data/lib/base/report.rb +100 -0
  11. data/lib/{metric_fu → generators}/churn.rb +26 -23
  12. data/lib/generators/flay.rb +34 -0
  13. data/lib/generators/flog.rb +140 -0
  14. data/lib/generators/rcov.rb +87 -0
  15. data/lib/generators/reek.rb +37 -0
  16. data/lib/generators/roodi.rb +31 -0
  17. data/lib/generators/saikuro.rb +208 -0
  18. data/lib/generators/stats.rb +43 -0
  19. data/lib/graphs/flay_grapher.rb +34 -0
  20. data/lib/graphs/flog_grapher.rb +37 -0
  21. data/lib/graphs/rcov_grapher.rb +34 -0
  22. data/lib/graphs/reek_grapher.rb +44 -0
  23. data/lib/graphs/roodi_grapher.rb +34 -0
  24. data/lib/metric_fu.rb +24 -3
  25. data/lib/templates/awesome/awesome_template.rb +30 -0
  26. data/lib/templates/awesome/churn.html.erb +19 -0
  27. data/lib/templates/awesome/default.css +75 -0
  28. data/lib/templates/awesome/flay.html.erb +27 -0
  29. data/lib/templates/awesome/flog.html.erb +46 -0
  30. data/lib/templates/awesome/index.html.erb +28 -0
  31. data/lib/templates/awesome/layout.html.erb +27 -0
  32. data/lib/templates/awesome/rcov.html.erb +36 -0
  33. data/lib/templates/awesome/reek.html.erb +34 -0
  34. data/lib/templates/awesome/roodi.html.erb +21 -0
  35. data/lib/templates/awesome/saikuro.html.erb +71 -0
  36. data/lib/templates/awesome/stats.html.erb +41 -0
  37. data/lib/templates/{churn.html.erb → standard/churn.html.erb} +13 -4
  38. data/lib/templates/{default.css → standard/default.css} +20 -1
  39. data/lib/templates/{flay.html.erb → standard/flay.html.erb} +13 -9
  40. data/lib/templates/standard/flog.html.erb +53 -0
  41. data/lib/templates/standard/index.html.erb +38 -0
  42. data/lib/templates/standard/rcov.html.erb +43 -0
  43. data/lib/templates/standard/reek.html.erb +42 -0
  44. data/lib/templates/{roodi.html.erb → standard/roodi.html.erb} +11 -8
  45. data/lib/templates/standard/saikuro.html.erb +84 -0
  46. data/lib/templates/standard/standard_template.rb +26 -0
  47. data/lib/templates/standard/stats.html.erb +55 -0
  48. data/spec/base/base_template_spec.rb +161 -0
  49. data/spec/base/configuration_spec.rb +303 -0
  50. data/spec/base/generator_spec.rb +181 -0
  51. data/spec/{md5_tracker_spec.rb → base/md5_tracker_spec.rb} +1 -1
  52. data/spec/base/report_spec.rb +139 -0
  53. data/spec/generators/churn_spec.rb +152 -0
  54. data/spec/generators/flay_spec.rb +104 -0
  55. data/spec/generators/flog_spec.rb +219 -0
  56. data/spec/generators/reek_spec.rb +60 -0
  57. data/spec/generators/saikuro_spec.rb +58 -0
  58. data/spec/generators/stats_spec.rb +74 -0
  59. data/spec/graphs/flog_grapher_spec.rb +15 -0
  60. data/spec/resources/saikuro/app/controllers/sessions_controller.rb_cyclo.html +10 -0
  61. data/spec/resources/saikuro/app/controllers/users_controller.rb_cyclo.html +16 -0
  62. data/spec/resources/saikuro/index_cyclo.html +155 -0
  63. data/spec/resources/saikuro_sfiles/thing.rb_cyclo.html +10 -0
  64. data/spec/spec.opts +8 -0
  65. data/spec/spec_helper.rb +24 -7
  66. data/tasks/metric_fu.rake +22 -0
  67. data/vendor/_fonts/monaco.ttf +0 -0
  68. data/{lib/metric_fu → vendor}/saikuro/saikuro.rb +0 -0
  69. metadata +84 -66
  70. data/lib/metric_fu/base.rb +0 -160
  71. data/lib/metric_fu/flay.rb +0 -17
  72. data/lib/metric_fu/flog.rb +0 -129
  73. data/lib/metric_fu/reek.rb +0 -17
  74. data/lib/metric_fu/roodi.rb +0 -17
  75. data/lib/tasks/churn.rake +0 -9
  76. data/lib/tasks/coverage.rake +0 -54
  77. data/lib/tasks/flay.rake +0 -6
  78. data/lib/tasks/flog.rake +0 -69
  79. data/lib/tasks/metric_fu.rake +0 -24
  80. data/lib/tasks/metric_fu.rb +0 -6
  81. data/lib/tasks/railroad.rake +0 -39
  82. data/lib/tasks/reek.rake +0 -6
  83. data/lib/tasks/roodi.rake +0 -7
  84. data/lib/tasks/saikuro.rake +0 -35
  85. data/lib/tasks/stats.rake +0 -14
  86. data/lib/templates/flog.html.erb +0 -38
  87. data/lib/templates/flog_page.html.erb +0 -25
  88. data/lib/templates/reek.html.erb +0 -30
  89. data/spec/base_spec.rb +0 -57
  90. data/spec/churn_spec.rb +0 -117
  91. data/spec/config_spec.rb +0 -110
  92. data/spec/flay_spec.rb +0 -19
  93. data/spec/flog_spec.rb +0 -208
  94. data/spec/reek_spec.rb +0 -26
data/HISTORY CHANGED
@@ -1,3 +1,41 @@
1
+ === MetricFu 1.1.1 / 2009-6-29
2
+
3
+ * Fix for empty flog files
4
+
5
+ === MetricFu 1.1.0 / 2009-6-22
6
+
7
+ * Flog, flay, reek, roodi, and rcov reports now graph progress over time. Well done Nick Quaranto and Edouard Brière.
8
+ * 'Awesome' template has been brought in so that reports look 90% less 'ghetto.' Also done by Nick Quaranto and Edouard Brière.
9
+ * Added links to TextMate (which keep getting removed. Probably by me. Sorry.) -- David Chelimsky
10
+ * Fixed a bug for scratch files which have a size of 0 -- Kevin Hall
11
+ * Changed gem dependencies from install-time in gemspec to runtime when each of the generators is loaded. This allows use of github gems (i.e. relevance-rcov instead of rcov) and also allows you to install only the gems for the metrics you plan on using. -- Alex Rothenberg
12
+ * Empty Flog file fix -- Adam Bair
13
+ * Added a simple fix for cases where Saikuro results with nested information -- Randy Souza
14
+ * Fixed rcov configuration so it ignores library files on Linux -- Diego Carrion
15
+ * Changing churn so that it still works deeper than the git root directory -- Andrew Timberlake
16
+ * Andrew Timberlake also made some nice changes to the base template which kinda of got overshadowed by the 'awesome' template. Sorry about that Andrew.
17
+
18
+ === MetricFu 1.0.2 / 2009-5-11
19
+
20
+ * Fixing problems with Reek new line character (thanks to all who pointed this out)
21
+ * Flog now recognizes namespaces in method names thanks to Daniel Guettler
22
+ * Saikuro now looks at multiple directories, again.
23
+
24
+ === MetricFu 1.0.1 / 2009-5-3
25
+
26
+ * metrics:all task no longer requires a MetricFu::Configuration.run {} if you want to accept the defaults
27
+ * rcov task now reports total coverage percent
28
+
29
+ === MetricFu 1.0.0 / 2009-4-30
30
+
31
+ * Merged in Grant McInnes' work on creating yaml output for all metrics to aid harvesting by other tools
32
+ * Supporting Flog 2.1.0
33
+ * Supporting Reek 1.0.0
34
+ * Removed dependency on Rails Env for 3.months.ago (for churn report), now using chronic gem ("3 months ago").
35
+ * Almost all code is out of Rakefiles now and so is more easily testable
36
+ * Metrics inherit from a refactored Generator now. New metrics generators just have to implement "emit", "analyze", "to_h" and inherit from Generator. They also must have a template. See the flay generator and template for a simple implementation.
37
+ * You now define the metrics you wish to run in the configuration and then run "metrics:all". No other metrics task is exposed by default.
38
+
1
39
  === MetricFu 0.9.0 / 2009-1-25
2
40
 
3
41
  * Adding line numbers to the views so that people viewing it on cc.rb can figure out where the problems are
data/README CHANGED
@@ -1,154 +1 @@
1
- Version 0.9.0
2
- http://github.com/jscruggs/metric_fu
3
-
4
- Metric_fu began its life as a plugin for Rails that generated code metrics reports. As of version 0.7.0, metric_fu is a gem owing to the excellent work done by Sean Soper.
5
-
6
- Metric_fu is a set of rake tasks that make it easy to generate metrics reports. It uses Saikuro, Flog, Rcov, and Rails' built-in stats task to create a series of reports. It's designed to integrate easily with CruiseControl.rb by placing files in the Custom Build Artifacts folder.
7
-
8
- ****Installation****
9
- sudo gem install jscruggs-metric_fu -s http://gems.github.com
10
-
11
- Then in your Rakefile:
12
- require 'metric_fu'
13
-
14
- If you like to vendor gems, you can unpack metric_fu into vendor/gems and require it like so:
15
- require 'vendor/gems/jscruggs-metric_fu-0.9.0/lib/metric_fu'
16
-
17
- then you don't have to install it on every box you run it on.
18
-
19
- Important note:
20
- You must have Rcov and Flog installed to get coverage and flog reports. Metric_fu requires both of these gems so they will be installed when you install the metric_fu gem.
21
-
22
-
23
- ****Usage****
24
-
25
- Out of the box metrics provides these tasks:
26
- rake metrics:all # Generate coverage, cyclomatic complexity, flog, flay, railroad and churn reports
27
- rake metrics:churn # Which files change the most
28
- rake metrics:coverage # Generate and open coverage report
29
- rake metrics:coverage:clean # Delete aggregate coverage data.
30
- rake metrics:coverage:clobber_do # Remove rcov products for do
31
- rake metrics:coverage:do # RCov task to generate report
32
- rake metrics:flay # Generate code duplication report with flay
33
- rake metrics:flog:all # Generate and open flog report
34
- rake metrics:flog:clean # Delete aggregate flog data.
35
- rake metrics:flog:controllers # Flog code in app/controllers
36
- rake metrics:flog:custom # Generate a flog report from specified directories
37
- rake metrics:flog:helpers # Flog code in app/helpers
38
- rake metrics:flog:lib # Flog code in lib
39
- rake metrics:flog:models # Flog code in app/models
40
- rake metrics:reek # A code smell report using Reek
41
- rake metrics:saikuro # A cyclomatic complexity report using Saikuro
42
-
43
- Rails projects also have the following tasks:
44
-
45
- rake metrics:stats # A stats report
46
-
47
- See below for more detail on the individual tasks. It's recommended to use CruiseControl.rb to set up a metrics build. See the CruiseControl.rb online docs for more info on how to set up cc.rb and, once you've got that figured out, change the cruise_config.rb file inside your project to have these lines:
48
-
49
- project.rake_task = 'metrics:all_with_migrate'
50
- project.scheduler.polling_interval = 24.hours
51
-
52
- Which will check for updates every 24 hours and run all the metrics rake tasks (migrating your test db first). The output will be visible from an individual build's detail page.
53
-
54
-
55
- ****Notes on configuration****
56
-
57
- Metric_fu can be customized to your liking by adding the following to your Rakefile
58
-
59
- MetricFu::Configuration.run do |config|
60
- #define which metrics you want to use
61
- config.metrics = [:coverage, :flog]
62
- config.churn = { :start_date => lambda{ 3.months.ago } }
63
- config.coverage = { :test_files => ['test/**/test_*.rb'] }
64
- config.flog = { :dirs_to_flog => ['cms/app', 'cms/lib'] }
65
- config.flay = { :dirs_to_flay => ['cms/app', 'cms/lib'] }
66
- config.saikuro = { "--warn_cyclo" => "3", "--error_cyclo" => "4" }
67
- end
68
-
69
-
70
- ****Notes on metrics:coverage****
71
-
72
- When creating a coverage report, metric_fu runs all the tests in the test folder and specs in spec folder using Rcov.
73
- You can configure the coverage test files pattern:
74
- config.coverage[:test_files] = ['test/**/test_*.rb']
75
-
76
- The default value is ['test/**/*_test.rb', 'spec/**/*_spec.rb']
77
-
78
- You may also configure Rcov options:
79
- config.coverage = { :test_files => ['test/**/*_test.rb'],
80
- :rcov_opts => ["--exclude /gems/,/Library/"] }
81
-
82
- The default value is { :test_files => ['test/**/*_test.rb', 'spec/**/*_spec.rb'],
83
- :rcov_opts => ["--sort coverage", "--html", "--rails", "--exclude /gems/,/Library/,spec"] }
84
-
85
-
86
- ****Notes on metrics:saikuro****
87
-
88
- Saikuro is bundled with metric_fu so you don't have to install it. Look at the SAIKURO_README (or the internet) for more documentation on Saikuro. If you wish to change the options Saikuro is run with, then set this constant in your configuration:
89
-
90
- config.saikuro = { "--warn_cyclo" => "3", "--error_cyclo" => "4" }
91
-
92
- config.saikuro is a hash that gets merged with the default options hash. The above example will set the warn_cyclo to 3 and the error_cyclo to 4 (which is way too low -- it's just an example) instructing Saikuro to flag methods with a higher cyclomatic complexity in it's report.
93
-
94
- If you want to have Saikuro look at multiple folders you can put something like this in your configuration:
95
-
96
- config.saikuro = {"--input_directory" => '"cms/app | cms/lib"'}
97
-
98
-
99
- ****Notes on metrics:flay****
100
-
101
- Flay analyzes ruby code for structural similarities.
102
- You can configure which directories need to be flayed.
103
- The defaults are 'lib' for non Rails projects and ['app', 'lib'] for Rails projects.
104
-
105
- config.flay[:dirs_to_flay] = ['cms/app', 'cms/lib']
106
-
107
-
108
- ****Notes on metrics:flog****
109
-
110
- Flog is another way of measuring complexity (or tortured code as the Flog authors like to put it). You should check out the awesome, and a little scary, Flog website for more info.
111
- 'rake metrics:flog:custom' allows you to specify a custom set of directories to Flog (in your configuration).
112
- The defaults are 'lib' for non Rails projects and ['app', 'lib'] for Rails projects.
113
-
114
- config.flog[:dirs_to_flog] = ['cms/app', 'cms/lib']
115
-
116
-
117
- ****Notes on metrics:reek****
118
-
119
- Reek detects common code smells in ruby code.
120
- You can configure which directories need to be checked.
121
- The defaults are 'lib' for non Rails projects and ['app', 'lib'] for Rails projects.
122
-
123
- config.reek[:dirs_to_reek] = ['cms/app', 'cms/lib']
124
-
125
-
126
- ****Notes on metrics:roodi****
127
-
128
- Roodi parses your Ruby code and warns you about design issues you have based on the checks that is has configured.
129
- You can configure which directories need to be checked.
130
- The defaults are 'lib' for non Rails projects and ['app', 'lib'] for Rails projects.
131
-
132
- config.roodi[:dirs_to_roodi] = ['cms/app', 'cms/lib']
133
-
134
- ****Notes on metrics:stats****
135
-
136
- This is just 'rake stats' for Rails put into a file. On my projects I like to be able to look at CruiseControl and get stats about the app at different points in time.
137
-
138
-
139
- ****Notes on metrics:churn****
140
-
141
- Files that change a lot in your project may be bad a sign. This task uses "svn log" to identify those files and put them in a report. The default is to start counting changes from the beginning of your project, which might be too far back so you can change like so:
142
-
143
- config.churn = { :start_date => lambda{ 3.months.ago } }
144
-
145
- The Proc is there because '3.months.ago' only works when after the Rails Environment is loaded (and Rails extends Fixnum) which I didn't want to do every time you run a rake task.
146
-
147
- You can also change the minimum churn count like so:
148
-
149
- config.churn = { :minimum_churn_count => 3 }
150
-
151
-
152
- ****Thanks****
153
-
154
- I'd like to thank the authors of Saikuro, Flog, Rcov, CruiseControl.rb, Flay, Reek, Roodi and Rails for creating such excellent open source products. Also Andre Arko, Petrik de Heus, Sean Soper, Erik St Martin, Andy Gregorowicz, Bastien, Michael Schubert, Kurtis Seebaldt, Toby Tripp, Paul Gross, and Chirdeep Shetty for their help and advice.
1
+ See http://metric-fu.rubyforge.org/ for documentation, or the HISTORY file for a change log.
data/Rakefile CHANGED
@@ -1,11 +1,18 @@
1
1
  require 'rake'
2
2
  require 'rake/rdoctask'
3
3
  require 'spec/rake/spectask'
4
- require File.join(File.dirname(__FILE__), 'lib', 'metric_fu')
4
+ require 'lib/metric_fu'
5
5
 
6
6
  desc "Run all specs in spec directory"
7
7
  Spec::Rake::SpecTask.new(:spec) do |t|
8
8
  t.spec_files = FileList['spec/**/*_spec.rb']
9
+ t.rcov = true
10
+ t.rcov_opts = ['--exclude', 'spec,config,Library,usr/lib/ruby']
11
+ t.rcov_dir = File.join(File.dirname(__FILE__), "tmp")
9
12
  end
10
13
 
11
- task :default => [:"metrics:all"]
14
+ MetricFu::Configuration.run do |config|
15
+ config.template_class = AwesomeTemplate
16
+ end
17
+
18
+ task :default => [:"metrics:all"]
data/TODO CHANGED
@@ -1,13 +1,13 @@
1
1
  == TODO list
2
2
 
3
3
  * Color code flog results with scale from: http://jakescruggs.blogspot.com/2008/08/whats-good-flog-score.html
4
- * Extract functionality from rake files and put under test
5
4
  * Integrate Flog, Saikuro, and Coverage into one report so you can see methods that have high complexity and low coverage (this is a big one)
6
- * Integrate MD5 hashing with remainder of reports
7
5
  * Move HTML out of code and into templates/
8
6
  * Replace #generate_report with #new on each metric class
9
7
  * Make each class descend from MetricFu::CodeMetric
10
8
  * Generate metrics:* rake tasks for each of CodeMetric's descendants
11
9
  * Update flog specs so that they actually run flog
12
10
  * Add flay specs that run flay
13
- * Convert readme to markdown and rename to README.mkdn so github will render it
11
+ * Convert readme to markdown and rename to README.mkdn so github will render it
12
+ * Saikuro.rb falls over if tries to parse an empty file. Fair enough. We shouldn't feed it empty files
13
+ * Make running metric_fu on metric_fu less embarrassing
@@ -0,0 +1,146 @@
1
+ module MetricFu
2
+
3
+ # The Template class is intended as an abstract class for concrete
4
+ # template classes to subclass. It provides a variety of utility
5
+ # methods to make templating a bit easier. However, classes do not
6
+ # have to inherit from here in order to provide a template. The only
7
+ # requirement for a template class is that it provides a #write method
8
+ # to actually write out the template. See StandardTemplate for an
9
+ # example.
10
+ class Template
11
+ attr_accessor :report
12
+
13
+ private
14
+ # Creates a new erb evaluated result from the passed in section.
15
+ #
16
+ # @param section String
17
+ # The section name of
18
+ #
19
+ # @return String
20
+ # The erb evaluated string
21
+ def erbify(section)
22
+ require 'erb'
23
+ erb_doc = File.read(template(section))
24
+ ERB.new(erb_doc).result(binding)
25
+ end
26
+
27
+ # Determines whether a template file exists for a given section
28
+ # of the full template.
29
+ #
30
+ # @param section String
31
+ # The section of the template to check against
32
+ #
33
+ # @return Boolean
34
+ # Does a template file exist for this section or not?
35
+ def template_exists?(section)
36
+ File.exist?(template(section))
37
+ end
38
+
39
+ # Copies an instance variable mimicing the name of the section
40
+ # we are trying to render, with a value equal to the passed in
41
+ # constant. Allows the concrete template classes to refer to
42
+ # that instance variable from their ERB rendering
43
+ #
44
+ # @param section String
45
+ # The name of the instance variable to create
46
+ #
47
+ # @param contents Object
48
+ # The value to set as the value of the created instance
49
+ # variable
50
+ def create_instance_var(section, contents)
51
+ instance_variable_set("@#{section}", contents)
52
+ end
53
+
54
+ # Generates the filename of the template file to load and
55
+ # evaluate. In this case, the path to the template directory +
56
+ # the section name + .html.erb
57
+ #
58
+ # @param section String
59
+ # A section of the template to render
60
+ #
61
+ # @return String
62
+ # A file path
63
+ def template(section)
64
+ File.join(this_directory, section.to_s + ".html.erb")
65
+ end
66
+
67
+ # Returns the filename that the template will render into for
68
+ # a given section. In this case, the section name + '.html'
69
+ #
70
+ # @param section String
71
+ # A section of the template to render
72
+ #
73
+ # @return String
74
+ # The output filename
75
+ def output_filename(section)
76
+ section.to_s + ".html"
77
+ end
78
+
79
+ # Returns the contents of a given css file in order to
80
+ # render it inline into a template.
81
+ #
82
+ # @param css String
83
+ # The name of a css file to open
84
+ #
85
+ # @return String
86
+ # The contents of the css file
87
+ def inline_css(css)
88
+ open(File.join(this_directory, css)) { |f| f.read }
89
+ end
90
+
91
+ # Provides a link to open a file through the textmate protocol
92
+ # on Darwin, or otherwise, a simple file link.
93
+ #
94
+ # @param name String
95
+ #
96
+ # @param line Integer
97
+ # The line number to link to, if textmate is available. Defaults
98
+ # to nil
99
+ #
100
+ # @return String
101
+ # An anchor link to a textmate reference or a file reference
102
+ def link_to_filename(name, line = nil, link_content = nil)
103
+ "<a href='#{file_url(name, line)}'>#{link_content(name, line, link_content)}</a>"
104
+ end
105
+
106
+ def link_content(name, line=nil, link_content=nil) # :nodoc:
107
+ if link_content
108
+ link_content
109
+ elsif line
110
+ "#{name}:#{line}"
111
+ else
112
+ name
113
+ end
114
+ end
115
+
116
+ def file_url(name, line) # :nodoc:
117
+ filename = File.expand_path(name.gsub(/^\//, ''))
118
+ if MetricFu.configuration.platform.include?('darwin')
119
+ "txmt://open/?url=file://#{filename}" << (line ? "&line=#{line}" : "")
120
+ else
121
+ "file://#{filename}"
122
+ end
123
+ end
124
+
125
+ # Provides a brain dead way to cycle between two values during
126
+ # an iteration of some sort. Pass in the first_value, the second_value,
127
+ # and the cardinality of the iteration.
128
+ #
129
+ # @param first_value Object
130
+ #
131
+ # @param second_value Object
132
+ #
133
+ # @param iteration Integer
134
+ # The number of times through the iteration.
135
+ #
136
+ # @return Object
137
+ # The first_value if iteration is even. The second_value if
138
+ # iteration is odd.
139
+ def cycle(first_value, second_value, iteration)
140
+ return first_value if iteration % 2 == 0
141
+ return second_value
142
+ end
143
+
144
+
145
+ end
146
+ end
@@ -0,0 +1,207 @@
1
+ module MetricFu
2
+
3
+ # A list of metrics which are available in the MetricFu system.
4
+ #
5
+ # These are metrics which have been developed for the system. Of
6
+ # course, in order to use these metrics, their respective gems must
7
+ # be installed on the system.
8
+ AVAILABLE_METRICS = [:churn, :flog, :flay, :reek,
9
+ :roodi, :saikuro, :rcov]
10
+
11
+ AVAILABLE_GRAPHS = [:flog, :flay, :reek, :roodi, :rcov]
12
+
13
+ # The @@configuration class variable holds a global type configuration
14
+ # object for any parts of the system to use.
15
+ def self.configuration
16
+ @@configuration ||= Configuration.new
17
+ end
18
+
19
+ # = Configuration
20
+ #
21
+ # The Configuration class, as it sounds, provides methods for
22
+ # configuring the behaviour of MetricFu.
23
+ #
24
+ # == Customization for Rails
25
+ #
26
+ # The Configuration class checks for the presence of a
27
+ # 'config/environment.rb' file. If the file is present, it assumes
28
+ # it is running in a Rails project. If it is, it will:
29
+ #
30
+ # * Add 'app' to the @code_dirs directory to include the
31
+ # code in the app directory in the processing
32
+ # * Add :stats to the list of metrics to run to get the Rails stats
33
+ # task
34
+ #
35
+ # == Customization for CruiseControl.rb
36
+ #
37
+ # The Configuration class checks for the presence of a
38
+ # 'CC_BUILD_ARTIFACTS' environment variable. If it's found
39
+ # it will change the default output directory from the default
40
+ # "tmp/metric_fu to the directory represented by 'CC_BUILD_ARTIFACTS'
41
+ #
42
+ # == Deprications
43
+ #
44
+ # The Configuration class checks for several deprecated constants
45
+ # that were previously used to configure MetricFu. These include
46
+ # CHURN_OPTIONS, DIRECTORIES_TO_FLOG, SAIKURO_OPTIONS,
47
+ # and MetricFu::SAIKURO_OPTIONS.
48
+ #
49
+ # These have been replaced by config.churn, config.flog and
50
+ # config.saikuro respectively.
51
+ class Configuration
52
+
53
+ def initialize #:nodoc:#
54
+ warn_about_deprecated_config_options
55
+ reset
56
+ add_attr_accessors_to_self
57
+ add_class_methods_to_metric_fu
58
+ end
59
+
60
+ # Searches through the instance variables of the class and
61
+ # creates a class method on the MetricFu module to read the value
62
+ # of the instance variable from the Configuration class.
63
+ def add_class_methods_to_metric_fu
64
+ instance_variables.each do |name|
65
+ method_name = name[1..-1].to_sym
66
+ method = <<-EOF
67
+ def self.#{method_name}
68
+ configuration.send(:#{method_name})
69
+ end
70
+ EOF
71
+ MetricFu.module_eval(method)
72
+ end
73
+ end
74
+
75
+ # Searches through the instance variables of the class and creates
76
+ # an attribute accessor on this instance of the Configuration
77
+ # class for each instance variable.
78
+ def add_attr_accessors_to_self
79
+ instance_variables.each do |name|
80
+ method_name = name[1..-1].to_sym
81
+ MetricFu::Configuration.send(:attr_accessor, method_name)
82
+ end
83
+ end
84
+
85
+ # Check if certain constants that are deprecated have been
86
+ # assigned. If so, warn the user about them, and the
87
+ # fact that they will have no effect.
88
+ def warn_about_deprecated_config_options
89
+ if defined?(::MetricFu::CHURN_OPTIONS)
90
+ raise("Use config.churn instead of MetricFu::CHURN_OPTIONS")
91
+ end
92
+ if defined?(::MetricFu::DIRECTORIES_TO_FLOG)
93
+ raise("Use config.flog[:dirs_to_flog] "+
94
+ "instead of MetricFu::DIRECTORIES_TO_FLOG")
95
+ end
96
+ if defined?(::MetricFu::SAIKURO_OPTIONS)
97
+ raise("Use config.saikuro instead of MetricFu::SAIKURO_OPTIONS")
98
+ end
99
+ if defined?(SAIKURO_OPTIONS)
100
+ raise("Use config.saikuro instead of SAIKURO_OPTIONS")
101
+ end
102
+ end
103
+
104
+ # This allows us to have a nice syntax like:
105
+ #
106
+ # MetricFu.run do |config|
107
+ # config.base_directory = 'tmp/metric_fu'
108
+ # end
109
+ #
110
+ # See the README for more information on configuration options.
111
+ def self.run
112
+ yield MetricFu.configuration
113
+ end
114
+
115
+ # This does the real work of the Configuration class, by setting
116
+ # up a bunch of instance variables to represent the configuration
117
+ # of the MetricFu app.
118
+ def reset
119
+ @base_directory = ENV['CC_BUILD_ARTIFACTS'] || 'tmp/metric_fu'
120
+ @scratch_directory = File.join(@base_directory, 'scratch')
121
+ @output_directory = File.join(@base_directory, 'output')
122
+ @data_directory = File.join('tmp/metric_fu', '_data')
123
+ @metric_fu_root_directory = File.join(File.dirname(__FILE__),
124
+ '..', '..')
125
+ @template_directory = File.join(@metric_fu_root_directory,
126
+ 'lib', 'templates')
127
+ @template_class = AwesomeTemplate
128
+ set_metrics
129
+ set_graphs
130
+ set_code_dirs
131
+ @flay = { :dirs_to_flay => @code_dirs }
132
+ @flog = { :dirs_to_flog => @code_dirs }
133
+ @reek = { :dirs_to_reek => @code_dirs }
134
+ @roodi = { :dirs_to_roodi => @code_dirs }
135
+ @saikuro = { :output_directory => @scratch_directory + '/saikuro',
136
+ :input_directory => @code_dirs,
137
+ :cyclo => "",
138
+ :filter_cyclo => "0",
139
+ :warn_cyclo => "5",
140
+ :error_cyclo => "7",
141
+ :formater => "text"}
142
+ @churn = {}
143
+ @stats = {}
144
+ @rcov = { :test_files => ['test/**/*_test.rb',
145
+ 'spec/**/*_spec.rb'],
146
+ :rcov_opts => ["--sort coverage",
147
+ "--no-html",
148
+ "--text-coverage",
149
+ "--no-color",
150
+ "--profile",
151
+ "--rails",
152
+ "--exclude /gems/,/Library/,/usr/,spec"]}
153
+
154
+ @graph_theme = { :colors => %w(orange purple green white red blue pink yellow),
155
+ :marker_color => 'blue',
156
+ :background_colors => %w(white white)}
157
+
158
+ relative_font_path = [File.dirname(__FILE__), '..', '..', 'vendor', '_fonts', 'monaco.ttf']
159
+ @graph_font = File.expand_path(File.join(relative_font_path))
160
+ @graph_size = "1000x400"
161
+ @graph_title_font_size = 12
162
+ @graph_legend_box_size = 12
163
+ @graph_legend_font_size = 10
164
+ @graph_marker_font_size = 10
165
+
166
+ end
167
+
168
+ # Perform a simple check to try and guess if we're running
169
+ # against a rails app.
170
+ #
171
+ # @todo This should probably be made a bit more robust.
172
+ def rails?
173
+ @rails = File.exist?("config/environment.rb")
174
+ end
175
+
176
+ # Add the :stats task to the AVAILABLE_METRICS constant if we're
177
+ # running within rails.
178
+ def set_metrics
179
+ if rails?
180
+ @metrics = MetricFu::AVAILABLE_METRICS + [:stats]
181
+ else
182
+ @metrics = MetricFu::AVAILABLE_METRICS
183
+ end
184
+ end
185
+
186
+ def set_graphs
187
+ @graphs = MetricFu::AVAILABLE_GRAPHS
188
+ end
189
+
190
+ # Add the 'app' directory if we're running within rails.
191
+ def set_code_dirs
192
+ if rails?
193
+ @code_dirs = ['app', 'lib']
194
+ else
195
+ @code_dirs = ['lib']
196
+ end
197
+ end
198
+
199
+ def platform #:nodoc:
200
+ return PLATFORM
201
+ end
202
+
203
+ def is_cruise_control_rb?
204
+ !!ENV['CC_BUILD_ARTIFACTS']
205
+ end
206
+ end
207
+ end