@@ -3,6 +3,7 @@ package net.rsprox.proxy.http
3
3
import java.net.HttpURLConnection
4
4
import java.net.URL
5
5
import java.util.concurrent.ForkJoinPool
6
+ import java.util.concurrent.ForkJoinTask
6
7
import kotlin.random.Random
7
8
import kotlin.random.nextInt
8
9
import kotlin.time.Duration.Companion.minutes
@@ -11,13 +12,22 @@ import kotlin.time.TimeSource
11
12
public class GamePackProvider {
12
13
private var lastFetchTime = TimeSource .Monotonic .markNow()
13
14
private var lastPayload: ByteArray? = null
15
+ private var currentTask: ForkJoinTask <* >? = null
14
16
15
17
internal fun prefetch (await : Boolean = false) {
16
18
val lastPayload = this .lastPayload
17
19
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
+ }
18
28
this .lastFetchTime = TimeSource .Monotonic .markNow()
19
29
if (await) {
20
- ForkJoinPool .commonPool().submit { fetch() }
30
+ currentTask = ForkJoinPool .commonPool().submit { fetch() }
21
31
} else {
22
32
fetch()
23
33
}
@@ -30,6 +40,7 @@ public class GamePackProvider {
30
40
val con = forwarded.openConnection() as HttpURLConnection
31
41
con.requestMethod = " GET"
32
42
this .lastPayload = con.inputStream.readAllBytes()
43
+ this .currentTask = null
33
44
}
34
45
35
46
internal fun get (): ByteArray {
0 commit comments