mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Encapsulate tools/profile functionality in CodeTools::Profiler
Fix bug in path expansion of input filepath [ci skip]
This commit is contained in:
parent
65a227beda
commit
f36c46754f
1 changed files with 81 additions and 57 deletions
102
tools/profile
102
tools/profile
|
@ -1,10 +1,64 @@
|
|||
#!/usr/bin/env ruby
|
||||
# Example:
|
||||
# ./profile ../activesupport/lib/active_support.rb [ruby-prof mode]
|
||||
# tools/profile activesupport/lib/active_support.rb [ruby-prof mode] [ruby-prof printer]
|
||||
ENV['NO_RELOAD'] ||= '1'
|
||||
ENV['RAILS_ENV'] ||= 'development'
|
||||
|
||||
module CodeTools
|
||||
class Profiler
|
||||
|
||||
attr_reader :path, :mode
|
||||
def initialize(path, mode=nil)
|
||||
@path, @mode = path, mode
|
||||
require 'benchmark'
|
||||
end
|
||||
|
||||
def profile_requires
|
||||
GC.start
|
||||
before_rss = `ps -o rss= -p #{Process.pid}`.to_i
|
||||
|
||||
if mode
|
||||
require 'ruby-prof'
|
||||
RubyProf.measure_mode = RubyProf.const_get(mode.upcase)
|
||||
RubyProf.start
|
||||
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
|
||||
if printer = ARGV.shift
|
||||
puts "RubyProf outputting to stderr with printer #{printer}"
|
||||
RubyProf.const_get("#{printer.to_s.classify}Printer").new(results).print($stdout)
|
||||
elsif RubyProf.const_defined?(:CallStackPrinter)
|
||||
filename = "#{File.basename(path, '.rb')}.#{mode}.html"
|
||||
puts "RubyProf outputting to #{filename}"
|
||||
File.open(filename, 'w') do |out|
|
||||
RubyProf::CallStackPrinter.new(results).print(out)
|
||||
end
|
||||
else
|
||||
filename = "#{File.basename(path, '.rb')}.#{mode}.callgrind"
|
||||
puts "RubyProf outputting to #{filename}"
|
||||
File.open(filename, 'w') do |out|
|
||||
RubyProf::CallTreePrinter.new(results).print(out)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
RequireProfiler.stats.each do |file, depth, sec|
|
||||
if sec
|
||||
puts "%8.1f ms %s%s" % [sec * 1000, ' ' * depth, file]
|
||||
else
|
||||
puts "#{' ' * (13 + depth)}#{file}"
|
||||
end
|
||||
end
|
||||
puts "%8.1f ms %d KB RSS" % [elapsed * 1000, after_rss - before_rss]
|
||||
end
|
||||
|
||||
module RequireProfiler
|
||||
private
|
||||
|
@ -28,44 +82,14 @@ module RequireProfiler
|
|||
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
|
||||
end
|
||||
end
|
||||
if $0 == __FILE__
|
||||
if (filename = ARGV.shift)
|
||||
path = File.expand_path(filename)
|
||||
mode = ARGV.shift
|
||||
CodeTools::Profiler.new(path, mode).profile_requires
|
||||
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
|
||||
if printer = ARGV.shift
|
||||
RubyProf.const_get("#{printer.to_s.classify}Printer").new(results).print($stdout)
|
||||
elsif RubyProf.const_defined?(:CallStackPrinter)
|
||||
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)
|
||||
STDERR.puts "No file path entered. Usage is tools/profile path/to/file.rb [ruby-prof mode] [ruby-prof printer]"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
RequireProfiler.stats.each do |file, depth, sec|
|
||||
if sec
|
||||
puts "%8.1f ms %s%s" % [sec * 1000, ' ' * depth, file]
|
||||
else
|
||||
puts "#{' ' * (13 + depth)}#{file}"
|
||||
end
|
||||
end
|
||||
puts "%8.1f ms %d KB RSS" % [elapsed * 1000, after_rss - before_rss]
|
||||
|
|
Loading…
Reference in a new issue