-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick and dirty mixin to time and log event timings to a "csv" (uses …
…semicolon) (#409)
- Loading branch information
1 parent
4399cee
commit 11b4c15
Showing
3 changed files
with
99 additions
and
2 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/java/com/mitchej123/hodgepodge/mixins/hooks/ModProfileResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.mitchej123.hodgepodge.mixins.hooks; | ||
|
||
import cpw.mods.fml.common.ModContainer; | ||
|
||
public class ModProfileResult implements Comparable<ModProfileResult> { | ||
|
||
public final long time; | ||
public final ModContainer mod; | ||
|
||
public ModProfileResult(long time, ModContainer mod) { | ||
this.time = time; | ||
this.mod = mod; | ||
} | ||
|
||
@Override | ||
public int compareTo(ModProfileResult o) { | ||
return Long.compare(o.time, time); | ||
} | ||
|
||
} |
73 changes: 73 additions & 0 deletions
73
src/main/java/com/mitchej123/hodgepodge/mixins/preinit/MixinLoadController_logModTimes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package com.mitchej123.hodgepodge.mixins.preinit; | ||
|
||
import java.io.FileWriter; | ||
import java.io.IOException; | ||
import java.io.PrintWriter; | ||
import java.util.ArrayList; | ||
import java.util.Map; | ||
|
||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.injection.At; | ||
import org.spongepowered.asm.mixin.injection.Inject; | ||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; | ||
|
||
import com.llamalad7.mixinextras.injector.wrapoperation.Operation; | ||
import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation; | ||
import com.mitchej123.hodgepodge.Common; | ||
import com.mitchej123.hodgepodge.mixins.hooks.ModProfileResult; | ||
|
||
import cpw.mods.fml.common.LoadController; | ||
import cpw.mods.fml.common.LoaderState; | ||
import cpw.mods.fml.common.ModContainer; | ||
import cpw.mods.fml.common.event.FMLEvent; | ||
import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; | ||
|
||
@Mixin(value = LoadController.class, remap = false) | ||
public class MixinLoadController_logModTimes { | ||
|
||
private static Map<String, ArrayList<ModProfileResult>> results = new Object2ObjectOpenHashMap<>(); | ||
|
||
@WrapOperation( | ||
method = "propogateStateMessage", | ||
at = @At( | ||
value = "INVOKE", | ||
target = "Lcpw/mods/fml/common/LoadController;sendEventToModContainer(Lcpw/mods/fml/common/event/FMLEvent;Lcpw/mods/fml/common/ModContainer;)V"), | ||
remap = false) | ||
private void timeModEvent(LoadController instance, FMLEvent event, ModContainer modContainer, | ||
Operation<Void> original) { | ||
|
||
final long start = System.nanoTime(); | ||
|
||
original.call(instance, event, modContainer); | ||
if (results == null) return; | ||
|
||
final long timeTaken = System.nanoTime() - start; | ||
results.computeIfAbsent(event.getEventType(), k -> new ArrayList<>()) | ||
.add(new ModProfileResult(timeTaken, modContainer)); | ||
} | ||
|
||
@Inject( | ||
method = "Lcpw/mods/fml/common/LoadController;distributeStateMessage(Lcpw/mods/fml/common/LoaderState;[Ljava/lang/Object;)V", | ||
at = @At(value = "TAIL", remap = false)) | ||
public void printResults(LoaderState state, Object[] eventData, CallbackInfo ci) { | ||
if (results == null || state != LoaderState.AVAILABLE) return; | ||
try { | ||
PrintWriter writer = new PrintWriter(new FileWriter("modtimes.csv", false)); | ||
|
||
writer.println("event;modid;modname;time"); | ||
results.forEach((type, results) -> { | ||
results.sort(null); | ||
results.forEach(result -> { | ||
final String modid = result.mod.getModId(); | ||
writer.println(type + ";" + modid + ";" + result.mod.getName() + ";" + result.time / 1000000); | ||
}); | ||
|
||
}); | ||
writer.close(); | ||
} catch (IOException e) { | ||
Common.log.error("Failed to write modtimes.csv", e); | ||
} | ||
results = null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters