ruby-prof 0.8.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +23 -13
- data/{README → README.rdoc} +118 -111
- data/Rakefile +14 -26
- data/bin/ruby-prof +16 -4
- data/examples/empty.png +0 -0
- data/examples/graph.dot +106 -0
- data/examples/graph.png +0 -0
- data/examples/minus.png +0 -0
- data/examples/multi.flat.txt +23 -0
- data/examples/multi.graph.html +906 -0
- data/examples/multi.grind.dat +194 -0
- data/examples/multi.stack.html +573 -0
- data/examples/plus.png +0 -0
- data/examples/stack.html +573 -0
- data/ext/ruby_prof/extconf.rb +0 -1
- data/ext/ruby_prof/measure_allocations.h +6 -6
- data/ext/ruby_prof/measure_cpu_time.h +5 -5
- data/ext/ruby_prof/measure_gc_runs.h +1 -1
- data/ext/ruby_prof/measure_gc_time.h +1 -1
- data/ext/ruby_prof/measure_memory.h +4 -4
- data/ext/ruby_prof/measure_process_time.h +1 -1
- data/ext/ruby_prof/measure_wall_time.h +1 -1
- data/ext/ruby_prof/ruby_prof.c +240 -167
- data/ext/ruby_prof/ruby_prof.h +12 -10
- data/ext/ruby_prof/version.h +3 -3
- data/lib/ruby-prof.rb +7 -1
- data/lib/ruby-prof/abstract_printer.rb +5 -5
- data/lib/ruby-prof/aggregate_call_info.rb +9 -3
- data/lib/ruby-prof/call_info.rb +66 -1
- data/lib/ruby-prof/call_stack_printer.rb +751 -0
- data/lib/ruby-prof/call_tree_printer.rb +2 -2
- data/lib/ruby-prof/dot_printer.rb +151 -0
- data/lib/ruby-prof/empty.png +0 -0
- data/lib/ruby-prof/flat_printer.rb +16 -16
- data/lib/ruby-prof/flat_printer_with_line_numbers.rb +13 -13
- data/lib/ruby-prof/graph_html_printer.rb +58 -36
- data/lib/ruby-prof/graph_printer.rb +30 -30
- data/lib/ruby-prof/method_info.rb +24 -4
- data/lib/ruby-prof/minus.png +0 -0
- data/lib/ruby-prof/multi_printer.rb +54 -0
- data/lib/ruby-prof/plus.png +0 -0
- data/lib/ruby-prof/rack.rb +28 -0
- data/lib/ruby-prof/result.rb +70 -0
- data/lib/ruby-prof/symbol_to_proc.rb +1 -1
- data/lib/ruby-prof/task.rb +19 -19
- data/lib/ruby-prof/test.rb +3 -3
- data/lib/ruby_prof.so +0 -0
- data/rails/environment/profile.rb +2 -2
- data/rails/example/example_test.rb +2 -2
- data/rails/profile_test_helper.rb +1 -1
- data/test/aggregate_test.rb +21 -6
- data/test/basic_test.rb +3 -3
- data/test/duplicate_names_test.rb +2 -2
- data/test/enumerable_test.rb +2 -2
- data/test/exceptions_test.rb +2 -2
- data/test/exclude_threads_test.rb +45 -45
- data/test/exec_test.rb +2 -2
- data/test/line_number_test.rb +11 -11
- data/test/measurement_test.rb +4 -3
- data/test/method_elimination_test.rb +74 -0
- data/test/module_test.rb +7 -7
- data/test/multi_printer_test.rb +81 -0
- data/test/no_method_class_test.rb +2 -2
- data/test/prime.rb +7 -10
- data/test/printers_test.rb +57 -47
- data/test/recursive_test.rb +23 -62
- data/test/singleton_test.rb +3 -2
- data/test/stack_printer_test.rb +74 -0
- data/test/stack_test.rb +1 -1
- data/test/start_stop_test.rb +2 -2
- data/test/test_suite.rb +9 -0
- data/test/thread_test.rb +17 -17
- data/test/unique_call_path_test.rb +4 -4
- metadata +29 -8
data/ext/ruby_prof/ruby_prof.h
CHANGED
@@ -29,26 +29,24 @@
|
|
29
29
|
The main players are:
|
30
30
|
|
31
31
|
prof_result_t - Its one field, values, contains the overall results
|
32
|
-
thread_data_t - Stores data about a single thread.
|
32
|
+
thread_data_t - Stores data about a single thread.
|
33
33
|
prof_stack_t - The method call stack in a particular thread
|
34
34
|
prof_method_t - Profiling information for each method
|
35
|
-
prof_call_info_t - Keeps track a method's callers and callees.
|
35
|
+
prof_call_info_t - Keeps track a method's callers and callees.
|
36
36
|
|
37
37
|
The final resulut is a hash table of thread_data_t, keyed on the thread
|
38
38
|
id. Each thread has an hash a table of prof_method_t, keyed on the
|
39
39
|
method id. A hash table is used for quick look up when doing a profile.
|
40
40
|
However, it is exposed to Ruby as an array.
|
41
|
-
|
41
|
+
|
42
42
|
Each prof_method_t has two hash tables, parent and children, of prof_call_info_t.
|
43
43
|
These objects keep track of a method's callers (who called the method) and its
|
44
44
|
callees (who the method called). These are keyed the method id, but once again,
|
45
45
|
are exposed to Ruby as arrays. Each prof_call_into_t maintains a pointer to the
|
46
|
-
caller or callee method, thereby making it easy to navigate through the call
|
47
|
-
hierarchy in ruby - which is very helpful for creating call graphs.
|
46
|
+
caller or callee method, thereby making it easy to navigate through the call
|
47
|
+
hierarchy in ruby - which is very helpful for creating call graphs.
|
48
48
|
*/
|
49
49
|
|
50
|
-
/* #define DEBUG */
|
51
|
-
|
52
50
|
#ifndef RUBY_PROF_H
|
53
51
|
#define RUBY_PROF_H
|
54
52
|
|
@@ -95,12 +93,17 @@ static VALUE cResult;
|
|
95
93
|
static VALUE cMethodInfo;
|
96
94
|
static VALUE cCallInfo;
|
97
95
|
|
96
|
+
/* nasty hack to avoid compilation warnings related to 64/32 bit conversions */
|
97
|
+
#ifndef SIZEOF_ST_INDEX_T
|
98
|
+
#define st_index_t int
|
99
|
+
#endif
|
100
|
+
|
98
101
|
/* Profiling information for each method. */
|
99
102
|
typedef struct {
|
100
103
|
VALUE klass; /* The method's class. */
|
101
104
|
ID mid; /* The method id. */
|
102
105
|
int depth; /* The recursion depth. */
|
103
|
-
|
106
|
+
st_index_t key; /* Cache calculated key */
|
104
107
|
} prof_method_key_t;
|
105
108
|
|
106
109
|
struct prof_call_infos_t;
|
@@ -110,7 +113,6 @@ typedef struct {
|
|
110
113
|
prof_method_key_t *key; /* Method key */
|
111
114
|
const char *source_file; /* The method's source file */
|
112
115
|
int line; /* The method's line number. */
|
113
|
-
int active; /* Is this recursion depth. */
|
114
116
|
struct prof_call_infos_t *call_infos; /* Call info objects for this method */
|
115
117
|
VALUE object; /* Cahced ruby object */
|
116
118
|
} prof_method_t;
|
@@ -124,7 +126,7 @@ typedef struct prof_call_info_t {
|
|
124
126
|
prof_measure_t total_time;
|
125
127
|
prof_measure_t self_time;
|
126
128
|
prof_measure_t wait_time;
|
127
|
-
int line;
|
129
|
+
int line;
|
128
130
|
VALUE object;
|
129
131
|
VALUE children;
|
130
132
|
} prof_call_info_t;
|
data/ext/ruby_prof/version.h
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#define RUBY_PROF_VERSION "0.
|
1
|
+
#define RUBY_PROF_VERSION "0.9.0"
|
2
2
|
#define RUBY_PROF_VERSION_MAJ 0
|
3
|
-
#define RUBY_PROF_VERSION_MIN
|
4
|
-
#define RUBY_PROF_VERSION_MIC
|
3
|
+
#define RUBY_PROF_VERSION_MIN 9
|
4
|
+
#define RUBY_PROF_VERSION_MIC 0
|
data/lib/ruby-prof.rb
CHANGED
@@ -7,6 +7,7 @@ rescue Exception
|
|
7
7
|
require "#{me}/../ext/ruby_prof/ruby_prof"
|
8
8
|
end
|
9
9
|
|
10
|
+
require "ruby-prof/result"
|
10
11
|
require "ruby-prof/method_info"
|
11
12
|
require "ruby-prof/call_info"
|
12
13
|
require "ruby-prof/aggregate_call_info"
|
@@ -15,11 +16,15 @@ require "ruby-prof/flat_printer_with_line_numbers"
|
|
15
16
|
require "ruby-prof/graph_printer"
|
16
17
|
require "ruby-prof/graph_html_printer"
|
17
18
|
require "ruby-prof/call_tree_printer"
|
19
|
+
require "ruby-prof/call_stack_printer"
|
20
|
+
require "ruby-prof/multi_printer"
|
21
|
+
require "ruby-prof/dot_printer"
|
18
22
|
require "ruby-prof/symbol_to_proc" # for 1.8's benefit
|
23
|
+
require "ruby-prof/rack"
|
19
24
|
#require "ruby-prof/result"
|
20
25
|
|
21
26
|
module RubyProf
|
22
|
-
# See if the user specified the clock mode via
|
27
|
+
# See if the user specified the clock mode via
|
23
28
|
# the RUBY_PROF_MEASURE_MODE environment variable
|
24
29
|
def self.figure_measure_mode
|
25
30
|
case ENV["RUBY_PROF_MEASURE_MODE"]
|
@@ -48,6 +53,7 @@ module RubyProf
|
|
48
53
|
when "memory"
|
49
54
|
RubyProf.measure_mode = RubyProf::MEMORY
|
50
55
|
else
|
56
|
+
# the default...
|
51
57
|
RubyProf.measure_mode = RubyProf::PROCESS_TIME
|
52
58
|
end
|
53
59
|
end
|
@@ -7,7 +7,7 @@ module RubyProf
|
|
7
7
|
end
|
8
8
|
|
9
9
|
# Specify print options.
|
10
|
-
#
|
10
|
+
#
|
11
11
|
# options - Hash table
|
12
12
|
# :min_percent - Number 0 to 100 that specifes the minimum
|
13
13
|
# %self (the methods self time divided by the
|
@@ -20,16 +20,16 @@ module RubyProf
|
|
20
20
|
#
|
21
21
|
def setup_options(options = {})
|
22
22
|
@options = options
|
23
|
-
end
|
23
|
+
end
|
24
24
|
|
25
25
|
def min_percent
|
26
26
|
@options[:min_percent] || 0
|
27
27
|
end
|
28
|
-
|
28
|
+
|
29
29
|
def print_file
|
30
30
|
@options[:print_file] || false
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
def method_name(method)
|
34
34
|
name = method.full_name
|
35
35
|
if print_file
|
@@ -38,4 +38,4 @@ module RubyProf
|
|
38
38
|
name
|
39
39
|
end
|
40
40
|
end
|
41
|
-
end
|
41
|
+
end
|
@@ -27,7 +27,7 @@ module RubyProf
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def total_time
|
30
|
-
|
30
|
+
aggregate_minimal(:total_time)
|
31
31
|
end
|
32
32
|
|
33
33
|
def self_time
|
@@ -39,7 +39,7 @@ module RubyProf
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def children_time
|
42
|
-
|
42
|
+
aggregate_minimal(:children_time)
|
43
43
|
end
|
44
44
|
|
45
45
|
def called
|
@@ -55,8 +55,14 @@ module RubyProf
|
|
55
55
|
def aggregate(method_name)
|
56
56
|
self.call_infos.inject(0) do |sum, call_info|
|
57
57
|
sum += call_info.send(method_name)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def aggregate_minimal(method_name)
|
62
|
+
self.call_infos.inject(0) do |sum, call_info|
|
63
|
+
sum += call_info.send(method_name) if call_info.minimal?
|
58
64
|
sum
|
59
65
|
end
|
60
66
|
end
|
61
67
|
end
|
62
|
-
end
|
68
|
+
end
|
data/lib/ruby-prof/call_info.rb
CHANGED
@@ -43,5 +43,70 @@ module RubyProf
|
|
43
43
|
def to_s
|
44
44
|
"#{call_sequence}"
|
45
45
|
end
|
46
|
+
|
47
|
+
def minimal?
|
48
|
+
@minimal
|
49
|
+
end
|
50
|
+
|
51
|
+
def compute_minimality(parent_methods)
|
52
|
+
if parent_methods.include?(target)
|
53
|
+
@minimal = false
|
54
|
+
else
|
55
|
+
@minimal = true
|
56
|
+
parent_methods << target unless children.empty?
|
57
|
+
end
|
58
|
+
children.each {|ci| ci.compute_minimality(parent_methods)}
|
59
|
+
parent_methods.delete(target) if @minimal && !children.empty?
|
60
|
+
end
|
61
|
+
|
62
|
+
# eliminate call info from the call tree.
|
63
|
+
# adds self and wait time to parent and attaches called methods to parent.
|
64
|
+
# merges call trees for methods called from both praent end self.
|
65
|
+
def eliminate!
|
66
|
+
# puts "eliminating #{self}"
|
67
|
+
return unless parent
|
68
|
+
parent.add_self_time(self)
|
69
|
+
parent.add_wait_time(self)
|
70
|
+
children.each do |kid|
|
71
|
+
if call = parent.find_call(kid)
|
72
|
+
call.merge_call_tree(kid)
|
73
|
+
else
|
74
|
+
parent.children << kid
|
75
|
+
# $stderr.puts "setting parent of #{kid}\nto #{parent}"
|
76
|
+
kid.parent = parent
|
77
|
+
end
|
78
|
+
end
|
79
|
+
parent.children.delete(self)
|
80
|
+
end
|
81
|
+
|
82
|
+
# find a sepcific call in list of children. returns nil if not found.
|
83
|
+
# note: there can't be more than one child with a given target method. in other words:
|
84
|
+
# x.children.grep{|y|y.target==m}.size <= 1 for all method infos m and call infos x
|
85
|
+
def find_call(other)
|
86
|
+
matching = children.select { |kid| kid.target == other.target }
|
87
|
+
raise "inconsistent call tree" unless matching.size <= 1
|
88
|
+
matching.first
|
89
|
+
end
|
90
|
+
|
91
|
+
# merge two call trees. adds self, wait, and total time of other to self and merges children of other into children of self.
|
92
|
+
def merge_call_tree(other)
|
93
|
+
# $stderr.puts "merging #{self}\nand #{other}"
|
94
|
+
self.called += other.called
|
95
|
+
add_self_time(other)
|
96
|
+
add_wait_time(other)
|
97
|
+
add_total_time(other)
|
98
|
+
other.children.each do |other_kid|
|
99
|
+
if kid = find_call(other_kid)
|
100
|
+
# $stderr.puts "merging kids"
|
101
|
+
kid.merge_call_tree(other_kid)
|
102
|
+
else
|
103
|
+
other_kid.parent = self
|
104
|
+
children << other_kid
|
105
|
+
end
|
106
|
+
end
|
107
|
+
other.children.clear
|
108
|
+
other.target.call_infos.delete(other)
|
109
|
+
end
|
110
|
+
|
46
111
|
end
|
47
|
-
end
|
112
|
+
end
|
@@ -0,0 +1,751 @@
|
|
1
|
+
require 'ruby-prof/abstract_printer'
|
2
|
+
require 'erb'
|
3
|
+
require 'fileutils'
|
4
|
+
|
5
|
+
module RubyProf
|
6
|
+
# prints a HTML visualization of the call tree
|
7
|
+
class CallStackPrinter < AbstractPrinter
|
8
|
+
include ERB::Util
|
9
|
+
|
10
|
+
def initialize(result)
|
11
|
+
super(result)
|
12
|
+
end
|
13
|
+
|
14
|
+
def print(output = STDOUT, options = {})
|
15
|
+
@output = output
|
16
|
+
setup_options(options)
|
17
|
+
if @graph_html = options.delete(:graph)
|
18
|
+
@graph_html = "file://" + @graph_html if @graph_html[0]=="/"
|
19
|
+
end
|
20
|
+
|
21
|
+
@overall_threads_time = 0.0
|
22
|
+
@threads_totals = Hash.new
|
23
|
+
@result.threads.each do |thread_id, methods|
|
24
|
+
roots = methods.select{|m| m.root?}
|
25
|
+
thread_total_time = sum(roots.map{|r| self.total_time(r.call_infos)})
|
26
|
+
@overall_threads_time += thread_total_time
|
27
|
+
@threads_totals[thread_id] = thread_total_time
|
28
|
+
end
|
29
|
+
|
30
|
+
print_header
|
31
|
+
|
32
|
+
@result.threads.keys.sort.each do |thread_id|
|
33
|
+
@current_thread_id = thread_id
|
34
|
+
@overall_time = @threads_totals[thread_id]
|
35
|
+
@output.print "<div class=\"thread\">Thread: #{thread_id} (#{"%4.2f%%" % ((@overall_time/@overall_threads_time)*100)} ~ #{@overall_time})</div>"
|
36
|
+
@output.print "<ul name=\"thread\">"
|
37
|
+
@result.threads[thread_id].each do |m|
|
38
|
+
# $stderr.print m.dump
|
39
|
+
next unless m.root?
|
40
|
+
m.call_infos.each do |ci|
|
41
|
+
next unless ci.root?
|
42
|
+
print_stack ci, @threads_totals[thread_id]
|
43
|
+
end
|
44
|
+
end
|
45
|
+
@output.print "</ul>"
|
46
|
+
end
|
47
|
+
|
48
|
+
print_footer
|
49
|
+
|
50
|
+
copy_image_files
|
51
|
+
end
|
52
|
+
|
53
|
+
def print_stack(call_info, parent_time)
|
54
|
+
total_time = call_info.total_time
|
55
|
+
percent_parent = (total_time/parent_time)*100
|
56
|
+
percent_total = (total_time/@overall_time)*100
|
57
|
+
return unless percent_total > min_percent
|
58
|
+
color = self.color(percent_total)
|
59
|
+
kids = call_info.children
|
60
|
+
visible = percent_total >= threshold
|
61
|
+
expanded = percent_total >= expansion
|
62
|
+
display = visible ? "block" : "none"
|
63
|
+
@output.print "<li class=\"color#{color}\" style=\"display:#{display}\">"
|
64
|
+
if kids.empty?
|
65
|
+
@output.print "<img src=\"empty.png\">"
|
66
|
+
else
|
67
|
+
visible_children = kids.any?{|ci| (ci.total_time/@overall_time)*100 >= threshold}
|
68
|
+
image = visible_children ? (expanded ? "minus" : "plus") : "empty"
|
69
|
+
@output.print "<img class=\"toggle\" src=\"#{image}.png\">"
|
70
|
+
end
|
71
|
+
@output.printf " %4.2f%% (%4.2f%%) %s %s\n", percent_total, percent_parent, link(call_info), graph_link(call_info)
|
72
|
+
unless kids.empty?
|
73
|
+
if expanded
|
74
|
+
@output.print "<ul>"
|
75
|
+
else
|
76
|
+
@output.print '<ul style="display:none">'
|
77
|
+
end
|
78
|
+
kids.sort_by{|c| -c.total_time}.each do |callinfo|
|
79
|
+
print_stack callinfo, total_time
|
80
|
+
end
|
81
|
+
@output.print "</ul>"
|
82
|
+
end
|
83
|
+
@output.print "</li>"
|
84
|
+
end
|
85
|
+
|
86
|
+
def name(call_info)
|
87
|
+
method = call_info.target
|
88
|
+
method.full_name
|
89
|
+
end
|
90
|
+
|
91
|
+
def link(call_info)
|
92
|
+
method = call_info.target
|
93
|
+
file = File.expand_path(method.source_file)
|
94
|
+
if file =~ /\/ruby_runtime$/
|
95
|
+
h(name(call_info))
|
96
|
+
else
|
97
|
+
if RUBY_PLATFORM =~ /darwin/
|
98
|
+
"<a href=\"txmt://open?url=file://#{file}&line=#{method.line}\">#{h(name(call_info))}</a>"
|
99
|
+
else
|
100
|
+
"<a href=\"file://#{file}?line=#{method.line}\">#{h(name(call_info))}</a>"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def graph_link(call_info)
|
106
|
+
total_calls = call_info.target.call_infos.inject(0){|t, ci| t += ci.called}
|
107
|
+
href = "#{@graph_html}##{method_href(call_info.target)}"
|
108
|
+
totals = @graph_html ? "<a href='#{href}'>#{total_calls}</a>" : total_calls.to_s
|
109
|
+
"[#{call_info.called} calls, #{totals} total]"
|
110
|
+
end
|
111
|
+
|
112
|
+
def method_href(method)
|
113
|
+
h(method.full_name.gsub(/[><#\.\?=:]/,"_") + "_" + @current_thread_id.to_s)
|
114
|
+
end
|
115
|
+
|
116
|
+
def total_time(call_infos)
|
117
|
+
sum(call_infos.map{|ci| ci.total_time})
|
118
|
+
end
|
119
|
+
|
120
|
+
def sum(a)
|
121
|
+
a.inject(0.0){|s,t| s+=t}
|
122
|
+
end
|
123
|
+
|
124
|
+
def dump(ci)
|
125
|
+
$stderr.printf "%s/%d t:%f s:%f w:%f \n", ci, ci.object_id, ci.total_time, ci.self_time, ci.wait_time
|
126
|
+
end
|
127
|
+
|
128
|
+
def color(p)
|
129
|
+
case i = p.to_i
|
130
|
+
when 0..5
|
131
|
+
"01"
|
132
|
+
when 5..10
|
133
|
+
"05"
|
134
|
+
when 100
|
135
|
+
"9"
|
136
|
+
else
|
137
|
+
"#{i/10}"
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
def application
|
142
|
+
@options[:application] || $PROGRAM_NAME
|
143
|
+
end
|
144
|
+
|
145
|
+
def arguments
|
146
|
+
ARGV.join(' ')
|
147
|
+
end
|
148
|
+
|
149
|
+
def title
|
150
|
+
@title ||= @options.delete(:title) || "ruby-prof call tree"
|
151
|
+
end
|
152
|
+
|
153
|
+
def threshold
|
154
|
+
@options[:threshold] || 1.0
|
155
|
+
end
|
156
|
+
|
157
|
+
def expansion
|
158
|
+
@options[:expansion] || 10.0
|
159
|
+
end
|
160
|
+
|
161
|
+
def copy_image_files
|
162
|
+
if @output.is_a?(File)
|
163
|
+
target_dir = File.dirname(@output.path)
|
164
|
+
image_dir = File.dirname(__FILE__)
|
165
|
+
%w(empty plus minus).each do |img|
|
166
|
+
source_file = "#{image_dir}/#{img}.png"
|
167
|
+
target_file = "#{target_dir}/#{img}.png"
|
168
|
+
FileUtils.cp(source_file, target_file) unless File.exist?(target_file)
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
def print_header
|
174
|
+
@output.puts "<html><head>"
|
175
|
+
@output.puts '<meta http-equiv="content-type" content="text/html; charset=utf-8">'
|
176
|
+
@output.puts "<title>#{h title}</title>"
|
177
|
+
print_css
|
178
|
+
print_java_script
|
179
|
+
@output.puts '</head><body>'
|
180
|
+
print_title_bar
|
181
|
+
print_commands
|
182
|
+
print_help
|
183
|
+
end
|
184
|
+
|
185
|
+
def print_footer
|
186
|
+
@output.puts '<div id="sentinel"></div></body></html>'
|
187
|
+
end
|
188
|
+
|
189
|
+
def print_css
|
190
|
+
@output.puts <<-'end_css'
|
191
|
+
<style type="text/css">
|
192
|
+
<!--
|
193
|
+
body {
|
194
|
+
font-size:70%;
|
195
|
+
padding:0px;
|
196
|
+
margin:5px;
|
197
|
+
margin-right:0px;
|
198
|
+
margin-left:0px;
|
199
|
+
background: #ffffff;
|
200
|
+
}
|
201
|
+
ul {
|
202
|
+
margin-left:0px;
|
203
|
+
margin-top:0px;
|
204
|
+
margin-bottom:0px;
|
205
|
+
padding-left:0px;
|
206
|
+
list-style-type:none;
|
207
|
+
}
|
208
|
+
li {
|
209
|
+
margin-left:11px;
|
210
|
+
padding:0px;
|
211
|
+
white-space:nowrap;
|
212
|
+
border-top:1px solid #cccccc;
|
213
|
+
border-left:1px solid #cccccc;
|
214
|
+
border-bottom:none;
|
215
|
+
}
|
216
|
+
.thread {
|
217
|
+
margin-left:11px;
|
218
|
+
background:#708090;
|
219
|
+
padding-top:3px;
|
220
|
+
padding-left:12px;
|
221
|
+
padding-bottom:2px;
|
222
|
+
border-left:1px solid #CCCCCC;
|
223
|
+
border-top:1px solid #CCCCCC;
|
224
|
+
font-weight:bold;
|
225
|
+
}
|
226
|
+
.hidden {
|
227
|
+
display:none;
|
228
|
+
width:0px;
|
229
|
+
height:0px;
|
230
|
+
margin:0px;
|
231
|
+
padding:0px;
|
232
|
+
border-style:none;
|
233
|
+
}
|
234
|
+
.color01 { background:#adbdeb }
|
235
|
+
.color05 { background:#9daddb }
|
236
|
+
.color0 { background:#8d9dcb }
|
237
|
+
.color1 { background:#89bccb }
|
238
|
+
.color2 { background:#56e3e7 }
|
239
|
+
.color3 { background:#32cd70 }
|
240
|
+
.color4 { background:#a3d53c }
|
241
|
+
.color5 { background:#c4cb34 }
|
242
|
+
.color6 { background:#dcb66d }
|
243
|
+
.color7 { background:#cda59e }
|
244
|
+
.color8 { background:#be9d9c }
|
245
|
+
.color9 { background:#cf947a }
|
246
|
+
#commands {
|
247
|
+
font-size:10pt;
|
248
|
+
padding:10px;
|
249
|
+
margin-left:11px;
|
250
|
+
margin-bottom:0px;
|
251
|
+
margin-top:0px;
|
252
|
+
background:#708090;
|
253
|
+
border-top:1px solid #cccccc;
|
254
|
+
border-left:1px solid #cccccc;
|
255
|
+
border-bottom:none;
|
256
|
+
}
|
257
|
+
#titlebar {
|
258
|
+
font-size:10pt;
|
259
|
+
padding:10px;
|
260
|
+
margin-left:11px;
|
261
|
+
margin-bottom:0px;
|
262
|
+
margin-top:10px;
|
263
|
+
background:#8090a0;
|
264
|
+
border-top:1px solid #cccccc;
|
265
|
+
border-left:1px solid #cccccc;
|
266
|
+
border-bottom:none;
|
267
|
+
}
|
268
|
+
#help {
|
269
|
+
font-size:10pt;
|
270
|
+
padding:10px;
|
271
|
+
margin-left:11px;
|
272
|
+
margin-bottom:0px;
|
273
|
+
margin-top:0px;
|
274
|
+
background:#8090a0;
|
275
|
+
display:none;
|
276
|
+
border-top:1px solid #cccccc;
|
277
|
+
border-left:1px solid #cccccc;
|
278
|
+
border-bottom:none;
|
279
|
+
}
|
280
|
+
#sentinel {
|
281
|
+
height: 400px;
|
282
|
+
margin-left:11px;
|
283
|
+
background:#8090a0;
|
284
|
+
border-top:1px solid #cccccc;
|
285
|
+
border-left:1px solid #cccccc;
|
286
|
+
border-bottom:none;
|
287
|
+
}
|
288
|
+
input { margin-left:10px; }
|
289
|
+
-->
|
290
|
+
</style>
|
291
|
+
end_css
|
292
|
+
end
|
293
|
+
|
294
|
+
def print_java_script
|
295
|
+
@output.puts <<-'end_java_script'
|
296
|
+
<script type="text/javascript">
|
297
|
+
/*
|
298
|
+
Copyright (C) 2005,2009 Stefan Kaes
|
299
|
+
skaes@railsexpress.de
|
300
|
+
*/
|
301
|
+
|
302
|
+
function rootNode() {
|
303
|
+
return currentThread;
|
304
|
+
}
|
305
|
+
|
306
|
+
function hideUL(node) {
|
307
|
+
var lis = node.childNodes
|
308
|
+
var l = lis.length;
|
309
|
+
for (var i=0; i < l ; i++ ) {
|
310
|
+
hideLI(lis[i]);
|
311
|
+
}
|
312
|
+
}
|
313
|
+
|
314
|
+
function showUL(node) {
|
315
|
+
var lis = node.childNodes;
|
316
|
+
var l = lis.length;
|
317
|
+
for (var i=0; i < l ; i++ ) {
|
318
|
+
showLI(lis[i]);
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
function findUlChild(li){
|
323
|
+
var ul = li.childNodes[2];
|
324
|
+
while (ul && ul.nodeName != "UL") {
|
325
|
+
ul = ul.nextSibling;
|
326
|
+
}
|
327
|
+
return ul;
|
328
|
+
}
|
329
|
+
|
330
|
+
function isLeafNode(li) {
|
331
|
+
var img = li.firstChild;
|
332
|
+
return (img.src.indexOf('empty.png') > -1);
|
333
|
+
}
|
334
|
+
|
335
|
+
function hideLI(li) {
|
336
|
+
if (isLeafNode(li))
|
337
|
+
return;
|
338
|
+
|
339
|
+
var img = li.firstChild;
|
340
|
+
img.src = 'plus.png';
|
341
|
+
|
342
|
+
var ul = findUlChild(li);
|
343
|
+
if (ul) {
|
344
|
+
ul.style.display = 'none';
|
345
|
+
hideUL(ul);
|
346
|
+
}
|
347
|
+
}
|
348
|
+
|
349
|
+
function showLI(li) {
|
350
|
+
if (isLeafNode(li))
|
351
|
+
return;
|
352
|
+
|
353
|
+
var img = li.firstChild;
|
354
|
+
img.src = 'minus.png';
|
355
|
+
|
356
|
+
var ul = findUlChild(li);
|
357
|
+
if (ul) {
|
358
|
+
ul.style.display = 'block';
|
359
|
+
showUL(ul);
|
360
|
+
}
|
361
|
+
}
|
362
|
+
|
363
|
+
function toggleLI(li) {
|
364
|
+
var img = li.firstChild;
|
365
|
+
if (img.src.indexOf("minus.png")>-1)
|
366
|
+
hideLI(li);
|
367
|
+
else {
|
368
|
+
if (img.src.indexOf("plus.png")>-1)
|
369
|
+
showLI(li);
|
370
|
+
}
|
371
|
+
}
|
372
|
+
|
373
|
+
function aboveThreshold(text, threshold) {
|
374
|
+
var match = text.match(/\d+[.,]\d+/);
|
375
|
+
return (match && parseFloat(match[0].replace(/,/, '.'))>=threshold);
|
376
|
+
}
|
377
|
+
|
378
|
+
function setThresholdLI(li, threshold) {
|
379
|
+
var img = li.firstChild;
|
380
|
+
var text = img.nextSibling;
|
381
|
+
var ul = findUlChild(li);
|
382
|
+
|
383
|
+
var visible = aboveThreshold(text.nodeValue, threshold) ? 1 : 0;
|
384
|
+
|
385
|
+
var count = 0;
|
386
|
+
if (ul) {
|
387
|
+
count = setThresholdUL(ul, threshold);
|
388
|
+
}
|
389
|
+
if (count>0) {
|
390
|
+
img.src = 'minus.png';
|
391
|
+
}
|
392
|
+
else {
|
393
|
+
img.src = 'empty.png';
|
394
|
+
}
|
395
|
+
if (visible) {
|
396
|
+
li.style.display = 'block'
|
397
|
+
}
|
398
|
+
else {
|
399
|
+
li.style.display = 'none'
|
400
|
+
}
|
401
|
+
return visible;
|
402
|
+
}
|
403
|
+
|
404
|
+
function setThresholdUL(node, threshold) {
|
405
|
+
var lis = node.childNodes;
|
406
|
+
var l = lis.length;
|
407
|
+
|
408
|
+
var count = 0;
|
409
|
+
for ( var i = 0; i < l ; i++ ) {
|
410
|
+
count = count + setThresholdLI(lis[i], threshold);
|
411
|
+
}
|
412
|
+
|
413
|
+
var visible = (count > 0) ? 1 : 0;
|
414
|
+
if (visible) {
|
415
|
+
node.style.display = 'block';
|
416
|
+
}
|
417
|
+
else {
|
418
|
+
node.style.display = 'none';
|
419
|
+
}
|
420
|
+
return visible;
|
421
|
+
}
|
422
|
+
|
423
|
+
function toggleChildren(img, event) {
|
424
|
+
event.cancelBubble=true;
|
425
|
+
|
426
|
+
if (img.src.indexOf('empty.png') > -1)
|
427
|
+
return;
|
428
|
+
|
429
|
+
var minus = (img.src.indexOf('minus.png') > -1);
|
430
|
+
|
431
|
+
if (minus) {
|
432
|
+
img.src = 'plus.png';
|
433
|
+
}
|
434
|
+
else
|
435
|
+
img.src = 'minus.png';
|
436
|
+
|
437
|
+
var li = img.parentNode;
|
438
|
+
var ul = findUlChild(li);
|
439
|
+
if (ul) {
|
440
|
+
if (minus)
|
441
|
+
ul.style.display = 'none';
|
442
|
+
else
|
443
|
+
ul.style.display = 'block';
|
444
|
+
}
|
445
|
+
if (minus)
|
446
|
+
moveSelectionIfNecessary(li);
|
447
|
+
}
|
448
|
+
|
449
|
+
function showChildren(li) {
|
450
|
+
var img = li.firstChild;
|
451
|
+
if (img.src.indexOf('empty.png') > -1)
|
452
|
+
return;
|
453
|
+
img.src = 'minus.png';
|
454
|
+
|
455
|
+
var ul = findUlChild(li);
|
456
|
+
if (ul) {
|
457
|
+
ul.style.display = 'block';
|
458
|
+
}
|
459
|
+
}
|
460
|
+
|
461
|
+
function setThreshold() {
|
462
|
+
var tv = document.getElementById("threshold").value;
|
463
|
+
if (tv.match(/[0-9]+([.,][0-9]+)?/)) {
|
464
|
+
var f = parseFloat(tv.replace(/,/, '.'));
|
465
|
+
var threads = document.getElementsByName("thread");
|
466
|
+
var l = threads.length;
|
467
|
+
for ( var i = 0; i < l ; i++ ) {
|
468
|
+
setThresholdUL(threads[i], f);
|
469
|
+
}
|
470
|
+
var p = selectedNode;
|
471
|
+
while (p && p.style.display=='none')
|
472
|
+
p=p.parentNode.parentNode;
|
473
|
+
if (p && p.nodeName=="LI")
|
474
|
+
selectNode(p);
|
475
|
+
}
|
476
|
+
else {
|
477
|
+
alert("Please specify a decimal number as threshold value!");
|
478
|
+
}
|
479
|
+
}
|
480
|
+
|
481
|
+
function collapseAll(event) {
|
482
|
+
event.cancelBubble=true;
|
483
|
+
var threads = document.getElementsByName("thread");
|
484
|
+
var l = threads.length;
|
485
|
+
for ( var i = 0; i < l ; i++ ) {
|
486
|
+
hideUL(threads[i]);
|
487
|
+
}
|
488
|
+
selectNode(rootNode(), null);
|
489
|
+
}
|
490
|
+
|
491
|
+
function expandAll(event) {
|
492
|
+
event.cancelBubble=true;
|
493
|
+
var threads = document.getElementsByName("thread");
|
494
|
+
var l = threads.length;
|
495
|
+
for ( var i = 0; i < l ; i++ ) {
|
496
|
+
showUL(threads[i]);
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
function toggleHelp(node) {
|
501
|
+
var help = document.getElementById("help");
|
502
|
+
if (node.value == "Show Help") {
|
503
|
+
node.value = "Hide Help";
|
504
|
+
help.style.display = 'block';
|
505
|
+
}
|
506
|
+
else {
|
507
|
+
node.value = "Show Help";
|
508
|
+
help.style.display = 'none';
|
509
|
+
}
|
510
|
+
}
|
511
|
+
|
512
|
+
var selectedNode = null;
|
513
|
+
var selectedColor = null;
|
514
|
+
var selectedThread = null;
|
515
|
+
|
516
|
+
function descendentOf(a,b){
|
517
|
+
while (a!=b && b!=null)
|
518
|
+
b=b.parentNode;
|
519
|
+
return (a==b);
|
520
|
+
}
|
521
|
+
|
522
|
+
function moveSelectionIfNecessary(node){
|
523
|
+
if (descendentOf(node, selectedNode))
|
524
|
+
selectNode(node, null);
|
525
|
+
}
|
526
|
+
|
527
|
+
function selectNode(node, event) {
|
528
|
+
if (event) {
|
529
|
+
event.cancelBubble = true;
|
530
|
+
thread = findThread(node);
|
531
|
+
selectThread(thread);
|
532
|
+
}
|
533
|
+
if (selectedNode) {
|
534
|
+
selectedNode.style.background = selectedColor;
|
535
|
+
}
|
536
|
+
selectedNode = node;
|
537
|
+
selectedColor = node.style.background;
|
538
|
+
selectedNode.style.background = "red";
|
539
|
+
selectedNode.scrollIntoView();
|
540
|
+
window.scrollBy(0,-400);
|
541
|
+
}
|
542
|
+
|
543
|
+
function moveUp(){
|
544
|
+
var p = selectedNode.previousSibling;
|
545
|
+
while (p && p.style.display == 'none')
|
546
|
+
p = p.previousSibling;
|
547
|
+
if (p && p.nodeName == "LI") {
|
548
|
+
selectNode(p, null);
|
549
|
+
}
|
550
|
+
}
|
551
|
+
|
552
|
+
function moveDown(){
|
553
|
+
var p = selectedNode.nextSibling;
|
554
|
+
while (p && p.style.display == 'none')
|
555
|
+
p = p.nextSibling;
|
556
|
+
if (p && p.nodeName == "LI") {
|
557
|
+
selectNode(p, null);
|
558
|
+
}
|
559
|
+
}
|
560
|
+
|
561
|
+
function moveLeft(){
|
562
|
+
var p = selectedNode.parentNode.parentNode;
|
563
|
+
if (p && p.nodeName=="LI") {
|
564
|
+
selectNode(p, null);
|
565
|
+
}
|
566
|
+
}
|
567
|
+
|
568
|
+
function moveRight(){
|
569
|
+
if (!isLeafNode(selectedNode)) {
|
570
|
+
showChildren(selectedNode);
|
571
|
+
var ul = findUlChild(selectedNode);
|
572
|
+
if (ul) {
|
573
|
+
selectNode(ul.firstChild, null);
|
574
|
+
}
|
575
|
+
}
|
576
|
+
}
|
577
|
+
|
578
|
+
function moveForward(){
|
579
|
+
if (isLeafNode(selectedNode)) {
|
580
|
+
var p = selectedNode;
|
581
|
+
while ((p.nextSibling == null || p.nextSibling.style.display=='none') && p.nodeName=="LI") {
|
582
|
+
p = p.parentNode.parentNode;
|
583
|
+
}
|
584
|
+
if (p.nodeName=="LI")
|
585
|
+
selectNode(p.nextSibling, null);
|
586
|
+
}
|
587
|
+
else {
|
588
|
+
moveRight();
|
589
|
+
}
|
590
|
+
}
|
591
|
+
|
592
|
+
function isExpandedNode(li){
|
593
|
+
var img = li.firstChild;
|
594
|
+
return(img.src.indexOf('minus.png')>-1);
|
595
|
+
}
|
596
|
+
|
597
|
+
function moveBackward(){
|
598
|
+
var p = selectedNode;
|
599
|
+
var q = p.previousSibling;
|
600
|
+
while (q != null && q.style.display=='none')
|
601
|
+
q = q.previousSibling;
|
602
|
+
if (q == null) {
|
603
|
+
p = p.parentNode.parentNode;
|
604
|
+
} else {
|
605
|
+
while (!isLeafNode(q) && isExpandedNode(q)) {
|
606
|
+
q = findUlChild(q).lastChild;
|
607
|
+
while (q.style.display=='none')
|
608
|
+
q = q.previousSibling;
|
609
|
+
}
|
610
|
+
p = q;
|
611
|
+
}
|
612
|
+
if (p.nodeName=="LI")
|
613
|
+
selectNode(p, null);
|
614
|
+
}
|
615
|
+
|
616
|
+
function moveHome() {
|
617
|
+
selectNode(currentThread);
|
618
|
+
}
|
619
|
+
|
620
|
+
var currentThreadIndex = null;
|
621
|
+
|
622
|
+
function findThread(node){
|
623
|
+
while (node && node.parentNode.nodeName!="BODY") {
|
624
|
+
node = node.parentNode;
|
625
|
+
}
|
626
|
+
return node.firstChild;
|
627
|
+
}
|
628
|
+
|
629
|
+
function selectThread(node){
|
630
|
+
var threads = document.getElementsByName("thread");
|
631
|
+
currentThread = node;
|
632
|
+
for (var i=0; i<threads.length; i++) {
|
633
|
+
if (threads[i]==currentThread.parentNode)
|
634
|
+
currentThreadIndex = i;
|
635
|
+
}
|
636
|
+
}
|
637
|
+
|
638
|
+
function nextThread(){
|
639
|
+
var threads = document.getElementsByName("thread");
|
640
|
+
if (currentThreadIndex==threads.length-1)
|
641
|
+
currentThreadIndex = 0;
|
642
|
+
else
|
643
|
+
currentThreadIndex += 1
|
644
|
+
currentThread = threads[currentThreadIndex].firstChild;
|
645
|
+
selectNode(currentThread, null);
|
646
|
+
}
|
647
|
+
|
648
|
+
function previousThread(){
|
649
|
+
var threads = document.getElementsByName("thread");
|
650
|
+
if (currentThreadIndex==0)
|
651
|
+
currentThreadIndex = threads.length-1;
|
652
|
+
else
|
653
|
+
currentThreadIndex -= 1
|
654
|
+
currentThread = threads[currentThreadIndex].firstChild;
|
655
|
+
selectNode(currentThread, null);
|
656
|
+
}
|
657
|
+
|
658
|
+
function switchThread(node, event){
|
659
|
+
event.cancelBubble = true;
|
660
|
+
selectThread(node.nextSibling.firstChild);
|
661
|
+
selectNode(currentThread, null);
|
662
|
+
}
|
663
|
+
|
664
|
+
function handleKeyEvent(event){
|
665
|
+
var code = event.charCode ? event.charCode : event.keyCode;
|
666
|
+
var str = String.fromCharCode(code);
|
667
|
+
switch (str) {
|
668
|
+
case "a": moveLeft(); break;
|
669
|
+
case "s": moveDown(); break;
|
670
|
+
case "d": moveRight(); break;
|
671
|
+
case "w": moveUp(); break;
|
672
|
+
case "f": moveForward(); break;
|
673
|
+
case "b": moveBackward(); break;
|
674
|
+
case "x": toggleChildren(selectedNode.firstChild, event); break;
|
675
|
+
case "*": toggleLI(selectedNode); break;
|
676
|
+
case "n": nextThread(); break;
|
677
|
+
case "h": moveHome(); break;
|
678
|
+
case "p": previousThread(); break;
|
679
|
+
}
|
680
|
+
}
|
681
|
+
document.onkeypress=function(event){ handleKeyEvent(event) };
|
682
|
+
|
683
|
+
window.onload=function(){
|
684
|
+
var images = document.getElementsByTagName("img");
|
685
|
+
for (var i=0; i<images.length; i++) {
|
686
|
+
var img = images[i];
|
687
|
+
if (img.className == "toggle") {
|
688
|
+
img.onclick = function(event){ toggleChildren(this, event); };
|
689
|
+
}
|
690
|
+
}
|
691
|
+
var divs = document.getElementsByTagName("div");
|
692
|
+
for (i=0; i<divs.length; i++) {
|
693
|
+
var div = divs[i];
|
694
|
+
if (div.className == "thread")
|
695
|
+
div.onclick = function(event){ switchThread(this, event) };
|
696
|
+
}
|
697
|
+
var lis = document.getElementsByTagName("li");
|
698
|
+
for (var i=0; i<lis.length; i++) {
|
699
|
+
lis[i].onclick = function(event){ selectNode(this, event); };
|
700
|
+
}
|
701
|
+
var threads = document.getElementsByName("thread");
|
702
|
+
currentThreadIndex = 0;
|
703
|
+
currentThread = threads[0].firstChild;
|
704
|
+
selectNode(currentThread, null);
|
705
|
+
}
|
706
|
+
</script>
|
707
|
+
end_java_script
|
708
|
+
end
|
709
|
+
|
710
|
+
def print_title_bar
|
711
|
+
@output.puts <<-"end_title_bar"
|
712
|
+
<div id="titlebar">
|
713
|
+
Call tree for application <b>#{h application} #{h arguments}</b><br/>
|
714
|
+
Generated on #{Time.now} with options #{h @options.inspect}<br/>
|
715
|
+
</div>
|
716
|
+
end_title_bar
|
717
|
+
end
|
718
|
+
|
719
|
+
def print_commands
|
720
|
+
@output.puts <<-"end_commands"
|
721
|
+
<div id=\"commands\">
|
722
|
+
<span style=\"font-size: 11pt; font-weight: bold;\">Threshold:</span>
|
723
|
+
<input value=\"#{h threshold}\" size=\"3\" id=\"threshold\" type=\"text\">
|
724
|
+
<input value=\"Apply\" onclick=\"setThreshold();\" type=\"submit\">
|
725
|
+
<input value=\"Expand All\" onclick=\"expandAll(event);\" type=\"submit\">
|
726
|
+
<input value=\"Collapse All\" onclick=\"collapseAll(event);\" type=\"submit\">
|
727
|
+
<input value=\"Show Help\" onclick=\"toggleHelp(this);\" type=\"submit\">
|
728
|
+
</div>
|
729
|
+
end_commands
|
730
|
+
end
|
731
|
+
|
732
|
+
def print_help
|
733
|
+
@output.puts <<-'end_help'
|
734
|
+
<div style="display: none;" id="help">
|
735
|
+
<img src="empty.png"> Enter a decimal value <i>d</i> into the threshold field and click "Apply"
|
736
|
+
to hide all nodes marked with time values lower than <i>d</i>.<br>
|
737
|
+
<img src="empty.png"> Click on "Expand All" for full tree expansion.<br>
|
738
|
+
<img src="empty.png"> Click on "Collapse All" to show only top level nodes.<br>
|
739
|
+
<img src="empty.png"> Use a, s, d, w as in Quake or Urban Terror to navigate the tree.<br>
|
740
|
+
<img src="empty.png"> Use f and b to navigate the tree in preorder forward and backwards.<br>
|
741
|
+
<img src="empty.png"> Use x to toggle visibility of a subtree.<br>
|
742
|
+
<img src="empty.png"> Use * to expand/collapse a whole subtree.<br>
|
743
|
+
<img src="empty.png"> Use h to navigate to thread root.<br>
|
744
|
+
<img src="empty.png"> Use n and p to navigate between threads.<br>
|
745
|
+
<img src="empty.png"> Click on background to move focus to a subtree.<br>
|
746
|
+
</div>
|
747
|
+
end_help
|
748
|
+
end
|
749
|
+
end
|
750
|
+
end
|
751
|
+
|