mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 14:05:12 +00:00
67 lines
2.2 KiB
Java
67 lines
2.2 KiB
Java
/*
|
|
* Copyright (C) 2010-2025 JPEXS, All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3.0 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library.
|
|
*/
|
|
package com.jpexs.helpers;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* Profiler class for measuring time of actions.
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class Profiler {
|
|
|
|
private static final boolean PROFILER_ENABLED = false;
|
|
|
|
private Map<String, Long> times = new HashMap<>();
|
|
private static Map<String, Long> maxTimes = new HashMap<>();
|
|
private Map<String, Long> startTimes = new HashMap<>();
|
|
|
|
static {
|
|
if (PROFILER_ENABLED) {
|
|
Runtime.getRuntime().addShutdownHook(new Thread() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println("PROFILER MAX TIMES:");
|
|
for (String action : maxTimes.keySet()) {
|
|
System.out.println("" + action + ": " + maxTimes.get(action) + " ms");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
public void start(String action) {
|
|
startTimes.put(action, System.currentTimeMillis());
|
|
}
|
|
|
|
public void stop(String action) {
|
|
if (!startTimes.containsKey(action)) {
|
|
throw new RuntimeException("action " + action + " not started, cannot be stopped");
|
|
}
|
|
long time = System.currentTimeMillis() - startTimes.get(action);
|
|
if (!maxTimes.containsKey(action)) {
|
|
maxTimes.put(action, time);
|
|
} else if (time > maxTimes.get(action)) {
|
|
maxTimes.put(action, time);
|
|
}
|
|
times.put(action, time);
|
|
startTimes.remove(action);
|
|
}
|
|
}
|