ускоряем чтение индексов pak вдвое

This commit is contained in:
DBotThePony 2023-02-05 11:13:25 +07:00
parent af7ff24320
commit 6e248d5fcf
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -194,6 +194,7 @@ class StarboundPak(val path: File, callback: (finished: Boolean, status: String)
// long (offset от начала файла)
// long (длина файла)
val stream = DataInputStream(BufferedInputStream(Channels.newInputStream(reader.channel), 2 shl 22))
val flength = reader.length()
for (i in 0 until indexNodeCount) {
var name: String? = null
@ -207,11 +208,11 @@ class StarboundPak(val path: File, callback: (finished: Boolean, status: String)
val offset = stream.readLong()
val length = stream.readLong()
if (offset > reader.length()) {
if (offset > flength) {
throw IndexOutOfBoundsException("Garbage offset at index $i: ${offset}")
}
if (length + offset > reader.length()) {
if (length + offset > flength) {
throw IndexOutOfBoundsException("Garbage offset + length at index $i: ${length + offset}")
}