Class: CodeHistogram

Inherits:
Object
  • Object
show all
Defined in:
lib/zombie_killer/code_histogram.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCodeHistogram

Returns a new instance of CodeHistogram.



4
5
6
7
8
# File 'lib/zombie_killer/code_histogram.rb', line 4

def initialize
  @counts = Hash.new do |hash, key|
    hash[key] = 0
  end
end

Instance Attribute Details

#countsObject (readonly)

Returns the value of attribute counts.



2
3
4
# File 'lib/zombie_killer/code_histogram.rb', line 2

def counts
  @counts
end

Class Method Details

.parse_by_frequency(lines) ⇒ Object



24
25
26
27
28
29
30
31
32
# File 'lib/zombie_killer/code_histogram.rb', line 24

def self.parse_by_frequency(lines)
  histogram = CodeHistogram.new
  lines.each do |line|
    /^\s*(\d*)\s*(.*)/.match(line.chomp) do |m|
      histogram.increment(m[2], m[1].to_i)
    end
  end
  histogram
end

Instance Method Details

#increment(key, value = 1) ⇒ Object



10
11
12
# File 'lib/zombie_killer/code_histogram.rb', line 10

def increment(key, value = 1)
  @counts[key] += value
end

#merge!(other) ⇒ Object



34
35
36
37
38
# File 'lib/zombie_killer/code_histogram.rb', line 34

def merge!(other)
  counts.merge!(other.counts) do |key, count, other_count|
    count + other_count
  end
end


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

def print_by_frequency(io)
  count_to_methods = invert_hash_preserving_duplicates(@counts)

  count_to_methods.keys.sort.each do |c|
    count_to_methods[c].sort.each do |method|
      io.printf("%4d %s\n", c, method)
    end
  end
end