Skip to content

Commit 8ed0ffd

Browse files
committedOct 20, 2024
fix: wait for the old gamepack task to finish before submitting new
1 parent fb5a6b4 commit 8ed0ffd

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed
 

‎proxy/src/main/kotlin/net/rsprox/proxy/http/GamePackProvider.kt

+12-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package net.rsprox.proxy.http
33
import java.net.HttpURLConnection
44
import java.net.URL
55
import java.util.concurrent.ForkJoinPool
6+
import java.util.concurrent.ForkJoinTask
67
import kotlin.random.Random
78
import kotlin.random.nextInt
89
import kotlin.time.Duration.Companion.minutes
@@ -11,13 +12,22 @@ import kotlin.time.TimeSource
1112
public class GamePackProvider {
1213
private var lastFetchTime = TimeSource.Monotonic.markNow()
1314
private var lastPayload: ByteArray? = null
15+
private var currentTask: ForkJoinTask<*>? = null
1416

1517
internal fun prefetch(await: Boolean = false) {
1618
val lastPayload = this.lastPayload
1719
if (lastPayload == null || lastFetchTime <= TimeSource.Monotonic.markNow().minus(5.minutes)) {
20+
val task = currentTask
21+
// Wait for the old task to finish
22+
if (task != null) {
23+
if (!await) {
24+
task.get()
25+
}
26+
return
27+
}
1828
this.lastFetchTime = TimeSource.Monotonic.markNow()
1929
if (await) {
20-
ForkJoinPool.commonPool().submit { fetch() }
30+
currentTask = ForkJoinPool.commonPool().submit { fetch() }
2131
} else {
2232
fetch()
2333
}
@@ -30,6 +40,7 @@ public class GamePackProvider {
3040
val con = forwarded.openConnection() as HttpURLConnection
3141
con.requestMethod = "GET"
3242
this.lastPayload = con.inputStream.readAllBytes()
43+
this.currentTask = null
3344
}
3445

3546
internal fun get(): ByteArray {

0 commit comments

Comments
 (0)