Add debug for sync chunk loads

This patch adds a tool to find calls to getChunkAt which would load
chunks, however it must be enabled by setting the startup flag
-Dpaper.debug-sync-loads=true

- To get a debug log for sync loads, the command is
  /paper syncloadinfo
- To clear clear the currently stored sync load info, use
  /paper syncloadinfo clear
This commit is contained in:
Spottedleaf
2019-07-19 03:29:14 -07:00
parent 2ce266b657
commit f179cfaff2
5 changed files with 330 additions and 55 deletions

View File

@@ -61,7 +61,7 @@
private int lastSpawnChunkRadius;
final EntityTickList entityTickList = new EntityTickList();
public final PersistentEntitySectionManager<Entity> entityManager;
@@ -214,52 +226,194 @@
@@ -214,54 +226,203 @@
private final boolean tickTime;
private final RandomSequences randomSequences;
@@ -129,7 +129,7 @@
+ }
+ int minBlockX = Mth.floor(axisalignedbb.minX - 1.0E-7D) - 3;
+ int minBlockZ = Mth.floor(axisalignedbb.minZ - 1.0E-7D) - 3;
+
+ int maxBlockX = Mth.floor(axisalignedbb.maxX + 1.0E-7D) + 3;
+ int maxBlockZ = Mth.floor(axisalignedbb.maxZ + 1.0E-7D) + 3;
+
@@ -209,7 +209,7 @@
+ ChunkGenerator chunkgenerator = worlddimension.generator();
+ // CraftBukkit start
+ this.serverLevelData.setWorld(this);
+
+ if (biomeProvider != null) {
+ BiomeSource worldChunkManager = new CustomWorldChunkManager(this.getWorld(), biomeProvider, this.server.registryAccess().lookupOrThrow(Registries.BIOME));
+ if (chunkgenerator instanceof NoiseBasedChunkGenerator cga) {
@@ -279,8 +279,17 @@
+ this.getCraftServer().addWorld(this.getWorld()); // CraftBukkit
}
+ // Paper start
+ @Override
+ public boolean hasChunk(int chunkX, int chunkZ) {
+ return this.getChunkSource().getChunkAtIfLoadedImmediately(chunkX, chunkZ) != null;
+ }
+ // Paper end
+
/** @deprecated */
@@ -305,12 +459,20 @@
@Deprecated
@VisibleForTesting
@@ -305,12 +466,20 @@
long j;
if (this.sleepStatus.areEnoughSleeping(i) && this.sleepStatus.areEnoughDeepSleeping(i, this.players)) {
@@ -304,7 +313,7 @@
if (this.getGameRules().getBoolean(GameRules.RULE_WEATHER_CYCLE) && this.isRaining()) {
this.resetWeatherCycle();
}
@@ -345,7 +507,7 @@
@@ -345,7 +514,7 @@
this.handlingTick = false;
gameprofilerfiller.pop();
@@ -313,7 +322,7 @@
if (flag1) {
this.resetEmptyTime();
@@ -359,6 +521,7 @@
@@ -359,6 +528,7 @@
gameprofilerfiller.pop();
}
@@ -321,7 +330,7 @@
this.entityTickList.forEach((entity) -> {
if (!entity.isRemoved()) {
if (!tickratemanager.isEntityFrozen(entity)) {
@@ -429,7 +592,7 @@
@@ -429,7 +599,7 @@
private void wakeUpAllPlayers() {
this.sleepStatus.removeAllSleepers();
@@ -330,7 +339,7 @@
entityplayer.stopSleepInBed(false, false);
});
}
@@ -442,12 +605,12 @@
@@ -442,12 +612,12 @@
ProfilerFiller gameprofilerfiller = Profiler.get();
gameprofilerfiller.push("thunder");
@@ -345,7 +354,7 @@
if (flag1) {
SkeletonHorse entityhorseskeleton = (SkeletonHorse) EntityType.SKELETON_HORSE.create(this, EntitySpawnReason.EVENT);
@@ -456,7 +619,7 @@
@@ -456,7 +626,7 @@
entityhorseskeleton.setTrap(true);
entityhorseskeleton.setAge(0);
entityhorseskeleton.setPos((double) blockposition.getX(), (double) blockposition.getY(), (double) blockposition.getZ());
@@ -354,7 +363,7 @@
}
}
@@ -465,18 +628,20 @@
@@ -465,18 +635,20 @@
if (entitylightning != null) {
entitylightning.moveTo(Vec3.atBottomCenterOf(blockposition));
entitylightning.setVisualOnly(flag1);
@@ -376,7 +385,7 @@
gameprofilerfiller.popPush("tickBlocks");
if (randomTickSpeed > 0) {
@@ -521,7 +686,7 @@
@@ -521,7 +693,7 @@
Biome biomebase = (Biome) this.getBiome(blockposition1).value();
if (biomebase.shouldFreeze(this, blockposition2)) {
@@ -385,7 +394,7 @@
}
if (this.isRaining()) {
@@ -537,10 +702,10 @@
@@ -537,10 +709,10 @@
BlockState iblockdata1 = (BlockState) iblockdata.setValue(SnowLayerBlock.LAYERS, j + 1);
Block.pushEntitiesUp(iblockdata, iblockdata1, this, blockposition1);
@@ -398,7 +407,7 @@
}
}
@@ -701,33 +866,67 @@
@@ -701,33 +873,67 @@
this.rainLevel = Mth.clamp(this.rainLevel, 0.0F, 1.0F);
}
@@ -474,7 +483,7 @@
}
public void resetEmptyTime() {
@@ -754,6 +953,13 @@
@@ -754,6 +960,13 @@
}
public void tickNonPassenger(Entity entity) {
@@ -488,7 +497,7 @@
entity.setOldPosAndRot();
ProfilerFiller gameprofilerfiller = Profiler.get();
@@ -763,6 +969,7 @@
@@ -763,6 +976,7 @@
});
gameprofilerfiller.incrementCounter("tickNonPassenger");
entity.tick();
@@ -496,7 +505,7 @@
gameprofilerfiller.pop();
Iterator iterator = entity.getPassengers().iterator();
@@ -786,6 +993,7 @@
@@ -786,6 +1000,7 @@
});
gameprofilerfiller.incrementCounter("tickPassenger");
passenger.rideTick();
@@ -504,7 +513,7 @@
gameprofilerfiller.pop();
Iterator iterator = passenger.getPassengers().iterator();
@@ -810,6 +1018,7 @@
@@ -810,6 +1025,7 @@
ServerChunkCache chunkproviderserver = this.getChunkSource();
if (!savingDisabled) {
@@ -512,7 +521,7 @@
if (progressListener != null) {
progressListener.progressStartNoAbort(Component.translatable("menu.savingLevel"));
}
@@ -827,11 +1036,19 @@
@@ -827,11 +1043,19 @@
}
}
@@ -533,7 +542,7 @@
}
DimensionDataStorage worldpersistentdata = this.getChunkSource().getDataStorage();
@@ -903,18 +1120,40 @@
@@ -903,18 +1127,40 @@
@Override
public boolean addFreshEntity(Entity entity) {
@@ -577,7 +586,7 @@
}
}
@@ -939,41 +1178,93 @@
@@ -939,41 +1185,93 @@
this.entityManager.addNewEntity(player);
}
@@ -676,7 +685,7 @@
while (iterator.hasNext()) {
ServerPlayer entityplayer = (ServerPlayer) iterator.next();
@@ -982,6 +1273,12 @@
@@ -982,6 +1280,12 @@
double d1 = (double) pos.getY() - entityplayer.getY();
double d2 = (double) pos.getZ() - entityplayer.getZ();
@@ -689,7 +698,7 @@
if (d0 * d0 + d1 * d1 + d2 * d2 < 1024.0D) {
entityplayer.connection.send(new ClientboundBlockDestructionPacket(entityId, pos, progress));
}
@@ -1030,7 +1327,7 @@
@@ -1030,7 +1334,7 @@
@Override
public void levelEvent(@Nullable Player player, int eventId, BlockPos pos, int data) {
@@ -698,7 +707,7 @@
}
public int getLogicalHeight() {
@@ -1060,7 +1357,18 @@
@@ -1060,7 +1364,18 @@
Iterator iterator = this.navigatingMobs.iterator();
while (iterator.hasNext()) {
@@ -718,7 +727,7 @@
PathNavigation navigationabstract = entityinsentient.getNavigation();
if (navigationabstract.shouldRecomputePath(pos)) {
@@ -1086,11 +1394,13 @@
@@ -1086,11 +1401,13 @@
@Override
public void updateNeighborsAt(BlockPos pos, Block block) {
@@ -732,7 +741,7 @@
this.neighborUpdater.updateNeighborsAtExceptFromFacing(pos, sourceBlock, (Direction) null, orientation);
}
@@ -1126,9 +1436,20 @@
@@ -1126,9 +1443,20 @@
@Override
public void explode(@Nullable Entity entity, @Nullable DamageSource damageSource, @Nullable ExplosionDamageCalculator behavior, double x, double y, double z, float power, boolean createFire, Level.ExplosionInteraction explosionSourceType, ParticleOptions smallParticle, ParticleOptions largeParticle, Holder<SoundEvent> soundEvent) {
@@ -754,7 +763,7 @@
case NONE:
explosion_effect = Explosion.BlockInteraction.KEEP;
break;
@@ -1144,16 +1465,27 @@
@@ -1144,16 +1472,27 @@
case TRIGGER:
explosion_effect = Explosion.BlockInteraction.TRIGGER_BLOCK;
break;
@@ -785,7 +794,7 @@
Iterator iterator = this.players.iterator();
while (iterator.hasNext()) {
@@ -1162,10 +1494,11 @@
@@ -1162,10 +1501,11 @@
if (entityplayer.distanceToSqr(vec3d) < 4096.0D) {
Optional<Vec3> optional = Optional.ofNullable((Vec3) serverexplosion.getHitPlayers().get(entityplayer));
@@ -798,7 +807,7 @@
}
private Explosion.BlockInteraction getDestroyType(GameRules.Key<GameRules.BooleanValue> decayRule) {
@@ -1226,17 +1559,29 @@
@@ -1226,17 +1566,29 @@
}
public <T extends ParticleOptions> int sendParticles(T parameters, double x, double y, double z, int count, double offsetX, double offsetY, double offsetZ, double speed) {
@@ -834,7 +843,7 @@
++j;
}
}
@@ -1292,7 +1637,7 @@
@@ -1292,7 +1644,7 @@
@Nullable
public BlockPos findNearestMapStructure(TagKey<Structure> structureTag, BlockPos pos, int radius, boolean skipReferencedStructures) {
@@ -843,7 +852,7 @@
return null;
} else {
Optional<HolderSet.Named<Structure>> optional = this.registryAccess().lookupOrThrow(Registries.STRUCTURE).get(structureTag);
@@ -1334,11 +1679,22 @@
@@ -1334,11 +1686,22 @@
@Nullable
@Override
public MapItemSavedData getMapData(MapId id) {
@@ -867,7 +876,7 @@
this.getServer().overworld().getDataStorage().set(id.key(), state);
}
@@ -1649,6 +2005,11 @@
@@ -1649,6 +2012,11 @@
@Override
public void blockUpdated(BlockPos pos, Block block) {
if (!this.isDebug()) {
@@ -879,7 +888,7 @@
this.updateNeighborsAt(pos, block);
}
@@ -1668,12 +2029,12 @@
@@ -1668,12 +2036,12 @@
}
public boolean isFlat() {
@@ -894,7 +903,7 @@
}
@Nullable
@@ -1696,7 +2057,7 @@
@@ -1696,7 +2064,7 @@
private static <T> String getTypeCount(Iterable<T> items, Function<T, String> classifier) {
try {
Object2IntOpenHashMap<String> object2intopenhashmap = new Object2IntOpenHashMap();
@@ -903,7 +912,7 @@
while (iterator.hasNext()) {
T t0 = iterator.next();
@@ -1705,7 +2066,7 @@
@@ -1705,7 +2073,7 @@
object2intopenhashmap.addTo(s, 1);
}
@@ -912,7 +921,7 @@
String s1 = (String) entry.getKey();
return s1 + ":" + entry.getIntValue();
@@ -1717,6 +2078,7 @@
@@ -1717,6 +2085,7 @@
@Override
public LevelEntityGetter<Entity> getEntities() {
@@ -920,7 +929,7 @@
return this.entityManager.getEntityGetter();
}
@@ -1802,6 +2164,17 @@
@@ -1802,6 +2171,17 @@
return this.serverLevelData.getGameRules();
}
@@ -938,7 +947,7 @@
@Override
public CrashReportCategory fillReportDetails(CrashReport report) {
CrashReportCategory crashreportsystemdetails = super.fillReportDetails(report);
@@ -1836,6 +2209,7 @@
@@ -1836,6 +2216,7 @@
}
public void onTrackingStart(Entity entity) {
@@ -946,7 +955,7 @@
ServerLevel.this.getChunkSource().addEntity(entity);
if (entity instanceof ServerPlayer entityplayer) {
ServerLevel.this.players.add(entityplayer);
@@ -1864,9 +2238,52 @@
@@ -1864,9 +2245,52 @@
}
entity.updateDynamicGameEventListener(DynamicGameEventListener::add);
@@ -999,7 +1008,7 @@
ServerLevel.this.getChunkSource().removeEntity(entity);
if (entity instanceof ServerPlayer entityplayer) {
ServerLevel.this.players.remove(entityplayer);
@@ -1895,6 +2312,15 @@
@@ -1895,6 +2319,15 @@
}
entity.updateDynamicGameEventListener(DynamicGameEventListener::remove);