Created
April 22, 2009 08:29
-
-
Save jeremy/99663 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Run from toplevel rails checkout to profile a component's requires: | |
# $ ./profile_requires.rb active_support | |
GC.enable_stats | |
require 'rubygems' | |
require 'benchmark' | |
ENV['NO_RELOAD'] ||= '1' | |
ENV['RAILS_ENV'] ||= 'development' | |
module TrackHeapGrowth | |
class << self | |
attr_accessor :indent | |
attr_accessor :stats | |
end | |
self.indent = 0 | |
self.stats = [] | |
def track_growth(file) | |
TrackHeapGrowth.indent += 1 | |
heap_before, objects_before = GC.allocated_size, ObjectSpace.allocated_objects | |
result = nil | |
elapsed = Benchmark.realtime { result = yield } | |
heap_after, objects_after = GC.allocated_size, ObjectSpace.allocated_objects | |
TrackHeapGrowth.indent -= 1 | |
TrackHeapGrowth.stats << [file, TrackHeapGrowth.indent, elapsed, heap_after - heap_before, objects_after - objects_before] if result | |
result | |
end | |
def require(file, *args) | |
track_growth(file) { super } | |
end | |
def load(file, *args) | |
track_growth(file) { super } | |
end | |
end | |
Object.instance_eval { include TrackHeapGrowth } | |
GC.start | |
before = GC.allocated_size | |
before_rss = `ps -o rss= -p #{Process.pid}`.to_i | |
before_live_objects = ObjectSpace.live_objects | |
framework = ARGV.shift | |
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/#{framework.gsub('_', '')}/lib" | |
if mode = ARGV.shift | |
require 'ruby-prof' | |
RubyProf.measure_mode = RubyProf.const_get(mode.upcase) | |
RubyProf.start | |
end | |
elapsed = Benchmark.realtime { require framework } | |
results = RubyProf.stop if mode | |
GC.start | |
after_live_objects = ObjectSpace.live_objects | |
after_rss = `ps -o rss= -p #{Process.pid}`.to_i | |
after = GC.allocated_size | |
usage = (after - before) / 1024.0 | |
if mode | |
File.open("profile_startup.#{mode}.tree", 'w') do |out| | |
RubyProf::CallTreePrinter.new(results).print(out) | |
end | |
end | |
TrackHeapGrowth.stats.reverse_each do |file, indent, sec, bytes, objects| | |
puts "%10.2f KB %10d obj %8.1f ms %s%s" % [bytes / 1024.0, objects, sec * 1000, ' ' * indent, file] | |
end | |
puts "%10.2f KB %10d obj %8.1f ms %d KB RSS" % [usage, after_live_objects - before_live_objects, elapsed * 1000, after_rss - before_rss] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment