mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 11:27:35 +01:00
Clean up add/removePluginChunkTicket
No need to be that invasive to Vanilla code for simple, non-hot and small collection checks
This commit is contained in:
parent
88b2981e09
commit
d94e258d01
@ -13,71 +13,50 @@
|
|||||||
for (ChunkHolder chunkHolder : this.chunksToUpdateFutures) {
|
for (ChunkHolder chunkHolder : this.chunksToUpdateFutures) {
|
||||||
chunkHolder.updateHighestAllowedStatus(chunkMap);
|
chunkHolder.updateHighestAllowedStatus(chunkMap);
|
||||||
}
|
}
|
||||||
@@ -143,7 +_,7 @@
|
@@ -177,16 +_,42 @@
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- void addTicket(long chunkPos, Ticket<?> ticket) {
|
|
||||||
+ boolean addTicket(long chunkPos, Ticket<?> ticket) { // CraftBukkit - void -> boolean
|
|
||||||
SortedArraySet<Ticket<?>> tickets = this.getTickets(chunkPos);
|
|
||||||
int ticketLevelAt = getTicketLevelAt(tickets);
|
|
||||||
Ticket<?> ticket1 = tickets.addOrGet(ticket);
|
|
||||||
@@ -151,11 +_,14 @@
|
|
||||||
if (ticket.getTicketLevel() < ticketLevelAt) {
|
|
||||||
this.ticketTracker.update(chunkPos, ticket.getTicketLevel(), true);
|
|
||||||
}
|
|
||||||
+ return ticket == ticket1; // CraftBukkit
|
|
||||||
}
|
|
||||||
|
|
||||||
- void removeTicket(long chunkPos, Ticket<?> ticket) {
|
|
||||||
+ boolean removeTicket(long chunkPos, Ticket<?> ticket) { // CraftBukkit - void -> boolean
|
|
||||||
SortedArraySet<Ticket<?>> tickets = this.getTickets(chunkPos);
|
|
||||||
+ boolean removed = false; // CraftBukkit
|
|
||||||
if (tickets.remove(ticket)) {
|
|
||||||
+ removed = true; // CraftBukkit
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tickets.isEmpty()) {
|
|
||||||
@@ -163,6 +_,7 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
this.ticketTracker.update(chunkPos, getTicketLevelAt(tickets), false);
|
|
||||||
+ return removed; // CraftBukkit
|
|
||||||
}
|
|
||||||
|
|
||||||
public <T> void addTicket(TicketType<T> type, ChunkPos pos, int level, T value) {
|
|
||||||
@@ -175,17 +_,29 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
public <T> void addRegionTicket(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
public <T> void addRegionTicket(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
||||||
+ // CraftBukkit start
|
|
||||||
+ this.addRegionTicketAtDistance(type, pos, distance, value);
|
|
||||||
+ }
|
|
||||||
+ public <T> boolean addRegionTicketAtDistance(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
|
||||||
+ // CraftBukkit end
|
|
||||||
Ticket<T> ticket = new Ticket<>(type, ChunkLevel.byStatus(FullChunkStatus.FULL) - distance, value);
|
Ticket<T> ticket = new Ticket<>(type, ChunkLevel.byStatus(FullChunkStatus.FULL) - distance, value);
|
||||||
long packedChunkPos = pos.toLong();
|
long packedChunkPos = pos.toLong();
|
||||||
- this.addTicket(packedChunkPos, ticket);
|
- this.addTicket(packedChunkPos, ticket);
|
||||||
+ final boolean addded = this.addTicket(packedChunkPos, ticket); // CraftBukkit
|
+ this.addTicket(packedChunkPos, ticket); // Paper - diff on change above
|
||||||
this.tickingTicketsTracker.addTicket(packedChunkPos, ticket);
|
this.tickingTicketsTracker.addTicket(packedChunkPos, ticket);
|
||||||
+ return addded; // CraftBukkit
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public <T> void removeRegionTicket(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
public <T> void removeRegionTicket(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
||||||
+ // CraftBukkit start
|
|
||||||
+ removeRegionTicketAtDistance(type, pos, distance, value);
|
|
||||||
+ }
|
|
||||||
+ public <T> boolean removeRegionTicketAtDistance(TicketType<T> type, ChunkPos pos, int distance, T value) {
|
|
||||||
+ // CraftBukkit end
|
|
||||||
Ticket<T> ticket = new Ticket<>(type, ChunkLevel.byStatus(FullChunkStatus.FULL) - distance, value);
|
Ticket<T> ticket = new Ticket<>(type, ChunkLevel.byStatus(FullChunkStatus.FULL) - distance, value);
|
||||||
long packedChunkPos = pos.toLong();
|
long packedChunkPos = pos.toLong();
|
||||||
- this.removeTicket(packedChunkPos, ticket);
|
+ this.removeTicket(packedChunkPos, ticket); // Paper - diff on change above
|
||||||
+ final boolean removed = this.removeTicket(packedChunkPos, ticket); // CraftBukkit
|
+ this.tickingTicketsTracker.removeTicket(packedChunkPos, ticket);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ // Paper start
|
||||||
|
+ public boolean addPluginRegionTicket(final ChunkPos pos, final org.bukkit.plugin.Plugin value) {
|
||||||
|
+ Ticket<org.bukkit.plugin.Plugin> ticket = new Ticket<>(TicketType.PLUGIN_TICKET, ChunkLevel.byStatus(FullChunkStatus.FULL) - 2, value); // Copied from below and keep in-line with force loading, add at level 31
|
||||||
|
+ final long packedChunkPos = pos.toLong();
|
||||||
|
+ final Set<Ticket<?>> tickets = this.getTickets(packedChunkPos);
|
||||||
|
+ if (tickets.contains(ticket)) {
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
+ this.addTicket(packedChunkPos, ticket);
|
||||||
|
+ this.tickingTicketsTracker.addTicket(packedChunkPos, ticket);
|
||||||
|
+ return true;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public boolean removePluginRegionTicket(final ChunkPos pos, final org.bukkit.plugin.Plugin value) {
|
||||||
|
+ Ticket<org.bukkit.plugin.Plugin> ticket = new Ticket<>(TicketType.PLUGIN_TICKET, ChunkLevel.byStatus(FullChunkStatus.FULL) - 2, value); // Copied from below and keep in-line with force loading, add at level 31
|
||||||
|
+ final long packedChunkPos = pos.toLong();
|
||||||
|
+ final Set<Ticket<?>> tickets = this.tickets.get(packedChunkPos); // Don't use getTickets, we don't want to create a new set
|
||||||
|
+ if (tickets == null || !tickets.contains(ticket)) {
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
this.removeTicket(packedChunkPos, ticket);
|
||||||
this.tickingTicketsTracker.removeTicket(packedChunkPos, ticket);
|
this.tickingTicketsTracker.removeTicket(packedChunkPos, ticket);
|
||||||
+ return removed; // CraftBukkit
|
+ return true;
|
||||||
}
|
}
|
||||||
|
+ // Paper end
|
||||||
|
|
||||||
private SortedArraySet<Ticket<?>> getTickets(long chunkPos) {
|
private SortedArraySet<Ticket<?>> getTickets(long chunkPos) {
|
||||||
|
return this.tickets.computeIfAbsent(chunkPos, l -> SortedArraySet.create(4));
|
||||||
@@ -217,8 +_,12 @@
|
@@ -217,8 +_,12 @@
|
||||||
ChunkPos chunkPos = sectionPos.chunk();
|
ChunkPos chunkPos = sectionPos.chunk();
|
||||||
long packedChunkPos = chunkPos.toLong();
|
long packedChunkPos = chunkPos.toLong();
|
||||||
|
@ -584,10 +584,9 @@ public class CraftWorld extends CraftRegionAccessor implements World {
|
|||||||
Preconditions.checkArgument(plugin != null, "null plugin");
|
Preconditions.checkArgument(plugin != null, "null plugin");
|
||||||
Preconditions.checkArgument(plugin.isEnabled(), "plugin is not enabled");
|
Preconditions.checkArgument(plugin.isEnabled(), "plugin is not enabled");
|
||||||
|
|
||||||
DistanceManager chunkDistanceManager = this.world.getChunkSource().chunkMap.distanceManager;
|
final DistanceManager distanceManager = this.world.getChunkSource().chunkMap.distanceManager;
|
||||||
|
if (distanceManager.addPluginRegionTicket(new ChunkPos(x, z), plugin)) {
|
||||||
if (chunkDistanceManager.addRegionTicketAtDistance(TicketType.PLUGIN_TICKET, new ChunkPos(x, z), 2, plugin)) { // keep in-line with force loading, add at level 31
|
this.getChunkAt(x, z); // ensure it's loaded
|
||||||
this.getChunkAt(x, z); // ensure loaded
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -598,8 +597,8 @@ public class CraftWorld extends CraftRegionAccessor implements World {
|
|||||||
public boolean removePluginChunkTicket(int x, int z, Plugin plugin) {
|
public boolean removePluginChunkTicket(int x, int z, Plugin plugin) {
|
||||||
Preconditions.checkNotNull(plugin, "null plugin");
|
Preconditions.checkNotNull(plugin, "null plugin");
|
||||||
|
|
||||||
DistanceManager chunkDistanceManager = this.world.getChunkSource().chunkMap.distanceManager;
|
final DistanceManager distanceManager = this.world.getChunkSource().chunkMap.distanceManager;
|
||||||
return chunkDistanceManager.removeRegionTicketAtDistance(TicketType.PLUGIN_TICKET, new ChunkPos(x, z), 2, plugin); // keep in-line with force loading, remove at level 31
|
return distanceManager.removePluginRegionTicket(new ChunkPos(x, z), plugin);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user