rails--rails/tools/profile

72 lines
1.8 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
# Example:
# tools/profile activesupport/lib/active_support.rb
2009-05-21 17:03:32 +00:00
ENV['NO_RELOAD'] ||= '1'
ENV['RAILS_ENV'] ||= 'development'
require 'benchmark'
2009-05-21 17:03:32 +00:00
module RequireProfiler
private
2009-05-21 17:03:32 +00:00
def require(file, *args) RequireProfiler.profile(file) { super } end
def load(file, *args) RequireProfiler.profile(file) { super } end
@depth, @stats = 0, []
class << self
2009-05-21 17:03:32 +00:00
attr_accessor :depth
attr_accessor :stats
2009-05-21 17:03:32 +00:00
def profile(file)
stats << [file, depth]
self.depth += 1
result = nil
elapsed = Benchmark.realtime { result = yield }
self.depth -= 1
stats.pop if stats.last.first == file
stats << [file, depth, elapsed] if result
2009-05-21 17:03:32 +00:00
result
end
end
end
GC.start
before_rss = `ps -o rss= -p #{Process.pid}`.to_i
path = ARGV.shift
if mode = ARGV.shift
require 'ruby-prof'
RubyProf.measure_mode = RubyProf.const_get(mode.upcase)
RubyProf.start
2009-05-21 17:03:32 +00:00
else
Object.instance_eval { include RequireProfiler }
end
elapsed = Benchmark.realtime { require path }
results = RubyProf.stop if mode
GC.start
after_rss = `ps -o rss= -p #{Process.pid}`.to_i
if mode
2010-06-24 08:08:12 +00:00
if printer = ARGV.shift
RubyProf.const_get("#{printer.to_s.classify}Printer").new(results).print($stdout)
elsif RubyProf.const_defined?(:CallStackPrinter)
2010-04-04 18:56:49 +00:00
File.open("#{File.basename(path, '.rb')}.#{mode}.html", 'w') do |out|
RubyProf::CallStackPrinter.new(results).print(out)
end
else
File.open("#{File.basename(path, '.rb')}.#{mode}.callgrind", 'w') do |out|
RubyProf::CallTreePrinter.new(results).print(out)
end
end
end
RequireProfiler.stats.each do |file, depth, sec|
2009-05-13 00:55:45 +00:00
if sec
puts "%8.1f ms %s%s" % [sec * 1000, ' ' * depth, file]
2009-05-13 00:55:45 +00:00
else
puts "#{' ' * (13 + depth)}#{file}"
2009-05-13 00:55:45 +00:00
end
end
puts "%8.1f ms %d KB RSS" % [elapsed * 1000, after_rss - before_rss]