Class: Benchmark::Suite

Inherits:
Object
  • Object
show all
Defined in:
lib/benchmark/suite.rb

Defined Under Namespace

Classes: SimpleReport

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSuite

Returns a new instance of Suite.



37
38
39
40
41
42
43
# File 'lib/benchmark/suite.rb', line 37

def initialize
  @report = nil
  @reports = {}
  @order = []
  @quiet = false
  @verbose = false
end

Instance Attribute Details

#reportObject (readonly)

Returns the value of attribute report.



45
46
47
# File 'lib/benchmark/suite.rb', line 45

def report
  @report
end

#reportsObject (readonly)

Returns the value of attribute reports.



45
46
47
# File 'lib/benchmark/suite.rb', line 45

def reports
  @reports
end

Class Method Details

.createObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/benchmark/suite.rb', line 11

def self.create
  if block_given?
    old = @current

    begin
      s = new
      @current = s
      yield s
      return s
    ensure
      @current = old
    end
  else
    @current = new
  end
end

.currentObject



7
8
9
# File 'lib/benchmark/suite.rb', line 7

def self.current
  @current
end

Instance Method Details

#add_report(rep, location) ⇒ Object



70
71
72
73
74
75
76
77
78
# File 'lib/benchmark/suite.rb', line 70

def add_report(rep, location)
  if @report
    @report << rep
  else
    @report = [rep]
  end

  @report_location = location
end

#displayObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/benchmark/suite.rb', line 107

def display
  if @report
    file = @report_location ? @report_location.split(":").first : "<unknown.rb>"
    @order << file
    @reports[file] = [@report]
  end

  @order.each do |file|
    STDOUT.puts "#{file}:"
    reports = @reports[file]

    if reports.empty?
      STDOUT.puts "  NO REPORTS FOUND"
    else
      reports.each do |rep|
        STDOUT.puts "  #{rep}"
      end
    end
  end
end

#quiet!Object



47
48
49
# File 'lib/benchmark/suite.rb', line 47

def quiet!
  @quiet = true
end

#quiet?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/benchmark/suite.rb', line 51

def quiet?
  @quiet
end

#run(file) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/benchmark/suite.rb', line 80

def run(file)
  start = Time.now

  begin
    load file
  rescue Exception => e
    STDOUT.puts "\nError in #{file}:"
    if e.respond_to? :render
      e.render
    else
      STDOUT.puts e.backtrace
    end
    return
  end

  fin = Time.now

  if @report
    @reports[file] = @report
    @report = nil
  else
    @reports[file] = SimpleReport.new(start, fin)
  end

  @order << file
end

#running(label, sec) ⇒ Object



65
66
67
68
# File 'lib/benchmark/suite.rb', line 65

def running(label, sec)
  return unless @verbose
  STDOUT.puts " running: #{sec}s..."
end

#warming(label, sec) ⇒ Object



55
56
57
58
# File 'lib/benchmark/suite.rb', line 55

def warming(label, sec)
  return unless @verbose
  STDOUT.print "#{label.rjust(20)} warmup: #{sec}s"
end

#warmup_stats(time, cycles) ⇒ Object



60
61
62
63
# File 'lib/benchmark/suite.rb', line 60

def warmup_stats(time, cycles)
  return unless @verbose
  STDOUT.print " time=#{time}us, cycles=#{cycles}."
end