Sha256: f03448fbb104b85bf66e6d8c90b9ab031b96461f2efe4ca095da1c664dfa8ae7

Contents?: true

Size: 1.63 KB

Versions: 14

Compression:

Stored size: 1.63 KB

Contents

require 'benchmark'
module Puppet::Rails::Benchmark
  $benchmarks = {:accumulated => {}}

  def time_debug?
    Puppet::Rails::TIME_DEBUG
  end

  def railsmark(message)
    result = nil
    seconds = Benchmark.realtime { result = yield }
    Puppet.debug(message + " in %0.2f seconds" % seconds)

    $benchmarks[message] = seconds if time_debug?
    result
  end

  def debug_benchmark(message)
    return yield unless Puppet::Rails::TIME_DEBUG

    railsmark(message) { yield }
  end

  # Collect partial benchmarks to be logged when they're
  # all done.
  #   These are always low-level debugging so we only
  # print them if time_debug is enabled.
  def accumulate_benchmark(message, label)
    return yield unless time_debug?

    $benchmarks[:accumulated][message] ||= Hash.new(0)
    $benchmarks[:accumulated][message][label] += Benchmark.realtime { yield }
  end

  # Log the accumulated marks.
  def log_accumulated_marks(message)
    return unless time_debug?

    return if $benchmarks[:accumulated].empty? or $benchmarks[:accumulated][message].nil? or $benchmarks[:accumulated][message].empty?

    $benchmarks[:accumulated][message].each do |label, value|
      Puppet.debug(message + ("(#{label})") + (" in %0.2f seconds" % value))
    end
  end

  def write_benchmarks
    return unless time_debug?

    branch = %x{git branch}.split("\n").find { |l| l =~ /^\*/ }.sub("* ", '')

    file = "/tmp/time_debugging.yaml"

    require 'yaml'

    if FileTest.exist?(file)
      data = YAML.load_file(file)
    else
      data = {}
    end
    data[branch] = $benchmarks
    Puppet::Util.replace_file(file, 0644) { |f| f.print YAML.dump(data) }
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
puppet-2.6.18 lib/puppet/rails/benchmark.rb
librarian-puppet-0.9.4 vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/benchmark.rb
librarian-puppet-0.9.3 vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/benchmark.rb
puppet-2.7.18 lib/puppet/rails/benchmark.rb
puppet-2.6.17 lib/puppet/rails/benchmark.rb
puppet-2.7.17 lib/puppet/rails/benchmark.rb
puppet-2.7.16 lib/puppet/rails/benchmark.rb
puppet-2.7.14 lib/puppet/rails/benchmark.rb
puppet-2.6.16 lib/puppet/rails/benchmark.rb
puppet-2.7.13 lib/puppet/rails/benchmark.rb
puppet-2.6.15 lib/puppet/rails/benchmark.rb
puppet-2.7.12 lib/puppet/rails/benchmark.rb
puppet-2.7.11 lib/puppet/rails/benchmark.rb
puppet-2.6.14 lib/puppet/rails/benchmark.rb