Skip to content

Commit a1c4fc9

Browse files
committed
Add generic ticket identifier
Currently only implemented for Plugin tickets as all ticket add methods no longer include the identifier parameter. This prevents plugin tickets from stepping over each other. If need be, the ticket identifiers can be used for FUTURE_AWAIT and CHUNK_LOAD and they should work.
1 parent cdad49b commit a1c4fc9

File tree

3 files changed

+51
-17
lines changed

3 files changed

+51
-17
lines changed

paper-server/patches/sources/io/papermc/paper/FeatureHooks.java.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
+ com.google.common.collect.ImmutableList.Builder<org.bukkit.plugin.Plugin> ret = com.google.common.collect.ImmutableList.builder();
149149
+ for (net.minecraft.server.level.Ticket ticket : tickets) {
150150
+ if (ticket.getType() == net.minecraft.server.level.TicketType.PLUGIN_TICKET) {
151-
+ ret.add((org.bukkit.plugin.Plugin) ticket.key);
151+
+ ret.add((org.bukkit.plugin.Plugin) ticket.getIdentifier());
152152
+ }
153153
+ }
154154
+
@@ -173,7 +173,7 @@
173173
+ chunk = world.getWorld().getChunkAt(ChunkPos.getX(chunkKey), ChunkPos.getZ(chunkKey));
174174
+ }
175175
+
176-
+ ret.computeIfAbsent((org.bukkit.plugin.Plugin) ticket.key, (key) -> com.google.common.collect.ImmutableList.builder()).add(chunk);
176+
+ ret.computeIfAbsent((org.bukkit.plugin.Plugin) ticket.getIdentifier(), (key) -> com.google.common.collect.ImmutableList.builder()).add(chunk);
177177
+ }
178178
+ }
179179
+
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,41 @@
11
--- a/net/minecraft/server/level/Ticket.java
22
+++ b/net/minecraft/server/level/Ticket.java
3-
@@ -66,4 +_,13 @@
4-
public boolean isTimedOut() {
5-
return this.type.hasTimeout() && this.ticksLeft < 0L;
6-
}
3+
@@ -14,17 +_,36 @@
4+
ExtraCodecs.NON_NEGATIVE_INT.fieldOf("level").forGetter(Ticket::getTicketLevel),
5+
Codec.LONG.optionalFieldOf("ticks_left", 0L).forGetter(ticket -> ticket.ticksLeft)
6+
)
7+
- .apply(instance, Ticket::new)
8+
+ .apply(instance, (type, level, ticks) -> new Ticket(type, level.intValue(), ticks.longValue())) // Paper - add identifier
9+
);
10+
private final TicketType type;
11+
private final int ticketLevel;
12+
private long ticksLeft;
13+
+ // Paper start - add identifier
14+
+ private Object identifier;
15+
+
16+
+ public Object getIdentifier() {
17+
+ return this.identifier;
18+
+ }
19+
+ // Paper end - add identifier
720
+
8-
+ // Paper start - plugin chunk tickets
9-
+ public [email protected] Plugin key;
10-
+ public Ticket withPluginRef(org.bukkit.plugin.Plugin plugin) {
11-
+ com.google.common.base.Preconditions.checkState(this.type == net.minecraft.server.level.TicketType.PLUGIN_TICKET);
12-
+ this.key = plugin;
13-
+ return this;
21+
22+
public Ticket(TicketType type, int ticketLevel) {
23+
- this(type, ticketLevel, type.timeout());
24+
+ // Paper start - add identifier
25+
+ this(type, ticketLevel, null);
26+
+ }
27+
+ public Ticket(TicketType type, int ticketLevel, Object identifier) {
28+
+ this(type, ticketLevel, type.timeout(), identifier);
29+
+ // Paper end - add identifier
30+
}
31+
32+
private Ticket(TicketType type, int ticketLevel, long ticksLeft) {
33+
+ // Paper start - add identifier
34+
+ this(type, ticketLevel, ticksLeft, null);
1435
+ }
15-
+ // Paper end - plugin chunk tickets
16-
}
36+
+ private Ticket(TicketType type, int ticketLevel, long ticksLeft, Object identifier) {
37+
+ this.identifier = identifier;
38+
+ // Paper end - add identifier
39+
this.type = type;
40+
this.ticketLevel = ticketLevel;
41+
this.ticksLeft = ticksLeft;

paper-server/patches/sources/net/minecraft/world/level/TicketStorage.java.patch

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
--- a/net/minecraft/world/level/TicketStorage.java
22
+++ b/net/minecraft/world/level/TicketStorage.java
3+
@@ -161,7 +_,7 @@
4+
}
5+
6+
private static boolean isTicketSameTypeAndLevel(Ticket first, Ticket second) {
7+
- return second.getType() == first.getType() && second.getTicketLevel() == first.getTicketLevel();
8+
+ return second.getType() == first.getType() && second.getTicketLevel() == first.getTicketLevel() && java.util.Objects.equals(second.getIdentifier(), first.getIdentifier()); // Paper - add identifier
9+
}
10+
11+
public int getTicketLevelAt(long chunkPos, boolean requireSimulation) {
312
@@ -264,7 +_,7 @@
413
}
514

@@ -16,16 +25,16 @@
1625
+ // Paper start
1726
+ public boolean addPluginRegionTicket(final ChunkPos pos, final org.bukkit.plugin.Plugin value) {
1827
+ // Keep inline with force loading
19-
+ return addTicket(pos.toLong(), new Ticket(TicketType.PLUGIN_TICKET, ChunkMap.FORCED_TICKET_LEVEL).withPluginRef(value));
28+
+ return addTicket(pos.toLong(), new Ticket(TicketType.PLUGIN_TICKET, ChunkMap.FORCED_TICKET_LEVEL, value));
2029
+ }
2130
+
2231
+ public boolean removePluginRegionTicket(final ChunkPos pos, final org.bukkit.plugin.Plugin value) {
2332
+ // Keep inline with force loading
24-
+ return removeTicket(pos.toLong(), new Ticket(TicketType.PLUGIN_TICKET, ChunkMap.FORCED_TICKET_LEVEL).withPluginRef(value));
33+
+ return removeTicket(pos.toLong(), new Ticket(TicketType.PLUGIN_TICKET, ChunkMap.FORCED_TICKET_LEVEL, value));
2534
+ }
2635
+
2736
+ public void removeAllPluginRegionTickets(TicketType ticketType, int ticketLevel, org.bukkit.plugin.Plugin ticketIdentifier) {
28-
+ removeTicketIf(ticket -> ticket.getType() == ticketType && ticket.getTicketLevel() == ticketLevel && ticket.key == ticketIdentifier, null);
37+
+ removeTicketIf(ticket -> ticket.getType() == ticketType && ticket.getTicketLevel() == ticketLevel && ticket.getIdentifier() == ticketIdentifier, null);
2938
+ }
3039
+ // Paper end
3140
}

0 commit comments

Comments
 (0)