ruby-prof 1.4.4-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES +608 -0
- data/LICENSE +25 -0
- data/README.md +5 -0
- data/Rakefile +98 -0
- data/bin/ruby-prof +328 -0
- data/bin/ruby-prof-check-trace +45 -0
- data/ext/ruby_prof/extconf.rb +22 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.c +59 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
- data/ext/ruby_prof/rp_allocation.c +287 -0
- data/ext/ruby_prof/rp_allocation.h +31 -0
- data/ext/ruby_prof/rp_call_tree.c +367 -0
- data/ext/ruby_prof/rp_call_tree.h +43 -0
- data/ext/ruby_prof/rp_call_trees.c +288 -0
- data/ext/ruby_prof/rp_call_trees.h +28 -0
- data/ext/ruby_prof/rp_measure_allocations.c +47 -0
- data/ext/ruby_prof/rp_measure_memory.c +46 -0
- data/ext/ruby_prof/rp_measure_process_time.c +66 -0
- data/ext/ruby_prof/rp_measure_wall_time.c +64 -0
- data/ext/ruby_prof/rp_measurement.c +237 -0
- data/ext/ruby_prof/rp_measurement.h +50 -0
- data/ext/ruby_prof/rp_method.c +491 -0
- data/ext/ruby_prof/rp_method.h +62 -0
- data/ext/ruby_prof/rp_profile.c +915 -0
- data/ext/ruby_prof/rp_profile.h +35 -0
- data/ext/ruby_prof/rp_stack.c +212 -0
- data/ext/ruby_prof/rp_stack.h +53 -0
- data/ext/ruby_prof/rp_thread.c +362 -0
- data/ext/ruby_prof/rp_thread.h +39 -0
- data/ext/ruby_prof/ruby_prof.c +52 -0
- data/ext/ruby_prof/ruby_prof.h +26 -0
- data/ext/ruby_prof/vc/ruby_prof.sln +39 -0
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +160 -0
- data/lib/3.1/ruby_prof.so +0 -0
- data/lib/ruby-prof/assets/call_stack_printer.html.erb +711 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
- data/lib/ruby-prof/call_tree.rb +57 -0
- data/lib/ruby-prof/call_tree_visitor.rb +36 -0
- data/lib/ruby-prof/compatibility.rb +99 -0
- data/lib/ruby-prof/exclude_common_methods.rb +198 -0
- data/lib/ruby-prof/measurement.rb +17 -0
- data/lib/ruby-prof/method_info.rb +78 -0
- data/lib/ruby-prof/printers/abstract_printer.rb +137 -0
- data/lib/ruby-prof/printers/call_info_printer.rb +53 -0
- data/lib/ruby-prof/printers/call_stack_printer.rb +180 -0
- data/lib/ruby-prof/printers/call_tree_printer.rb +147 -0
- data/lib/ruby-prof/printers/dot_printer.rb +132 -0
- data/lib/ruby-prof/printers/flat_printer.rb +53 -0
- data/lib/ruby-prof/printers/graph_html_printer.rb +63 -0
- data/lib/ruby-prof/printers/graph_printer.rb +113 -0
- data/lib/ruby-prof/printers/multi_printer.rb +127 -0
- data/lib/ruby-prof/profile.rb +37 -0
- data/lib/ruby-prof/rack.rb +95 -0
- data/lib/ruby-prof/task.rb +147 -0
- data/lib/ruby-prof/thread.rb +20 -0
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/ruby-prof.rb +52 -0
- data/lib/unprof.rb +10 -0
- data/ruby-prof.gemspec +64 -0
- data/test/abstract_printer_test.rb +26 -0
- data/test/alias_test.rb +122 -0
- data/test/basic_test.rb +43 -0
- data/test/call_tree_visitor_test.rb +32 -0
- data/test/call_trees_test.rb +66 -0
- data/test/duplicate_names_test.rb +32 -0
- data/test/dynamic_method_test.rb +67 -0
- data/test/enumerable_test.rb +21 -0
- data/test/exceptions_test.rb +24 -0
- data/test/exclude_methods_test.rb +151 -0
- data/test/exclude_threads_test.rb +53 -0
- data/test/fiber_test.rb +129 -0
- data/test/gc_test.rb +100 -0
- data/test/inverse_call_tree_test.rb +175 -0
- data/test/line_number_test.rb +158 -0
- data/test/marshal_test.rb +145 -0
- data/test/measure_allocations.rb +26 -0
- data/test/measure_allocations_test.rb +333 -0
- data/test/measure_memory_test.rb +688 -0
- data/test/measure_process_time_test.rb +1614 -0
- data/test/measure_times.rb +56 -0
- data/test/measure_wall_time_test.rb +426 -0
- data/test/multi_printer_test.rb +71 -0
- data/test/no_method_class_test.rb +15 -0
- data/test/pause_resume_test.rb +175 -0
- data/test/prime.rb +54 -0
- data/test/prime_script.rb +6 -0
- data/test/printer_call_stack_test.rb +27 -0
- data/test/printer_call_tree_test.rb +30 -0
- data/test/printer_flat_test.rb +99 -0
- data/test/printer_graph_html_test.rb +59 -0
- data/test/printer_graph_test.rb +40 -0
- data/test/printers_test.rb +141 -0
- data/test/printing_recursive_graph_test.rb +81 -0
- data/test/profile_test.rb +16 -0
- data/test/rack_test.rb +93 -0
- data/test/recursive_test.rb +430 -0
- data/test/singleton_test.rb +38 -0
- data/test/stack_printer_test.rb +64 -0
- data/test/start_stop_test.rb +109 -0
- data/test/test_helper.rb +13 -0
- data/test/thread_test.rb +144 -0
- data/test/unique_call_path_test.rb +136 -0
- data/test/yarv_test.rb +60 -0
- metadata +187 -0
@@ -0,0 +1,147 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'fiber'
|
4
|
+
require 'thread'
|
5
|
+
require 'fileutils'
|
6
|
+
|
7
|
+
module RubyProf
|
8
|
+
# Generates profiling information in callgrind format for use by
|
9
|
+
# kcachegrind and similar tools.
|
10
|
+
|
11
|
+
class CallTreePrinter < AbstractPrinter
|
12
|
+
def calltree_name(method_info)
|
13
|
+
klass_path = method_info.klass_name.gsub("::", '/')
|
14
|
+
result = "#{klass_path}::#{method_info.method_name}"
|
15
|
+
|
16
|
+
case method_info.klass_flags
|
17
|
+
when 0x2
|
18
|
+
"#{result}^"
|
19
|
+
when 0x4
|
20
|
+
"#{result}^"
|
21
|
+
when 0x8
|
22
|
+
"#{result}*"
|
23
|
+
else
|
24
|
+
result
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def determine_event_specification_and_value_scale
|
29
|
+
@event_specification = "events: "
|
30
|
+
case RubyProf.measure_mode
|
31
|
+
when RubyProf::PROCESS_TIME
|
32
|
+
@value_scale = RubyProf::CLOCKS_PER_SEC
|
33
|
+
@event_specification << 'process_time'
|
34
|
+
when RubyProf::WALL_TIME
|
35
|
+
@value_scale = 1_000_000
|
36
|
+
@event_specification << 'wall_time'
|
37
|
+
when RubyProf.const_defined?(:ALLOCATIONS) && RubyProf::ALLOCATIONS
|
38
|
+
@value_scale = 1
|
39
|
+
@event_specification << 'allocations'
|
40
|
+
when RubyProf.const_defined?(:MEMORY) && RubyProf::MEMORY
|
41
|
+
@value_scale = 1
|
42
|
+
@event_specification << 'memory'
|
43
|
+
when RubyProf.const_defined?(:GC_RUNS) && RubyProf::GC_RUNS
|
44
|
+
@value_scale = 1
|
45
|
+
@event_specification << 'gc_runs'
|
46
|
+
when RubyProf.const_defined?(:GC_TIME) && RubyProf::GC_TIME
|
47
|
+
@value_scale = 1000000
|
48
|
+
@event_specification << 'gc_time'
|
49
|
+
else
|
50
|
+
raise "Unknown measure mode: #{RubyProf.measure_mode}"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def print(options = {})
|
55
|
+
validate_print_params(options)
|
56
|
+
setup_options(options)
|
57
|
+
determine_event_specification_and_value_scale
|
58
|
+
print_threads
|
59
|
+
end
|
60
|
+
|
61
|
+
def validate_print_params(options)
|
62
|
+
if options.is_a?(IO)
|
63
|
+
raise ArgumentError, "#{self.class.name}#print cannot print to IO objects"
|
64
|
+
elsif !options.is_a?(Hash)
|
65
|
+
raise ArgumentError, "#{self.class.name}#print requires an options hash"
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def print_threads
|
70
|
+
remove_subsidiary_files_from_previous_profile_runs
|
71
|
+
# TODO: merge fibers of a given thread here, instead of relying
|
72
|
+
# on the profiler to merge fibers.
|
73
|
+
@result.threads.each do |thread|
|
74
|
+
print_thread(thread)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def convert(value)
|
79
|
+
(value * @value_scale).round
|
80
|
+
end
|
81
|
+
|
82
|
+
def file(method)
|
83
|
+
method.source_file ? File.expand_path(method.source_file) : ''
|
84
|
+
end
|
85
|
+
|
86
|
+
def print_thread(thread)
|
87
|
+
File.open(file_path_for_thread(thread), "w") do |f|
|
88
|
+
print_headers(f, thread)
|
89
|
+
thread.methods.reverse_each do |method|
|
90
|
+
print_method(f, method)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def path
|
96
|
+
@options[:path] || "."
|
97
|
+
end
|
98
|
+
|
99
|
+
def self.needs_dir?
|
100
|
+
true
|
101
|
+
end
|
102
|
+
|
103
|
+
def remove_subsidiary_files_from_previous_profile_runs
|
104
|
+
pattern = ["callgrind.out", $$, "*"].join(".")
|
105
|
+
files = Dir.glob(File.join(path, pattern))
|
106
|
+
FileUtils.rm_f(files)
|
107
|
+
end
|
108
|
+
|
109
|
+
def file_name_for_thread(thread)
|
110
|
+
if thread.fiber_id == Fiber.current.object_id
|
111
|
+
["callgrind.out", $$].join(".")
|
112
|
+
else
|
113
|
+
["callgrind.out", $$, thread.fiber_id].join(".")
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
def file_path_for_thread(thread)
|
118
|
+
File.join(path, file_name_for_thread(thread))
|
119
|
+
end
|
120
|
+
|
121
|
+
def print_headers(output, thread)
|
122
|
+
output << "#{@event_specification}\n\n"
|
123
|
+
# this doesn't work. kcachegrind does not fully support the spec.
|
124
|
+
# output << "thread: #{thread.id}\n\n"
|
125
|
+
end
|
126
|
+
|
127
|
+
def print_method(output, method)
|
128
|
+
# Print out the file and method name
|
129
|
+
output << "fl=#{file(method)}\n"
|
130
|
+
output << "fn=#{self.calltree_name(method)}\n"
|
131
|
+
|
132
|
+
# Now print out the function line number and its self time
|
133
|
+
output << "#{method.line} #{convert(method.self_time)}\n"
|
134
|
+
|
135
|
+
# Now print out all the children methods
|
136
|
+
method.call_trees.callees.each do |callee|
|
137
|
+
output << "cfl=#{file(callee.target)}\n"
|
138
|
+
output << "cfn=#{self.calltree_name(callee.target)}\n"
|
139
|
+
output << "calls=#{callee.called} #{callee.line}\n"
|
140
|
+
|
141
|
+
# Print out total times here!
|
142
|
+
output << "#{callee.line} #{convert(callee.total_time)}\n"
|
143
|
+
end
|
144
|
+
output << "\n"
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
@@ -0,0 +1,132 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'set'
|
4
|
+
|
5
|
+
module RubyProf
|
6
|
+
# Generates a graphviz graph in dot format.
|
7
|
+
#
|
8
|
+
# To use the dot printer:
|
9
|
+
#
|
10
|
+
# result = RubyProf.profile do
|
11
|
+
# [code to profile]
|
12
|
+
# end
|
13
|
+
#
|
14
|
+
# printer = RubyProf::DotPrinter.new(result)
|
15
|
+
# printer.print(STDOUT)
|
16
|
+
#
|
17
|
+
# You can use either dot viewer such as GraphViz, or the dot command line tool
|
18
|
+
# to reformat the output into a wide variety of outputs:
|
19
|
+
#
|
20
|
+
# dot -Tpng graph.dot > graph.png
|
21
|
+
#
|
22
|
+
class DotPrinter < RubyProf::AbstractPrinter
|
23
|
+
CLASS_COLOR = '"#666666"'
|
24
|
+
EDGE_COLOR = '"#666666"'
|
25
|
+
|
26
|
+
# Creates the DotPrinter using a RubyProf::Proile.
|
27
|
+
def initialize(result)
|
28
|
+
super(result)
|
29
|
+
@seen_methods = Set.new
|
30
|
+
end
|
31
|
+
|
32
|
+
# Print a graph report to the provided output.
|
33
|
+
#
|
34
|
+
# output - Any IO object, including STDOUT or a file. The default value is
|
35
|
+
# STDOUT.
|
36
|
+
#
|
37
|
+
# options - Hash of print options. See #setup_options
|
38
|
+
# for more information.
|
39
|
+
#
|
40
|
+
# When profiling results that cover a large number of method calls it
|
41
|
+
# helps to use the :min_percent option, for example:
|
42
|
+
#
|
43
|
+
# DotPrinter.new(result).print(STDOUT, :min_percent=>5)
|
44
|
+
#
|
45
|
+
def print(output = STDOUT, options = {})
|
46
|
+
@output = output
|
47
|
+
setup_options(options)
|
48
|
+
|
49
|
+
puts 'digraph "Profile" {'
|
50
|
+
#puts "label=\"#{mode_name} >=#{min_percent}%\\nTotal: #{total_time}\";"
|
51
|
+
puts "labelloc=t;"
|
52
|
+
puts "labeljust=l;"
|
53
|
+
print_threads
|
54
|
+
puts '}'
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
|
59
|
+
# Something of a hack, figure out which constant went with the
|
60
|
+
# RubyProf.measure_mode so that we can display it. Otherwise it's easy to
|
61
|
+
# forget what measurement was made.
|
62
|
+
def mode_name
|
63
|
+
RubyProf.constants.find{|c| RubyProf.const_get(c) == RubyProf.measure_mode}
|
64
|
+
end
|
65
|
+
|
66
|
+
def print_threads
|
67
|
+
@result.threads.each do |thread|
|
68
|
+
puts "subgraph \"Thread #{thread.id}\" {"
|
69
|
+
|
70
|
+
print_thread(thread)
|
71
|
+
puts "}"
|
72
|
+
|
73
|
+
print_classes(thread)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# Determines an ID to use to represent the subject in the Dot file.
|
78
|
+
def dot_id(subject)
|
79
|
+
subject.object_id
|
80
|
+
end
|
81
|
+
|
82
|
+
def print_thread(thread)
|
83
|
+
total_time = thread.total_time
|
84
|
+
thread.methods.sort_by(&sort_method).reverse_each do |method|
|
85
|
+
total_percentage = (method.total_time/total_time) * 100
|
86
|
+
|
87
|
+
next if total_percentage < min_percent
|
88
|
+
name = method.full_name.split("#").last
|
89
|
+
puts "#{dot_id(method)} [label=\"#{name}\\n(#{total_percentage.round}%)\"];"
|
90
|
+
@seen_methods << method
|
91
|
+
print_edges(total_time, method)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def print_classes(thread)
|
96
|
+
grouped = {}
|
97
|
+
thread.methods.each{|m| grouped[m.klass_name] ||= []; grouped[m.klass_name] << m}
|
98
|
+
grouped.each do |cls, methods2|
|
99
|
+
# Filter down to just seen methods
|
100
|
+
big_methods = methods2.select{|m| @seen_methods.include? m}
|
101
|
+
|
102
|
+
if !big_methods.empty?
|
103
|
+
puts "subgraph cluster_#{cls.object_id} {"
|
104
|
+
puts "label = \"#{cls}\";"
|
105
|
+
puts "fontcolor = #{CLASS_COLOR};"
|
106
|
+
puts "fontsize = 16;"
|
107
|
+
puts "color = #{CLASS_COLOR};"
|
108
|
+
big_methods.each do |m|
|
109
|
+
puts "#{m.object_id};"
|
110
|
+
end
|
111
|
+
puts "}"
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def print_edges(total_time, method)
|
117
|
+
method.call_trees.callers.sort_by(&:total_time).reverse.each do |call_tree|
|
118
|
+
target_percentage = (call_tree.target.total_time / total_time) * 100.0
|
119
|
+
next if target_percentage < min_percent
|
120
|
+
|
121
|
+
# Get children method
|
122
|
+
puts "#{dot_id(method)} -> #{dot_id(call_tree.target)} [label=\"#{call_tree.called}/#{call_tree.target.called}\" fontsize=10 fontcolor=#{EDGE_COLOR}];"
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# Silly little helper for printing to the @output
|
127
|
+
def puts(str)
|
128
|
+
@output.puts(str)
|
129
|
+
end
|
130
|
+
|
131
|
+
end
|
132
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module RubyProf
|
4
|
+
# Generates flat[link:files/examples/flat_txt.html] profile reports as text.
|
5
|
+
# To use the flat printer:
|
6
|
+
#
|
7
|
+
# result = RubyProf.profile do
|
8
|
+
# [code to profile]
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
# printer = RubyProf::FlatPrinter.new(result)
|
12
|
+
# printer.print(STDOUT, {})
|
13
|
+
#
|
14
|
+
class FlatPrinter < AbstractPrinter
|
15
|
+
# Override for this printer to sort by self time by default
|
16
|
+
def sort_method
|
17
|
+
@options[:sort_method] || :self_time
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
def print_column_headers
|
23
|
+
@output << " %self total self wait child calls name location\n"
|
24
|
+
end
|
25
|
+
|
26
|
+
def print_methods(thread)
|
27
|
+
total_time = thread.total_time
|
28
|
+
methods = thread.methods.sort_by(&sort_method).reverse
|
29
|
+
|
30
|
+
sum = 0
|
31
|
+
methods.each do |method|
|
32
|
+
percent = (method.send(filter_by) / total_time) * 100
|
33
|
+
next if percent < min_percent
|
34
|
+
next if percent > max_percent
|
35
|
+
|
36
|
+
sum += method.self_time
|
37
|
+
#self_time_called = method.called > 0 ? method.self_time/method.called : 0
|
38
|
+
#total_time_called = method.called > 0? method.total_time/method.called : 0
|
39
|
+
|
40
|
+
@output << "%6.2f %9.3f %9.3f %9.3f %9.3f %8d %s%-30s %s\n" % [
|
41
|
+
method.self_time / total_time * 100, # %self
|
42
|
+
method.total_time, # total
|
43
|
+
method.self_time, # self
|
44
|
+
method.wait_time, # wait
|
45
|
+
method.children_time, # children
|
46
|
+
method.called, # calls
|
47
|
+
method.recursive? ? "*" : " ", # cycle
|
48
|
+
method.full_name, # method_name]
|
49
|
+
method_location(method)] # location]
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'erb'
|
4
|
+
|
5
|
+
module RubyProf
|
6
|
+
# Generates graph[link:files/examples/graph_html.html] profile reports as html.
|
7
|
+
# To use the graph html printer:
|
8
|
+
#
|
9
|
+
# result = RubyProf.profile do
|
10
|
+
# [code to profile]
|
11
|
+
# end
|
12
|
+
#
|
13
|
+
# printer = RubyProf::GraphHtmlPrinter.new(result)
|
14
|
+
# printer.print(STDOUT, :min_percent=>0)
|
15
|
+
#
|
16
|
+
# The Graph printer takes the following options in its print methods:
|
17
|
+
|
18
|
+
class GraphHtmlPrinter < AbstractPrinter
|
19
|
+
include ERB::Util
|
20
|
+
|
21
|
+
def setup_options(options)
|
22
|
+
super(options)
|
23
|
+
@erb = ERB.new(self.template)
|
24
|
+
end
|
25
|
+
|
26
|
+
def print(output = STDOUT, options = {})
|
27
|
+
setup_options(options)
|
28
|
+
output << @erb.result(binding)
|
29
|
+
end
|
30
|
+
|
31
|
+
# Creates a link to a method. Note that we do not create
|
32
|
+
# links to methods which are under the min_percent
|
33
|
+
# specified by the user, since they will not be
|
34
|
+
# printed out.
|
35
|
+
def create_link(thread, overall_time, method)
|
36
|
+
total_percent = (method.total_time/overall_time) * 100
|
37
|
+
if total_percent < min_percent
|
38
|
+
# Just return name
|
39
|
+
h method.full_name
|
40
|
+
else
|
41
|
+
href = '#' + method_href(thread, method)
|
42
|
+
"<a href=\"#{href}\">#{h method.full_name}</a>"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def method_href(thread, method)
|
47
|
+
h(method.full_name.gsub(/[><#\.\?=:]/,"_") + "_" + thread.fiber_id.to_s)
|
48
|
+
end
|
49
|
+
|
50
|
+
def file_link(path, linenum)
|
51
|
+
if path.nil?
|
52
|
+
""
|
53
|
+
else
|
54
|
+
srcfile = File.expand_path(path)
|
55
|
+
"<a href=\"file://#{h srcfile}##{linenum}\" title=\"#{h srcfile}:#{linenum}\">#{linenum}</a>"
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def template
|
60
|
+
open_asset('graph_printer.html.erb')
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,113 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module RubyProf
|
4
|
+
# Generates graph[link:files/examples/graph_txt.html] profile reports as text.
|
5
|
+
# To use the graph printer:
|
6
|
+
#
|
7
|
+
# result = RubyProf.profile do
|
8
|
+
# [code to profile]
|
9
|
+
# end
|
10
|
+
#
|
11
|
+
# printer = RubyProf::GraphPrinter.new(result)
|
12
|
+
# printer.print(STDOUT, {})
|
13
|
+
#
|
14
|
+
# The constructor takes two arguments. See the README
|
15
|
+
|
16
|
+
class GraphPrinter < AbstractPrinter
|
17
|
+
PERCENTAGE_WIDTH = 8
|
18
|
+
TIME_WIDTH = 11
|
19
|
+
CALL_WIDTH = 17
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def sort_method
|
24
|
+
@options[:sort_method] || :total_time
|
25
|
+
end
|
26
|
+
|
27
|
+
def print_header(thread)
|
28
|
+
@output << "Measure Mode: %s\n" % @result.measure_mode_string
|
29
|
+
@output << "Thread ID: #{thread.id}\n"
|
30
|
+
@output << "Fiber ID: #{thread.fiber_id}\n"
|
31
|
+
@output << "Total Time: #{thread.total_time}\n"
|
32
|
+
@output << "Sort by: #{sort_method}\n"
|
33
|
+
@output << "\n"
|
34
|
+
|
35
|
+
# 1 is for % sign
|
36
|
+
@output << sprintf("%#{PERCENTAGE_WIDTH}s", "%total")
|
37
|
+
@output << sprintf("%#{PERCENTAGE_WIDTH}s", "%self")
|
38
|
+
@output << sprintf("%#{TIME_WIDTH}s", "total")
|
39
|
+
@output << sprintf("%#{TIME_WIDTH}s", "self")
|
40
|
+
@output << sprintf("%#{TIME_WIDTH}s", "wait")
|
41
|
+
@output << sprintf("%#{TIME_WIDTH}s", "child")
|
42
|
+
@output << sprintf("%#{CALL_WIDTH}s", "calls")
|
43
|
+
@output << " name"
|
44
|
+
@output << " location"
|
45
|
+
@output << "\n"
|
46
|
+
end
|
47
|
+
|
48
|
+
def print_methods(thread)
|
49
|
+
total_time = thread.total_time
|
50
|
+
# Sort methods from longest to shortest total time
|
51
|
+
methods = thread.methods.sort_by(&sort_method)
|
52
|
+
|
53
|
+
# Print each method in total time order
|
54
|
+
methods.reverse_each do |method|
|
55
|
+
total_percentage = (method.total_time/total_time) * 100
|
56
|
+
next if total_percentage < min_percent
|
57
|
+
|
58
|
+
self_percentage = (method.self_time/total_time) * 100
|
59
|
+
|
60
|
+
@output << "-" * 150 << "\n"
|
61
|
+
print_parents(thread, method)
|
62
|
+
|
63
|
+
# 1 is for % sign
|
64
|
+
@output << sprintf("%#{PERCENTAGE_WIDTH-1}.2f%%", total_percentage)
|
65
|
+
@output << sprintf("%#{PERCENTAGE_WIDTH-1}.2f%%", self_percentage)
|
66
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", method.total_time)
|
67
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", method.self_time)
|
68
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", method.wait_time)
|
69
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", method.children_time)
|
70
|
+
@output << sprintf("%#{CALL_WIDTH}i", method.called)
|
71
|
+
@output << sprintf(" %s", method.recursive? ? "*" : " ")
|
72
|
+
@output << sprintf("%-30s", method.full_name)
|
73
|
+
@output << sprintf(" %s", method_location(method))
|
74
|
+
@output << "\n"
|
75
|
+
|
76
|
+
print_children(method)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def print_parents(thread, method)
|
81
|
+
method.call_trees.callers.sort_by(&:total_time).each do |caller|
|
82
|
+
@output << " " * 2 * PERCENTAGE_WIDTH
|
83
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", caller.total_time)
|
84
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", caller.self_time)
|
85
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", caller.wait_time)
|
86
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", caller.children_time)
|
87
|
+
|
88
|
+
call_called = "#{caller.called}/#{method.called}"
|
89
|
+
@output << sprintf("%#{CALL_WIDTH}s", call_called)
|
90
|
+
@output << sprintf(" %s", caller.parent.target.full_name)
|
91
|
+
@output << "\n"
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
def print_children(method)
|
96
|
+
method.call_trees.callees.sort_by(&:total_time).reverse.each do |child|
|
97
|
+
# Get children method
|
98
|
+
|
99
|
+
@output << " " * 2 * PERCENTAGE_WIDTH
|
100
|
+
|
101
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", child.total_time)
|
102
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", child.self_time)
|
103
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", child.wait_time)
|
104
|
+
@output << sprintf("%#{TIME_WIDTH}.3f", child.children_time)
|
105
|
+
|
106
|
+
call_called = "#{child.called}/#{child.target.called}"
|
107
|
+
@output << sprintf("%#{CALL_WIDTH}s", call_called)
|
108
|
+
@output << sprintf(" %s", child.target.full_name)
|
109
|
+
@output << "\n"
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
@@ -0,0 +1,127 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module RubyProf
|
4
|
+
# Helper class to simplify printing profiles of several types from
|
5
|
+
# one profiling run. Currently prints a flat profile, a callgrind
|
6
|
+
# profile, a call stack profile and a graph profile.
|
7
|
+
class MultiPrinter
|
8
|
+
def initialize(result, printers = [:flat, :graph_html])
|
9
|
+
@flat_printer = FlatPrinter.new(result) if printers.include?(:flat)
|
10
|
+
|
11
|
+
@graph_printer = GraphPrinter.new(result) if printers.include?(:graph)
|
12
|
+
@graph_html_printer = GraphHtmlPrinter.new(result) if printers.include?(:graph_html)
|
13
|
+
|
14
|
+
@tree_printer = CallTreePrinter.new(result) if printers.include?(:tree)
|
15
|
+
@call_info_printer = CallInfoPrinter.new(result) if printers.include?(:call_tree)
|
16
|
+
|
17
|
+
@stack_printer = CallStackPrinter.new(result) if printers.include?(:stack)
|
18
|
+
@dot_printer = DotPrinter.new(result) if printers.include?(:dot)
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.needs_dir?
|
22
|
+
true
|
23
|
+
end
|
24
|
+
|
25
|
+
# create profile files under options[:path] or the current
|
26
|
+
# directory. options[:profile] is used as the base name for the
|
27
|
+
# profile file, defaults to "profile".
|
28
|
+
def print(options)
|
29
|
+
validate_print_params(options)
|
30
|
+
|
31
|
+
@profile = options.delete(:profile) || "profile"
|
32
|
+
@directory = options.delete(:path) || File.expand_path(".")
|
33
|
+
|
34
|
+
print_to_flat(options) if @flat_printer
|
35
|
+
|
36
|
+
print_to_graph(options) if @graph_printer
|
37
|
+
print_to_graph_html(options) if @graph_html_printer
|
38
|
+
|
39
|
+
print_to_stack(options) if @stack_printer
|
40
|
+
print_to_call_info(options) if @call_info_printer
|
41
|
+
print_to_tree(options) if @tree_printer
|
42
|
+
print_to_dot(options) if @dot_printer
|
43
|
+
end
|
44
|
+
|
45
|
+
# the name of the flat profile file
|
46
|
+
def flat_report
|
47
|
+
"#{@directory}/#{@profile}.flat.txt"
|
48
|
+
end
|
49
|
+
|
50
|
+
# the name of the graph profile file
|
51
|
+
def graph_report
|
52
|
+
"#{@directory}/#{@profile}.graph.txt"
|
53
|
+
end
|
54
|
+
|
55
|
+
def graph_html_report
|
56
|
+
"#{@directory}/#{@profile}.graph.html"
|
57
|
+
end
|
58
|
+
|
59
|
+
# the name of the callinfo profile file
|
60
|
+
def call_info_report
|
61
|
+
"#{@directory}/#{@profile}.call_tree.txt"
|
62
|
+
end
|
63
|
+
|
64
|
+
# the name of the callgrind profile file
|
65
|
+
def tree_report
|
66
|
+
"#{@directory}/#{@profile}.callgrind.out.#{$$}"
|
67
|
+
end
|
68
|
+
|
69
|
+
# the name of the call stack profile file
|
70
|
+
def stack_report
|
71
|
+
"#{@directory}/#{@profile}.stack.html"
|
72
|
+
end
|
73
|
+
|
74
|
+
# the name of the call stack profile file
|
75
|
+
def dot_report
|
76
|
+
"#{@directory}/#{@profile}.dot"
|
77
|
+
end
|
78
|
+
|
79
|
+
def print_to_flat(options)
|
80
|
+
File.open(flat_report, "wb") do |file|
|
81
|
+
@flat_printer.print(file, options)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def print_to_graph(options)
|
86
|
+
File.open(graph_report, "wb") do |file|
|
87
|
+
@graph_printer.print(file, options)
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def print_to_graph_html(options)
|
92
|
+
File.open(graph_html_report, "wb") do |file|
|
93
|
+
@graph_html_printer.print(file, options)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
def print_to_call_info(options)
|
98
|
+
File.open(call_info_report, "wb") do |file|
|
99
|
+
@call_info_printer.print(file, options)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def print_to_tree(options)
|
104
|
+
@tree_printer.print(options.merge(:path => @directory, :profile => @profile))
|
105
|
+
end
|
106
|
+
|
107
|
+
def print_to_stack(options)
|
108
|
+
File.open(stack_report, "wb") do |file|
|
109
|
+
@stack_printer.print(file, options.merge(:graph => "#{@profile}.graph.html"))
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
def print_to_dot(options)
|
114
|
+
File.open(dot_report, "wb") do |file|
|
115
|
+
@dot_printer.print(file, options)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def validate_print_params(options)
|
120
|
+
if options.is_a?(IO)
|
121
|
+
raise ArgumentError, "#{self.class.name}#print cannot print to IO objects"
|
122
|
+
elsif !options.is_a?(Hash)
|
123
|
+
raise ArgumentError, "#{self.class.name}#print requires an options hash"
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'ruby-prof/exclude_common_methods'
|
4
|
+
|
5
|
+
module RubyProf
|
6
|
+
class Profile
|
7
|
+
# :nodoc:
|
8
|
+
def measure_mode_string
|
9
|
+
case self.measure_mode
|
10
|
+
when WALL_TIME
|
11
|
+
"wall_time"
|
12
|
+
when PROCESS_TIME
|
13
|
+
"process_time"
|
14
|
+
when ALLOCATIONS
|
15
|
+
"allocations"
|
16
|
+
when MEMORY
|
17
|
+
"memory"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# Hides methods that, when represented as a call graph, have
|
22
|
+
# extremely large in and out degrees and make navigation impossible.
|
23
|
+
def exclude_common_methods!
|
24
|
+
ExcludeCommonMethods.apply!(self)
|
25
|
+
end
|
26
|
+
|
27
|
+
def exclude_methods!(mod, *method_or_methods)
|
28
|
+
[method_or_methods].flatten.each do |name|
|
29
|
+
exclude_method!(mod, name)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def exclude_singleton_methods!(mod, *method_or_methods)
|
34
|
+
exclude_methods!(mod.singleton_class, *method_or_methods)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|