Class: Flay

Inherits:
Object
  • Object
show all
Defined in:
lib/flay.rb,
lib/flay_erb.rb

Constant Summary collapse

VERSION =
'1.4.2'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(option = nil) ⇒ Flay



111
112
113
114
115
116
117
118
119
120
121
# File 'lib/flay.rb', line 111

def initialize option = nil
  @option = option || Flay.default_options
  @hashes = Hash.new { |h,k| h[k] = [] }

  self.identical      = {}
  self.masses         = {}
  self.total          = 0
  self.mass_threshold = @option[:mass]

  require 'ruby2ruby' if @option[:diff]
end

Instance Attribute Details

#hashesObject (readonly)

Returns the value of attribute hashes.



109
110
111
# File 'lib/flay.rb', line 109

def hashes
  @hashes
end

#identicalObject

Returns the value of attribute identical.



108
109
110
# File 'lib/flay.rb', line 108

def identical
  @identical
end

#mass_thresholdObject

Returns the value of attribute mass_threshold.



108
109
110
# File 'lib/flay.rb', line 108

def mass_threshold
  @mass_threshold
end

#massesObject

Returns the value of attribute masses.



108
109
110
# File 'lib/flay.rb', line 108

def masses
  @masses
end

#optionObject (readonly)

Returns the value of attribute option.



109
110
111
# File 'lib/flay.rb', line 109

def option
  @option
end

#totalObject

Returns the value of attribute total.



108
109
110
# File 'lib/flay.rb', line 108

def total
  @total
end

Class Method Details

.default_optionsObject



14
15
16
17
18
19
20
21
# File 'lib/flay.rb', line 14

def self.default_options
  {
    :diff    => false,
    :mass    => 16,
    :summary => false,
    :verbose => false,
  }
end

.expand_dirs_to_files(*dirs) ⇒ Object



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/flay.rb', line 74

def self.expand_dirs_to_files *dirs
  extensions = ['rb'] + Flay.load_plugins

  dirs.flatten.map { |p|
    if File.directory? p then
      Dir[File.join(p, '**', "*.{#{extensions.join(',')}}")]
    else
      p
    end
  }.flatten
end

.load_pluginsObject



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/flay.rb', line 86

def self.load_plugins
  unless defined? @@plugins then
    @@plugins = []

    plugins = Gem.find_files("flay_*.rb").reject { |p| p =~ /flay_task/ }

    plugins.each do |plugin|
      plugin_name = File.basename(plugin, '.rb').sub(/^flay_/, '')
      next if @@plugins.include? plugin_name
      begin
        load plugin
        @@plugins << plugin_name
      rescue LoadError => e
        warn "error loading #{plugin.inspect}: #{e.message}. skipping..."
      end
    end
  end
  @@plugins
rescue
  # ignore
end

.parse_optionsObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/flay.rb', line 23

def self.parse_options
  options = self.default_options

  OptionParser.new do |opts|
    opts.banner  = 'flay [options] files_or_dirs'
    opts.version = Flay::VERSION

    opts.separator ""
    opts.separator "Specific options:"
    opts.separator ""

    opts.on('-h', '--help', 'Display this help.') do
      puts opts
      exit
    end

    opts.on('-f', '--fuzzy', "DEAD: fuzzy similarities.") do
      abort "--fuzzy is no longer supported. Sorry. It sucked."
    end

    opts.on('-m', '--mass MASS', Integer, "Sets mass threshold") do |m|
      options[:mass] = m.to_i
    end

    opts.on('-v', '--verbose', "Verbose. Show progress processing files.") do
      options[:verbose] = true
    end

    opts.on('-d', '--diff', "Diff Mode. Display N-Way diff for ruby.") do
      options[:diff] = true
    end

    opts.on('-s', '--summary', "Summarize. Show flay score per file only.") do
      options[:summary] = true
    end

    extensions = ['rb'] + Flay.load_plugins

    opts.separator ""
    opts.separator "Known extensions: #{extensions.join(', ')}"

    begin
      opts.parse!
    rescue => e
      abort "#{e}\n\n#{opts}"
    end
  end

  options
end

Instance Method Details

#analyzeObject



156
157
158
159
160
161
162
163
164
165
# File 'lib/flay.rb', line 156

def analyze
  self.prune

  self.hashes.each do |hash,nodes|
    identical[hash] = nodes[1..-1].all? { |n| n == nodes.first }
    masses[hash] = nodes.first.mass * nodes.size
    masses[hash] *= (nodes.size) if identical[hash]
    self.total += masses[hash]
  end
end

#n_way_diff(*data) ⇒ Object



198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/flay.rb', line 198

def n_way_diff *data
  data.each_with_index do |s, i|
    c = (?A.ord + i).chr
    s.group = c
  end

  max = data.map { |s| s.scan(/^.*/).size }.max

  data.map! { |s| # FIX: this is tarded, but I'm out of brain
    c = s.group
    s = s.scan(/^.*/)
    s.push(*([""] * (max - s.size))) # pad
    s.each do |o|
      o.group = c
    end
    s
  }

  groups = data[0].zip(*data[1..-1])
  groups.map! { |lines|
    collapsed = lines.uniq
    if collapsed.size == 1 then
      "   #{lines.first}"
    else
      # TODO: make r2r have a canonical mode (doesn't make 1-liners)
      lines.reject { |l| l.empty? }.map { |l| "#{l.group}: #{l}" }
    end
  }
  groups.flatten.join("\n")
end

#process(*files) ⇒ Object

TODO: rename from process - should act as SexpProcessor



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/flay.rb', line 123

def process(*files) # TODO: rename from process - should act as SexpProcessor
  files.each do |file|
    warn "Processing #{file}" if option[:verbose]

    ext = File.extname(file).sub(/^\./, '')
    ext = "rb" if ext.nil? || ext.empty?
    msg = "process_#{ext}"

    unless respond_to? msg then
      warn "  Unknown file type: #{ext}, defaulting to ruby"
      msg = "process_rb"
    end

    begin
      sexp = begin
               send msg, file
             rescue => e
               warn "  #{e.message.strip}"
               warn "  skipping #{file}"
               nil
             end

      next unless sexp

      process_sexp sexp
    rescue SyntaxError => e
      warn "  skipping #{file}: #{e.message}"
    end
  end

  analyze
end

#process_erb(file) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/flay_erb.rb', line 8

def process_erb file
  erb = File.read file

  ruby = ERB.new(erb).src
  begin
    RubyParser.new.process(ruby, file)
  rescue => e
    warn ruby if option[:verbose]
    raise e
  end
end

#process_rb(file) ⇒ Object



167
168
169
# File 'lib/flay.rb', line 167

def process_rb file
  RubyParser.new.process(File.read(file), file)
end

#process_sexp(pt) ⇒ Object



171
172
173
174
175
176
177
178
# File 'lib/flay.rb', line 171

def process_sexp pt
  pt.deep_each do |node|
    next unless node.any? { |sub| Sexp === sub }
    next if node.mass < self.mass_threshold

    self.hashes[node.structural_hash] << node
  end
end

#pruneObject



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/flay.rb', line 180

def prune
  # prune trees that aren't duped at all, or are too small
  self.hashes.delete_if { |_,nodes| nodes.size == 1 }

  # extract all subtree hashes from all nodes
  all_hashes = {}
  self.hashes.values.each do |nodes|
    nodes.each do |node|
      node.all_structural_subhashes.each do |h|
        all_hashes[h] = true
      end
    end
  end

  # nuke subtrees so we show the biggest matching tree possible
  self.hashes.delete_if { |h,_| all_hashes[h] }
end

#report(prune = nil) ⇒ Object



243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/flay.rb', line 243

def report prune = nil
  puts "Total score (lower is better) = #{self.total}"
  puts

  if option[:summary] then

    self.summary.sort_by { |_,v| -v }.each do |file, score|
      puts "%8.2f: %s" % [score, file]
    end

    return
  end

  count = 0
  masses.sort_by { |h,m| [-m, hashes[h].first.file] }.each do |hash, mass|
    nodes = hashes[hash]
    next unless nodes.first.first == prune if prune
    puts

    same = identical[hash]
    node = nodes.first
    n = nodes.size
    match, bonus = if same then
                     ["IDENTICAL", "*#{n}"]
                   else
                     ["Similar",   ""]
                   end

    count += 1
    puts "%d) %s code found in %p (mass%s = %d)" %
      [count, match, node.first, bonus, mass]

    nodes.each_with_index do |x, i|
      if option[:diff] then
        c = (?A.ord + i).chr
        puts "  #{c}: #{x.file}:#{x.line}"
      else
        puts "  #{x.file}:#{x.line}"
      end
    end

    if option[:diff] then
      puts
      r2r = Ruby2Ruby.new
      puts n_way_diff(*nodes.map { |s| r2r.process(s.deep_clone) })
    end
  end
end

#summaryObject



229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/flay.rb', line 229

def summary
  score = Hash.new 0

  masses.each do |hash, mass|
    sexps = hashes[hash]
    mass_per_file = mass.to_f / sexps.size
    sexps.each do |sexp|
      score[sexp.file] += mass_per_file
    end
  end

  score
end