Class: Vernier::Output::FileListing
- Inherits:
-
Object
- Object
- Vernier::Output::FileListing
show all
- Defined in:
- lib/vernier/output/file_listing.rb
Defined Under Namespace
Classes: SamplesByLocation
Instance Method Summary
collapse
Constructor Details
#initialize(profile) ⇒ FileListing
Returns a new instance of FileListing.
23
24
25
|
# File 'lib/vernier/output/file_listing.rb', line 23
def initialize(profile)
@profile = profile
end
|
Instance Method Details
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# File 'lib/vernier/output/file_listing.rb', line 105
def format_file(output, filename, all_samples, total:)
samples = all_samples[filename]
output << sprintf(" TOTAL | SELF | LINE SOURCE\n")
File.readlines(filename).each_with_index do |line, i|
lineno = i + 1
calls = samples[lineno]
if calls && calls.total > 0
output << sprintf("%5.1f%% | %5.1f%% | % 4i %s", 100 * calls.total / total.to_f, 100 * calls.self / total.to_f, lineno, line)
else
output << sprintf(" | | % 4i %s", lineno, line)
end
end
end
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
# File 'lib/vernier/output/file_listing.rb', line 134
def format_file_html(output, filename, relevant_files)
samples = relevant_files[filename]
output << sprintf(" TOTAL | SELF | LINE SOURCE\n")
File.readlines(filename).each_with_index do |line, i|
lineno = i + 1
calls = samples[lineno]
if calls && calls.total > 0
output << sprintf("%5.1f%% | %5.1f%% | % 4i %s", 100 * calls.total / total.to_f, 100 * calls.self / total.to_f, lineno, CGI::escapeHTML(line))
else
output << sprintf(" | | % 4i %s", lineno, CGI::escapeHTML(line))
end
end
end
|
#html_output(output, relevant_files) ⇒ Object
122
123
124
125
126
127
128
129
130
131
132
|
# File 'lib/vernier/output/file_listing.rb', line 122
def html_output(output, relevant_files)
output << "<pre>"
output << " SELF FILE\n"
relevant_files.sort_by {|k, v| -v.values.map(&:self).sum }.each do |filename, file_contents|
tmpl = "<details style=\"display:inline-block;vertical-align:top;\"><summary>%s</summary>"
output << sprintf("% 5.1f%% #{tmpl}\n", file_contents.values.map(&:self).sum * 100 / total.to_f, filename)
format_file_html(output, filename, relevant_files)
output << "</details>\n"
end
output << "</pre>"
end
|
#output(template: nil) ⇒ Object
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# File 'lib/vernier/output/file_listing.rb', line 77
def output(template: nil)
output = +""
relevant_files = samples_by_file.select do |k, v|
next if k.start_with?("gem:")
next if k.start_with?("rubylib:")
next if k.start_with?("<")
v.values.map(&:total).sum > total * 0.01
end
if template == "html"
html_output(output, relevant_files)
else
relevant_files.keys.sort.each do |filename|
output << "="*80 << "\n"
output << filename << "\n"
output << "-"*80 << "\n"
format_file(output, filename, samples_by_file, total: total)
end
output << "="*80 << "\n"
end
end
|
#samples_by_file ⇒ Object
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# File 'lib/vernier/output/file_listing.rb', line 27
def samples_by_file
thread = @profile.main_thread
if Hash === thread
stack_table = @profile._stack_table
filename_filter = FilenameFilter.new
else
stack_table = thread.stack_table
filename_filter = ->(x) { x }
end
weights = thread[:weights]
samples = thread[:samples]
self_samples_by_frame = Hash.new do |h, k|
h[k] = SamplesByLocation.new
end
samples.zip(weights).each do |stack_idx, weight|
top_frame_index = stack_table.stack_frame_idx(stack_idx)
self_samples_by_frame[top_frame_index].self += weight
while stack_idx
frame_idx = stack_table.stack_frame_idx(stack_idx)
self_samples_by_frame[frame_idx].total += weight
stack_idx = stack_table.stack_parent_idx(stack_idx)
end
end
samples_by_file = Hash.new do |h, k|
h[k] = Hash.new do |h2, k2|
h2[k2] = SamplesByLocation.new
end
end
self_samples_by_frame.each do |frame, samples|
line = stack_table.frame_line_no(frame)
func_index = stack_table.frame_func_idx(frame)
filename = stack_table.func_filename(func_index)
samples_by_file[filename][line] += samples
end
samples_by_file.transform_keys! do |filename|
filename_filter.call(filename)
end
end
|
#total ⇒ Object
100
101
102
103
|
# File 'lib/vernier/output/file_listing.rb', line 100
def total
thread = @profile.main_thread
thread[:weights].sum
end
|