planetiler/planetiler-core/src/main/java/com/onthegomap/planetiler/stats/ProcessTime.java

38 wiersze
1.2 KiB
Java
Czysty Zwykły widok Historia

package com.onthegomap.planetiler.stats;
2021-06-04 11:22:40 +00:00
import com.onthegomap.planetiler.util.Format;
2021-06-04 11:22:40 +00:00
import java.time.Duration;
import java.util.Optional;
2021-09-10 00:46:20 +00:00
/**
* A utility for measuring the wall and CPU time that this JVM consumes between snapshots.
* <p>
* For example:
* <pre>{@code
* var start = ProcessTime.now();
* // do expensive work...
* var end - ProcessTime.now();
* LOGGER.log("Expensive work took " + end.minus(start));
* }</pre>
*/
2021-06-04 11:22:40 +00:00
public record ProcessTime(Duration wall, Optional<Duration> cpu) {
2021-09-10 00:46:20 +00:00
/** Takes a snapshot of current wall and CPU time of this JVM. */
2021-06-04 11:22:40 +00:00
public static ProcessTime now() {
return new ProcessTime(Duration.ofNanos(System.nanoTime()), ProcessInfo.getProcessCpuTime());
}
2021-09-10 00:46:20 +00:00
/** Returns the amount of time elapsed between {@code other} and {@code this}. */
2021-06-04 11:22:40 +00:00
ProcessTime minus(ProcessTime other) {
return new ProcessTime(wall.minus(other.wall), cpu.flatMap(thisCpu -> other.cpu.map(thisCpu::minus)));
}
@Override
public String toString() {
Optional<String> deltaCpu = cpu.map(Format::formatSeconds);
String avgCpus = cpu.map(cpuTime -> " avg:" + Format.formatDecimal(cpuTime.toNanos() * 1d / wall.toNanos()))
.orElse("");
return Format.formatSeconds(wall) + " cpu:" + deltaCpu.orElse("-") + avgCpus;
}
}