40 lines
1.4 KiB
Java
40 lines
1.4 KiB
Java
package net.minecraft.client.telemetry;
|
|
|
|
import com.mojang.logging.LogUtils;
|
|
import java.io.IOException;
|
|
import java.nio.channels.FileChannel;
|
|
import java.util.concurrent.Executor;
|
|
import net.minecraft.util.eventlog.JsonEventLog;
|
|
import net.minecraft.util.thread.ConsecutiveExecutor;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
import org.apache.commons.io.IOUtils;
|
|
import org.slf4j.Logger;
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public class TelemetryEventLog implements AutoCloseable {
|
|
private static final Logger LOGGER = LogUtils.getLogger();
|
|
private final JsonEventLog<TelemetryEventInstance> log;
|
|
private final ConsecutiveExecutor consecutiveExecutor;
|
|
|
|
public TelemetryEventLog(FileChannel p_261731_, Executor p_262010_) {
|
|
this.log = new JsonEventLog<>(TelemetryEventInstance.CODEC, p_261731_);
|
|
this.consecutiveExecutor = new ConsecutiveExecutor(p_262010_, "telemetry-event-log");
|
|
}
|
|
|
|
public TelemetryEventLogger logger() {
|
|
return p_358060_ -> this.consecutiveExecutor.schedule(() -> {
|
|
try {
|
|
this.log.write(p_358060_);
|
|
} catch (IOException ioexception) {
|
|
LOGGER.error("Failed to write telemetry event to log", (Throwable)ioexception);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public void close() {
|
|
this.consecutiveExecutor.schedule(() -> IOUtils.closeQuietly(this.log));
|
|
this.consecutiveExecutor.close();
|
|
}
|
|
} |