Don't write partial changes to universe chunks database

This commit is contained in:
DBotThePony 2024-04-29 18:21:09 +07:00
parent dafc211c10
commit 17c9664ee9
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 8 additions and 15 deletions

View File

@ -341,7 +341,6 @@ sealed class StarboundServer(val root: File) : BlockableEventLoop("Server thread
scheduleWithFixedDelay(Runnable {
setMetadata("universe_clock", JsonPrimitive(universeClock.time))
database.commit()
universe.flush()
}, declareInterval, declareInterval, TimeUnit.NANOSECONDS)
scheduleAtFixedRate(Runnable {

View File

@ -505,7 +505,6 @@ class ServerUniverse(folder: File? = null) : Universe(), Closeable {
carrier.execute {
legacyDatabase?.close()
database.commit()
databaseCleanable.clean()
}
@ -520,12 +519,6 @@ class ServerUniverse(folder: File? = null) : Universe(), Closeable {
}
}
fun flush() {
if (!isMemory) {
database.commit()
}
}
private fun generateChunk(chunkPos: Vector2i): CompletableFuture<Chunk> {
val random = random(staticRandom64(chunkPos.x, chunkPos.y, "ChunkIndexMix"))
val region = chunkRegion(chunkPos)
@ -533,7 +526,7 @@ class ServerUniverse(folder: File? = null) : Universe(), Closeable {
return CompletableFuture.supplyAsync(Supplier {
val constellationCandidates = ArrayList<Vector2i>()
val systemPositions = ArrayList<Vector3i>()
val systems = ArrayList<CompletableFuture<*>>()
val systems = ArrayList<CompletableFuture<SerializedSystem>>()
for (x in region.mins.x until region.maxs.x) {
for (y in region.mins.y until region.maxs.y) {
@ -543,10 +536,7 @@ class ServerUniverse(folder: File? = null) : Universe(), Closeable {
val system = generateSystem(random, pos) ?: continue
systemPositions.add(pos)
systems.add(CompletableFuture.supplyAsync(Supplier { system.serialize() }, Starbound.EXECUTOR)
.thenAcceptAsync(Consumer { it.write(insertSystem) }, carrier))
systems.add(CompletableFuture.supplyAsync(Supplier { system.serialize() }, Starbound.EXECUTOR))
systemCache.put(Vector3i(system.x, system.y, system.z), CompletableFuture.completedFuture(system))
if (
@ -562,8 +552,12 @@ class ServerUniverse(folder: File? = null) : Universe(), Closeable {
val chunk = Chunk(chunkPos.x, chunkPos.y, ObjectOpenHashSet(systemPositions), ObjectOpenHashSet(generateConstellations(random, constellationCandidates)))
val serialized = chunk.serialize()
CompletableFuture.allOf(*systems.toTypedArray())
.thenApplyAsync(Function { serialized.write(insertChunk); database.commit(); chunk }, carrier)
CompletableFuture.allOf(*systems.toTypedArray()).thenApplyAsync(Function {
serialized.write(insertChunk)
systems.forEach { it.get().write(insertSystem) }
database.commit()
chunk
}, carrier)
}, Starbound.EXECUTOR).thenCompose { it }
}