jvmMain.internal.ThreadSafeHeap.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core Show documentation
Show all versions of kotlinx-coroutines-core Show documentation
Coroutines support libraries for Kotlin
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.internal
import kotlinx.coroutines.*
import java.util.*
/**
* @suppress **This an internal API and should not be used from general code.**
*/
@InternalCoroutinesApi
public interface ThreadSafeHeapNode {
public var heap: ThreadSafeHeap<*>?
public var index: Int
}
/**
* Synchronized binary heap.
* @suppress **This an internal API and should not be used from general code.**
*/
@InternalCoroutinesApi
public class ThreadSafeHeap : SynchronizedObject() where T: ThreadSafeHeapNode, T: Comparable {
private var a: Array? = null
@JvmField @Volatile
public var size = 0
public val isEmpty: Boolean get() = size == 0
@Synchronized
public fun clear() {
Arrays.fill(a, 0, size, null)
size = 0
}
@Synchronized
public fun peek(): T? = firstImpl()
@Synchronized
public fun removeFirstOrNull(): T? =
if (size > 0) {
removeAtImpl(0)
} else {
null
}
// @Synchronized // NOTE! NOTE! NOTE! inline fun cannot be @Synchronized
public inline fun removeFirstIf(predicate: (T) -> Boolean): T? = synchronized(this) {
val first = firstImpl() ?: return null
if (predicate(first)) {
removeAtImpl(0)
} else {
null
}
}
@Synchronized
public fun addLast(node: T) = addImpl(node)
// @Synchronized // NOTE! NOTE! NOTE! inline fun cannot be @Synchronized
public inline fun addLastIf(node: T, cond: () -> Boolean): Boolean = synchronized(this) {
if (cond()) {
addImpl(node)
true
} else {
false
}
}
@Synchronized
public fun remove(node: T): Boolean {
return if (node.heap == null) {
false
} else {
val index = node.index
check(index >= 0)
removeAtImpl(index)
true
}
}
@PublishedApi
internal fun firstImpl(): T? = a?.get(0)
@PublishedApi
internal fun removeAtImpl(index: Int): T {
check(size > 0)
val a = this.a!!
size--
if (index < size) {
swap(index, size)
val j = (index - 1) / 2
if (index > 0 && a[index]!! < a[j]!!) {
swap(index, j)
siftUpFrom(j)
} else {
siftDownFrom(index)
}
}
val result = a[size]!!
check(result.heap === this)
result.heap = null
result.index = -1
a[size] = null
return result
}
@PublishedApi
internal fun addImpl(node: T) {
check(node.heap == null)
node.heap = this
val a = realloc()
val i = size++
a[i] = node
node.index = i
siftUpFrom(i)
}
private tailrec fun siftUpFrom(i: Int) {
if (i <= 0) return
val a = a!!
val j = (i - 1) / 2
if (a[j]!! <= a[i]!!) return
swap(i, j)
siftUpFrom(j)
}
private tailrec fun siftDownFrom(i: Int) {
var j = 2 * i + 1
if (j >= size) return
val a = a!!
if (j + 1 < size && a[j + 1]!! < a[j]!!) j++
if (a[i]!! <= a[j]!!) return
swap(i, j)
siftDownFrom(j)
}
@Suppress("UNCHECKED_CAST")
private fun realloc(): Array {
val a = this.a
return when {
a == null -> (arrayOfNulls(4) as Array).also { this.a = it }
size >= a.size -> a.copyOf(size * 2).also { this.a = it }
else -> a
}
}
private fun swap(i: Int, j: Int) {
val a = a!!
val ni = a[j]!!
val nj = a[i]!!
a[i] = ni
a[j] = nj
ni.index = i
nj.index = j
}
}