@@ -15,10 +15,14 @@ package java.lang.ref
15
15
import scala .scalajs .js
16
16
17
17
class ReferenceQueue [T ] {
18
- import ReferenceQueue ._
19
-
20
- private [this ] var first : Node [T ] = null
21
- private [this ] var last : Node [T ] = null
18
+ /** The "enqueued" References.
19
+ *
20
+ * Despite the name, this is used more as a stack (LIFO) than as a queue
21
+ * (FIFO). The JavaDoc of `ReferenceQueue` does not actually prescribe FIFO
22
+ * ordering, and experimentation shows that the JVM implementation does not
23
+ * guarantee that ordering.
24
+ */
25
+ private [this ] val enqueuedRefs = js.Array [Reference [_ <: T ]]()
22
26
23
27
private [this ] val finalizationRegistry = {
24
28
new js.FinalizationRegistry [T , Reference [_ <: T ], Reference [_ <: T ]]({
@@ -37,31 +41,19 @@ class ReferenceQueue[T] {
37
41
false
38
42
} else {
39
43
ref.enqueued = true
40
- val newNode = new Node [T ](ref, null )
41
- if (last == null )
42
- first = newNode
43
- else
44
- last.next = newNode
45
- last = newNode
44
+ enqueuedRefs.push(ref)
46
45
true
47
46
}
48
47
}
49
48
50
49
def poll (): Reference [_ <: T ] = {
51
- val result = first
52
- if (result != null ) {
53
- first = result.next
54
- result.ref
55
- } else {
50
+ if (enqueuedRefs.length == 0 )
56
51
null
57
- }
52
+ else
53
+ enqueuedRefs.pop()
58
54
}
59
55
60
56
// Not implemented because they have a blocking contract:
61
57
// def remove(timeout: Long): Reference[_ <: T] = ???
62
58
// def remove(): Reference[_ <: T] = ???
63
59
}
64
-
65
- private object ReferenceQueue {
66
- private final class Node [T ](val ref : Reference [_ <: T ], var next : Node [T ])
67
- }
0 commit comments