Methods Summary |
---|
private static final java.lang.String | pad(java.lang.String s, int i)
StringBuffer b = new StringBuffer();
for (i -= s.length(); i > 0; i--)
b.append((char)' ");
b.append(s);
return b.toString();
|
public final synchronized void | pop()
// get time
final long now = System.currentTimeMillis();
// update method call stack
final MethodCall call = (MethodCall)calls.remove(calls.size()-1);
// get current call's time
final long currentSelf = now - call.self;
final long currentTotal = now - call.total;
// update previous call's self time
if (calls.size() > 0) {
final MethodCall previous = (MethodCall)calls.get(calls.size()-1);
previous.self += currentTotal;
}
// update method descriptor
final MethodDescriptor current = call.method;
current.self += currentSelf;
if (--current.instantiations == 0) {
current.total += currentTotal;
}
if (false) {
out.println("Timer (n,g): " + call.message + " : ("
+ currentSelf + ", " + currentTotal + ")");
}
|
public final synchronized void | print()
out.println("Timer : printing accumulated times ...");
final Object[] calls = methods.values().toArray();
Arrays.sort(calls,
new Comparator() {
public int compare(Object o1,
Object o2) {
return (int)(((MethodDescriptor)o2).total
- ((MethodDescriptor)o1).total);
}
public boolean equals(Object obj) {
return (compare(this, obj) == 0);
}
});
out.println("Timer : total s self s #calls name");
DecimalFormat nf = new DecimalFormat();
nf.setMaximumFractionDigits(2);
nf.setMinimumFractionDigits(2);
//nf.applyPattern("#,##0.00");
//out.println("Timer : pattern = " + nf.toPattern());
for (int i = 0; i < calls.length; i++) {
final MethodDescriptor current = (MethodDescriptor)calls[i];
out.println("Timer : "
+ pad(nf.format(current.total / 1000.0), 8) + " "
+ pad(nf.format(current.self / 1000.0), 8) + " "
+ pad(String.valueOf(current.calls), 6) + " "
+ current.name);
}
|
public final synchronized void | push(java.lang.String name)
push(name, name);
|
public final synchronized void | push(java.lang.String name, java.lang.String message)
// get time
final long now = System.currentTimeMillis();
// get a method descriptor
MethodDescriptor current = (MethodDescriptor)methods.get(name);
if (current == null) {
current = new MethodDescriptor(name);
methods.put(name, current);
}
// update method descriptor
current.calls++;
current.instantiations++;
// update method call stack
calls.add(new MethodCall(current, message, now, now));
|