2020-01-31 17:09:56 +01:00
|
|
|
From ad137e8e3c6ec5c46cd87caa10e2c1056439bfef Mon Sep 17 00:00:00 2001
|
2016-02-29 02:15:51 +01:00
|
|
|
From: Joseph Hirschfeld <joe@ibj.io>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Thu, 3 Mar 2016 03:15:41 -0600
|
2016-02-29 02:15:51 +01:00
|
|
|
Subject: [PATCH] Add exception reporting event
|
|
|
|
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java b/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java
|
|
|
|
new file mode 100644
|
2020-01-31 17:09:56 +01:00
|
|
|
index 000000000..f699ce18c
|
2016-03-01 00:09:49 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/ServerSchedulerReportingWrapper.java
|
|
|
|
@@ -0,0 +1,38 @@
|
|
|
|
+package com.destroystokyo.paper;
|
|
|
|
+
|
|
|
|
+import com.google.common.base.Preconditions;
|
|
|
|
+import org.bukkit.craftbukkit.scheduler.CraftTask;
|
|
|
|
+import com.destroystokyo.paper.event.server.ServerExceptionEvent;
|
|
|
|
+import com.destroystokyo.paper.exception.ServerSchedulerException;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Reporting wrapper to catch exceptions not natively
|
|
|
|
+ */
|
|
|
|
+public class ServerSchedulerReportingWrapper implements Runnable {
|
|
|
|
+
|
|
|
|
+ private final CraftTask internalTask;
|
|
|
|
+
|
|
|
|
+ public ServerSchedulerReportingWrapper(CraftTask internalTask) {
|
|
|
|
+ this.internalTask = Preconditions.checkNotNull(internalTask, "internalTask");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void run() {
|
|
|
|
+ try {
|
|
|
|
+ internalTask.run();
|
|
|
|
+ } catch (RuntimeException e) {
|
|
|
|
+ internalTask.getOwner().getServer().getPluginManager().callEvent(
|
|
|
|
+ new ServerExceptionEvent(new ServerSchedulerException(e, internalTask))
|
|
|
|
+ );
|
|
|
|
+ throw e;
|
|
|
|
+ } catch (Throwable t) {
|
|
|
|
+ internalTask.getOwner().getServer().getPluginManager().callEvent(
|
|
|
|
+ new ServerExceptionEvent(new ServerSchedulerException(t, internalTask))
|
|
|
|
+ ); //Do not rethrow, since it is not permitted with Runnable#run
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public CraftTask getInternalTask() {
|
|
|
|
+ return internalTask;
|
|
|
|
+ }
|
|
|
|
+}
|
2016-02-29 02:15:51 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index 9adb21279..f3d20f214 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2016-03-01 00:09:49 +01:00
|
|
|
@@ -1,5 +1,6 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
|
|
|
import com.google.common.collect.Maps;
|
2018-07-15 03:53:17 +02:00
|
|
|
import com.google.common.collect.Sets;
|
2019-04-26 03:24:00 +02:00
|
|
|
import it.unimi.dsi.fastutil.longs.LongOpenHashSet;
|
2020-01-31 17:09:56 +01:00
|
|
|
@@ -513,10 +514,15 @@ public class Chunk implements IChunkAccess {
|
2016-02-29 02:15:51 +01:00
|
|
|
this.tileEntities.remove(blockposition);
|
2016-03-01 00:09:49 +01:00
|
|
|
// Paper end
|
2016-02-29 02:15:51 +01:00
|
|
|
} else {
|
|
|
|
- System.out.println("Attempted to place a tile entity (" + tileentity + ") at " + tileentity.position.getX() + "," + tileentity.position.getY() + "," + tileentity.position.getZ()
|
2018-07-15 03:53:17 +02:00
|
|
|
- + " (" + getType(blockposition) + ") where there was no entity tile!");
|
2019-04-26 03:24:00 +02:00
|
|
|
- System.out.println("Chunk coordinates: " + (this.loc.x * 16) + "," + (this.loc.z * 16));
|
2016-02-29 02:15:51 +01:00
|
|
|
- new Exception().printStackTrace();
|
|
|
|
+ // Paper start
|
|
|
|
+ ServerInternalException e = new ServerInternalException(
|
|
|
|
+ "Attempted to place a tile entity (" + tileentity + ") at " + tileentity.position.getX() + ","
|
2016-03-01 00:09:49 +01:00
|
|
|
+ + tileentity.position.getY() + "," + tileentity.position.getZ()
|
2019-04-26 03:24:00 +02:00
|
|
|
+ + " (" + getType(blockposition) + ") where there was no entity tile!\n" +
|
|
|
|
+ "Chunk coordinates: " + (this.loc.x * 16) + "," + (this.loc.z * 16));
|
2016-02-29 02:15:51 +01:00
|
|
|
+ e.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(e);
|
|
|
|
+ // Paper end
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderServer.java b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index b09868e2d..1d789b668 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -15,6 +15,9 @@ import java.util.function.BooleanSupplier;
|
2019-05-14 04:20:58 +02:00
|
|
|
import java.util.function.Function;
|
2019-04-26 03:24:00 +02:00
|
|
|
import java.util.function.Supplier;
|
2016-05-12 04:07:46 +02:00
|
|
|
import javax.annotation.Nullable;
|
2016-03-01 00:09:49 +01:00
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
2019-04-26 03:24:00 +02:00
|
|
|
+import org.apache.logging.log4j.LogManager;
|
|
|
|
+import org.apache.logging.log4j.Logger;
|
2016-02-29 02:15:51 +01:00
|
|
|
|
2019-04-26 03:24:00 +02:00
|
|
|
public class ChunkProviderServer extends IChunkProvider {
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2016-02-29 02:15:51 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/NameReferencingFileConverter.java b/src/main/java/net/minecraft/server/NameReferencingFileConverter.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index c9c2b0025..1422503e1 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/NameReferencingFileConverter.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/NameReferencingFileConverter.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -1,5 +1,6 @@
|
2016-03-01 00:09:49 +01:00
|
|
|
package net.minecraft.server;
|
2016-02-29 02:15:51 +01:00
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
2017-05-14 20:05:01 +02:00
|
|
|
import com.google.common.collect.Lists;
|
2018-07-15 03:53:17 +02:00
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import com.google.common.io.Files;
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -354,6 +355,7 @@ public class NameReferencingFileConverter {
|
|
|
|
root = NBTCompressedStreamTools.a(new java.io.FileInputStream(file5));
|
2016-02-29 02:15:51 +01:00
|
|
|
} catch (Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root != null) {
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -367,6 +369,7 @@ public class NameReferencingFileConverter {
|
2016-02-29 02:15:51 +01:00
|
|
|
NBTCompressedStreamTools.a(root, new java.io.FileOutputStream(file2));
|
|
|
|
} catch (Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
2016-02-29 02:15:51 +01:00
|
|
|
// CraftBukkit end
|
2019-04-26 03:24:00 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index b2260498c..c575ff57d 100644
|
2019-04-26 03:24:00 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2020-01-28 01:16:53 +01:00
|
|
|
@@ -727,6 +727,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-04-26 03:24:00 +02:00
|
|
|
this.world.checkSession();
|
|
|
|
} catch (ExceptionWorldConflict exceptionworldconflict) {
|
|
|
|
PlayerChunkMap.LOGGER.error("Couldn't save chunk; already in use by another instance of Minecraft?", exceptionworldconflict);
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(exceptionworldconflict); // Paper
|
2019-05-14 04:20:58 +02:00
|
|
|
return false;
|
2019-04-26 03:24:00 +02:00
|
|
|
}
|
|
|
|
|
2020-01-28 01:16:53 +01:00
|
|
|
@@ -755,6 +756,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-05-14 04:20:58 +02:00
|
|
|
return true;
|
2019-04-26 03:24:00 +02:00
|
|
|
} catch (Exception exception) {
|
|
|
|
PlayerChunkMap.LOGGER.error("Failed to save chunk {},{}", chunkcoordintpair.x, chunkcoordintpair.z, exception);
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(exception); // Paper
|
2019-05-14 04:20:58 +02:00
|
|
|
return false;
|
2019-04-26 03:24:00 +02:00
|
|
|
}
|
|
|
|
}
|
2016-02-29 02:15:51 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/RegionFile.java b/src/main/java/net/minecraft/server/RegionFile.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index 187c4e0f5..c2312a227 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/RegionFile.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/RegionFile.java
|
2019-12-13 17:29:51 +01:00
|
|
|
@@ -241,6 +241,7 @@ public class RegionFile implements AutoCloseable {
|
2019-12-11 03:43:21 +01:00
|
|
|
return true;
|
2019-04-26 03:24:00 +02:00
|
|
|
}
|
2019-12-11 03:43:21 +01:00
|
|
|
} catch (IOException ioexception) {
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(ioexception); // Paper
|
|
|
|
return false;
|
2016-02-29 02:15:51 +01:00
|
|
|
}
|
|
|
|
}
|
2019-12-13 17:29:51 +01:00
|
|
|
@@ -309,6 +310,7 @@ public class RegionFile implements AutoCloseable {
|
2019-12-11 03:43:21 +01:00
|
|
|
filechannel.write(bytebuffer);
|
|
|
|
} catch (Throwable throwable1) {
|
|
|
|
throwable = throwable1;
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(throwable); // Paper
|
|
|
|
throw throwable1;
|
|
|
|
} finally {
|
|
|
|
if (filechannel != null) {
|
2016-02-29 02:15:51 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/SpawnerCreature.java b/src/main/java/net/minecraft/server/SpawnerCreature.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index 8ba344df6..02157d051 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/SpawnerCreature.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/SpawnerCreature.java
|
2019-04-26 03:24:00 +02:00
|
|
|
@@ -8,6 +8,7 @@ import org.apache.logging.log4j.LogManager;
|
2018-07-15 03:53:17 +02:00
|
|
|
import org.apache.logging.log4j.Logger;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
2016-02-29 02:15:51 +01:00
|
|
|
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
2019-04-26 03:24:00 +02:00
|
|
|
// CraftBukkit end
|
2016-02-29 02:15:51 +01:00
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -86,6 +87,7 @@ public final class SpawnerCreature {
|
|
|
|
entityinsentient = (EntityInsentient) entity;
|
|
|
|
} catch (Exception exception) {
|
|
|
|
SpawnerCreature.LOGGER.warn("Failed to create mob", exception);
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
return;
|
|
|
|
}
|
2019-04-26 03:24:00 +02:00
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -214,6 +216,7 @@ public final class SpawnerCreature {
|
2019-04-26 03:24:00 +02:00
|
|
|
entity = biomebase_biomemeta.b.a(generatoraccess.getMinecraftWorld());
|
2016-02-29 02:15:51 +01:00
|
|
|
} catch (Exception exception) {
|
2019-04-26 03:24:00 +02:00
|
|
|
SpawnerCreature.LOGGER.warn("Failed to create mob", exception);
|
2016-02-29 02:15:51 +01:00
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/VillageSiege.java b/src/main/java/net/minecraft/server/VillageSiege.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index d5e9bae70..1bcf01c09 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/VillageSiege.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/VillageSiege.java
|
|
|
|
@@ -1,5 +1,7 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
2016-02-29 02:15:51 +01:00
|
|
|
+
|
|
|
|
import java.util.Iterator;
|
2016-05-12 04:07:46 +02:00
|
|
|
import javax.annotation.Nullable;
|
2019-04-26 03:24:00 +02:00
|
|
|
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -100,6 +102,7 @@ public class VillageSiege {
|
|
|
|
entityzombie.prepare(worldserver, worldserver.getDamageScaler(new BlockPosition(entityzombie)), EnumMobSpawn.EVENT, (GroupDataEntity) null, (NBTTagCompound) null);
|
2016-02-29 02:15:51 +01:00
|
|
|
} catch (Exception exception) {
|
|
|
|
exception.printStackTrace();
|
|
|
|
+ ServerInternalException.reportInternalException(exception); // Paper
|
2019-04-26 03:24:00 +02:00
|
|
|
return;
|
2016-02-29 02:15:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index caead09a6..bf20ce934 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-04-27 05:05:36 +02:00
|
|
|
@@ -2,6 +2,9 @@ package net.minecraft.server;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2019-04-26 03:24:00 +02:00
|
|
|
import co.aikar.timings.Timing;
|
2018-07-15 03:53:17 +02:00
|
|
|
import co.aikar.timings.Timings;
|
2016-03-01 00:09:49 +01:00
|
|
|
+import com.destroystokyo.paper.event.server.ServerExceptionEvent;
|
|
|
|
+import com.destroystokyo.paper.exception.ServerInternalException;
|
2019-04-26 03:24:00 +02:00
|
|
|
+import com.google.common.base.MoreObjects;
|
2018-07-15 03:53:17 +02:00
|
|
|
import com.google.common.collect.Lists;
|
2019-04-26 03:24:00 +02:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Collection;
|
2020-01-28 20:43:57 +01:00
|
|
|
@@ -658,8 +661,11 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2019-04-26 03:24:00 +02:00
|
|
|
gameprofilerfiller.exit();
|
|
|
|
} catch (Throwable throwable) {
|
2016-03-01 00:09:49 +01:00
|
|
|
// Paper start - Prevent tile entity and entity crashes
|
2016-02-29 02:15:51 +01:00
|
|
|
- System.err.println("TileEntity threw exception at " + tileentity.world.getWorld().getName() + ":" + tileentity.position.getX() + "," + tileentity.position.getY() + "," + tileentity.position.getZ());
|
|
|
|
+ String msg = "TileEntity threw exception at " + tileentity.world.getWorld().getName() + ":" + tileentity.position.getX() + "," + tileentity.position.getY() + "," + tileentity.position.getZ();
|
|
|
|
+ System.err.println(msg);
|
2019-04-26 03:24:00 +02:00
|
|
|
throwable.printStackTrace();
|
|
|
|
+ getServer().getPluginManager().callEvent(new ServerExceptionEvent(new ServerInternalException(msg, throwable)));
|
|
|
|
+ // Paper end
|
2016-02-29 02:15:51 +01:00
|
|
|
tilesThisCycle--;
|
2016-03-01 00:09:49 +01:00
|
|
|
this.tileEntityListTick.remove(tileTickPosition--);
|
2016-02-29 02:15:51 +01:00
|
|
|
continue;
|
2020-01-28 20:43:57 +01:00
|
|
|
@@ -730,8 +736,10 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2019-04-26 03:24:00 +02:00
|
|
|
consumer.accept(entity);
|
|
|
|
} catch (Throwable throwable) {
|
|
|
|
// Paper start - Prevent tile entity and entity crashes
|
2019-12-11 03:43:21 +01:00
|
|
|
- System.err.println("Entity threw exception at " + entity.world.getWorld().getName() + ":" + entity.locX() + "," + entity.locY() + "," + entity.locZ());
|
|
|
|
+ String msg = "Entity threw exception at " + entity.world.getWorld().getName() + ":" + entity.locX() + "," + entity.locY() + "," + entity.locZ();
|
2019-04-26 03:24:00 +02:00
|
|
|
+ System.err.println(msg);
|
|
|
|
throwable.printStackTrace();
|
|
|
|
+ getServer().getPluginManager().callEvent(new ServerExceptionEvent(new ServerInternalException(msg, throwable)));
|
|
|
|
entity.dead = true;
|
|
|
|
return;
|
|
|
|
// Paper end
|
2018-08-26 20:11:49 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldPersistentData.java b/src/main/java/net/minecraft/server/WorldPersistentData.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index 19e68a783..a2a25cf6a 100644
|
2018-08-26 20:11:49 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldPersistentData.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldPersistentData.java
|
2019-06-25 03:47:58 +02:00
|
|
|
@@ -121,6 +121,7 @@ public class WorldPersistentData {
|
2019-04-26 03:24:00 +02:00
|
|
|
nbttagcompound = GameProfileSerializer.a(this.c, DataFixTypes.SAVED_DATA, nbttagcompound1, j, i);
|
|
|
|
} catch (Throwable throwable4) {
|
|
|
|
throwable = throwable4;
|
|
|
|
+ com.destroystokyo.paper.exception.ServerInternalException.reportInternalException(throwable); // Paper
|
|
|
|
throw throwable4;
|
2018-08-26 20:11:49 +02:00
|
|
|
} finally {
|
2019-04-26 03:24:00 +02:00
|
|
|
if (pushbackinputstream != null) {
|
2016-02-29 02:15:51 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
2020-01-31 17:09:56 +01:00
|
|
|
index 8823f94f7..552daf437 100644
|
2016-02-29 02:15:51 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
|
2019-04-26 03:24:00 +02:00
|
|
|
@@ -16,6 +16,9 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
|
|
import java.util.function.Consumer;
|
2016-03-01 00:09:49 +01:00
|
|
|
import java.util.logging.Level;
|
|
|
|
+import com.destroystokyo.paper.ServerSchedulerReportingWrapper;
|
|
|
|
+import com.destroystokyo.paper.event.server.ServerExceptionEvent;
|
|
|
|
+import com.destroystokyo.paper.exception.ServerSchedulerException;
|
|
|
|
import org.apache.commons.lang.Validate;
|
|
|
|
import org.bukkit.plugin.IllegalPluginAccessException;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -393,20 +396,26 @@ public class CraftScheduler implements BukkitScheduler {
|
2016-02-29 02:15:51 +01:00
|
|
|
try {
|
|
|
|
task.run();
|
|
|
|
} catch (final Throwable throwable) {
|
|
|
|
+ // Paper start
|
|
|
|
+ String msg = String.format(
|
|
|
|
+ "Task #%s for %s generated an exception",
|
|
|
|
+ task.getTaskId(),
|
|
|
|
+ task.getOwner().getDescription().getFullName());
|
|
|
|
task.getOwner().getLogger().log(
|
|
|
|
Level.WARNING,
|
|
|
|
- String.format(
|
|
|
|
- "Task #%s for %s generated an exception",
|
|
|
|
- task.getTaskId(),
|
|
|
|
- task.getOwner().getDescription().getFullName()),
|
|
|
|
+ msg,
|
|
|
|
throwable);
|
|
|
|
+ task.getOwner().getServer().getPluginManager().callEvent(
|
|
|
|
+ new ServerExceptionEvent(new ServerSchedulerException(msg, throwable, task))
|
|
|
|
+ );
|
|
|
|
+ // Paper end
|
2018-06-21 05:29:33 +02:00
|
|
|
} finally {
|
|
|
|
currentTask = null;
|
2016-02-29 02:15:51 +01:00
|
|
|
}
|
|
|
|
parsePending();
|
|
|
|
} else {
|
|
|
|
debugTail = debugTail.setNext(new CraftAsyncDebugger(currentTick + RECENT_TICKS, task.getOwner(), task.getTaskClass()));
|
|
|
|
- executor.execute(task);
|
|
|
|
+ executor.execute(new ServerSchedulerReportingWrapper(task)); // Paper
|
|
|
|
// We don't need to parse pending
|
|
|
|
// (async tasks must live with race-conditions if they attempt to cancel between these few lines of code)
|
|
|
|
}
|
|
|
|
--
|
2020-01-28 20:43:57 +01:00
|
|
|
2.25.0
|
2016-02-29 02:15:51 +01:00
|
|
|
|