com.ibm.wala.util.perf.Stopwatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.ibm.wala.util Show documentation
Show all versions of com.ibm.wala.util Show documentation
T. J. Watson Libraries for Analysis
The newest version!
/*
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*/
package com.ibm.wala.util.perf;
/** Basic class to time events */
public class Stopwatch {
protected int count;
/** elapsed time in nanoseconds */
private long elapsedTime;
private long startTime;
public Stopwatch() {}
public void start() {
startTime = System.nanoTime();
}
public void stop() {
long endTime = System.nanoTime();
count++;
elapsedTime += (endTime - startTime);
}
/**
* @return elapsed time in ms
*/
public long getElapsedMillis() {
return elapsedTime / 1000000;
}
/**
* @return number of times this stopwatch was stopped
*/
public int getCount() {
return count;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("total: ").append(getElapsedMillis());
if (count > 0) {
sb.append(", inv: ").append(count);
sb.append(", avg: ").append(getElapsedMillis() / count);
}
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy