1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
/*
* WarmRoast
* Copyright (C) 2013 Albert Pham <http://www.sk89q.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.warmroast;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class StackNode implements Comparable<StackNode> {
private final String name;
private final Map<String, StackNode> children = new HashMap<>();
private long totalTime;
public StackNode(String name) {
this.name = name;
}
public String getName() {
return name;
}
public String getNameHtml(McpMapping mapping) {
return escapeHtml(getName());
}
public Collection<StackNode> getChildren() {
List<StackNode> list = new ArrayList<>(children.values());
Collections.sort(list);
return list;
}
public StackNode getChild(String name) {
StackNode child = children.get(name);
if (child == null) {
child = new StackNode(name);
children.put(name, child);
}
return child;
}
public StackNode getChild(String className, String methodName) {
StackTraceNode node = new StackTraceNode(className, methodName);
StackNode child = children.get(node.getName());
if (child == null) {
child = node;
children.put(node.getName(), node);
}
return child;
}
public long getTotalTime() {
return totalTime;
}
public void log(long time) {
totalTime += time;
}
private void log(StackTraceElement[] elements, int skip, long time) {
log(time);
if (elements.length - skip == 0) {
return;
}
StackTraceElement bottom = elements[elements.length - (skip + 1)];
getChild(bottom.getClassName(), bottom.getMethodName())
.log(elements, skip + 1, time);
}
public void log(StackTraceElement[] elements, long time) {
log(elements, 0, time);
}
@Override
public int compareTo(StackNode o) {
return getName().compareTo(o.getName());
}
private void writeHtml(StringBuilder builder, McpMapping mapping, long totalTime) {
builder.append("<div class=\"node collapsed\">");
builder.append("<div class=\"name\">");
builder.append(getNameHtml(mapping));
builder.append("<span class=\"percent\">");
builder
.append(String.format("%.2f", getTotalTime() / (double) totalTime * 100))
.append("%");
builder.append("</span>");
builder.append("<span class=\"time\">");
builder.append(getTotalTime()).append("ms");
builder.append("</span>");
builder.append("<span class=\"bar\">");
builder.append("<span class=\"bar-inner\" style=\"width:")
.append(String.format("%.2f", getTotalTime() / (double) totalTime * 100))
.append("%\">");
builder.append("</span>");
builder.append("</span>");
builder.append("</div>");
builder.append("<ul class=\"children\">");
for (StackNode child : getChildren()) {
builder.append("<li>");
child.writeHtml(builder, mapping, totalTime);
builder.append("</li>");
}
builder.append("</ul>");
builder.append("</div>");
}
public String toHtml(McpMapping mapping) {
StringBuilder builder = new StringBuilder();
writeHtml(builder, mapping, getTotalTime());
return builder.toString();
}
private void writeString(StringBuilder builder, int indent) {
StringBuilder b = new StringBuilder();
for (int i = 0; i < indent; i++) {
b.append(" ");
}
String padding = b.toString();
for (StackNode child : getChildren()) {
builder.append(padding).append(child.getName());
builder.append(" ");
builder.append(getTotalTime()).append("ms");
builder.append("\n");
child.writeString(builder, indent + 1);
}
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
writeString(builder, 0);
return builder.toString();
}
protected static String escapeHtml(String str) {
return str.replace("&", "&").replace("<", "<").replace(">", ">");
}
}
|