Roman Elizarov | f16fd27 | 2017-02-07 11:26:00 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016-2017 JetBrains s.r.o. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 17 | package kotlinx.coroutines.experimental |
| 18 | |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 19 | import kotlinx.coroutines.experimental.intrinsics.startUndispatchedCoroutine |
| 20 | import kotlinx.coroutines.experimental.selects.SelectBuilder |
| 21 | import kotlinx.coroutines.experimental.selects.SelectInstance |
Roman Elizarov | ea4a51b | 2017-01-31 12:01:25 +0300 | [diff] [blame] | 22 | import kotlin.coroutines.experimental.CoroutineContext |
| 23 | import kotlin.coroutines.experimental.startCoroutine |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 24 | |
| 25 | /** |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 26 | * Deferred value is a non-blocking cancellable future. |
| 27 | * It is created with [async] coroutine builder. |
Roman Elizarov | 41c5c8b | 2017-01-25 13:37:15 +0300 | [diff] [blame] | 28 | * It is in [active][isActive] state while the value is being computed. |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 29 | * |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 30 | * Deferred value has four or five possible states. |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 31 | * |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 32 | * | **State** | [isActive] | [isCompleted] | [isCompletedExceptionally] | [isCancelled] | |
Roman Elizarov | 7886ef6 | 2017-02-13 14:00:18 +0300 | [diff] [blame] | 33 | * | -------------------------------- | ---------- | ------------- | -------------------------- | ------------- | |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 34 | * | _New_ (optional initial state) | `false` | `false` | `false` | `false` | |
| 35 | * | _Active_ (default initial state) | `true` | `false` | `false` | `false` | |
| 36 | * | _Resolved_ (final state) | `false` | `true` | `false` | `false` | |
| 37 | * | _Failed_ (final state) | `false` | `true` | `true` | `false` | |
| 38 | * | _Cancelled_ (final state) | `false` | `true` | `true` | `true` | |
| 39 | * |
| 40 | * Usually, a deferred value is created in _active_ state (it is created and started), so its only visible |
| 41 | * states are _active_ and _completed_ (_resolved_, _failed_, or _cancelled_) state. |
| 42 | * However, [async] coroutine builder has an optional `start` parameter that creates a deferred value in _new_ state |
| 43 | * when this parameter is set to `false`. |
| 44 | * Such a deferred can be be made _active_ by invoking [start], [join], or [await]. |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 45 | */ |
| 46 | public interface Deferred<out T> : Job { |
| 47 | /** |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 48 | * Returns `true` if computation of this deferred value has _completed exceptionally_ -- it had |
| 49 | * either _failed_ with exception during computation or was [cancelled][cancel]. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 50 | * |
| 51 | * It implies that [isActive] is `false` and [isCompleted] is `true`. |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 52 | */ |
| 53 | val isCompletedExceptionally: Boolean |
| 54 | |
| 55 | /** |
| 56 | * Returns `true` if computation of this deferred value was [cancelled][cancel]. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 57 | * |
| 58 | * It implies that [isActive] is `false`, [isCompleted] is `true`, and [isCompletedExceptionally] is `true`. |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 59 | */ |
| 60 | val isCancelled: Boolean |
| 61 | |
| 62 | /** |
Roman Elizarov | be4cae3 | 2017-02-15 17:57:02 +0300 | [diff] [blame] | 63 | * Awaits for completion of this value without blocking a thread and resumes when deferred computation is complete, |
| 64 | * returning the resulting value or throwing the corresponding exception if the deferred had completed exceptionally. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 65 | * |
Roman Elizarov | be4cae3 | 2017-02-15 17:57:02 +0300 | [diff] [blame] | 66 | * This suspending function is cancellable. |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 67 | * If the [Job] of the current coroutine is completed while this suspending function is waiting, this function |
Roman Elizarov | c581454 | 2017-01-19 10:19:06 +0300 | [diff] [blame] | 68 | * immediately resumes with [CancellationException]. |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 69 | */ |
| 70 | public suspend fun await(): T |
Roman Elizarov | c581454 | 2017-01-19 10:19:06 +0300 | [diff] [blame] | 71 | |
| 72 | /** |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 73 | * Registers [onAwait][SelectBuilder.onAwait] select clause. |
| 74 | * @suppress **This is unstable API and it is subject to change.** |
| 75 | */ |
| 76 | public fun <R> registerSelectAwait(select: SelectInstance<R>, block: suspend (T) -> R) |
| 77 | |
| 78 | /** |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 79 | * Returns *completed* result or throws [IllegalStateException] if this deferred value has not |
| 80 | * [completed][isCompleted] yet. It throws the corresponding exception if this deferred has |
| 81 | * [completed exceptionally][isCompletedExceptionally]. |
| 82 | * |
Roman Elizarov | e780347 | 2017-02-16 09:52:31 +0300 | [diff] [blame] | 83 | * This function is designed to be used from [invokeOnCompletion] handlers, when there is an absolute certainty that |
Roman Elizarov | c581454 | 2017-01-19 10:19:06 +0300 | [diff] [blame] | 84 | * the value is already complete. |
| 85 | */ |
| 86 | public fun getCompleted(): T |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 87 | |
| 88 | /** |
Roman Elizarov | fc7a9a2 | 2017-02-13 11:54:01 +0300 | [diff] [blame] | 89 | * @suppress **Deprecated**: Use `isActive`. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 90 | */ |
| 91 | @Deprecated(message = "Use `isActive`", replaceWith = ReplaceWith("isActive")) |
| 92 | public val isComputing: Boolean get() = isActive |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /** |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 96 | * Creates new coroutine and returns its future result as an implementation of [Deferred]. |
Roman Elizarov | 44ba4b1 | 2017-01-25 11:37:54 +0300 | [diff] [blame] | 97 | * |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 98 | * The running coroutine is cancelled when the resulting object is [cancelled][Job.cancel]. |
Roman Elizarov | 44ba4b1 | 2017-01-25 11:37:54 +0300 | [diff] [blame] | 99 | * The [context] for the new coroutine must be explicitly specified. |
Roman Elizarov | ed7b864 | 2017-01-19 11:22:28 +0300 | [diff] [blame] | 100 | * See [CoroutineDispatcher] for the standard [context] implementations that are provided by `kotlinx.coroutines`. |
Roman Elizarov | 44ba4b1 | 2017-01-25 11:37:54 +0300 | [diff] [blame] | 101 | * The [context][CoroutineScope.context] of the parent coroutine from its [scope][CoroutineScope] may be used, |
| 102 | * in which case the [Job] of the resulting coroutine is a child of the job of the parent coroutine. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 103 | * |
| 104 | * An optional [start] parameter can be set to `false` to start coroutine _lazily_. When `start = false`, |
| 105 | * the resulting [Deferred] is created in _new_ state. It can be explicitly started with [start][Job.start] |
| 106 | * function and will be started implicitly on the first invocation of [join][Job.join] or [await][Deferred.await]. |
| 107 | * |
| 108 | * By default, the coroutine is immediately started. Set an optional [start] parameters to `false` |
| 109 | * to create coroutine without starting it. In this case it will be _lazy_ and will start |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 110 | */ |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 111 | public fun <T> async(context: CoroutineContext, start: Boolean = true, block: suspend CoroutineScope.() -> T) : Deferred<T> { |
| 112 | val newContext = newCoroutineContext(context) |
| 113 | val coroutine = if (start) |
| 114 | DeferredCoroutine<T>(newContext, active = true) else |
| 115 | LazyDeferredCoroutine(newContext, block) |
| 116 | coroutine.initParentJob(context[Job]) |
| 117 | if (start) block.startCoroutine(coroutine, coroutine) |
| 118 | return coroutine |
| 119 | } |
| 120 | |
| 121 | /** |
Roman Elizarov | fc7a9a2 | 2017-02-13 11:54:01 +0300 | [diff] [blame] | 122 | * @suppress **Deprecated**: `defer` was renamed to `async`. |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 123 | */ |
| 124 | @Deprecated(message = "`defer` was renamed to `async`", level = DeprecationLevel.WARNING, |
| 125 | replaceWith = ReplaceWith("async(context, block = block)")) |
Roman Elizarov | d528e3e | 2017-01-23 15:40:05 +0300 | [diff] [blame] | 126 | public fun <T> defer(context: CoroutineContext, block: suspend CoroutineScope.() -> T) : Deferred<T> = |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 127 | async(context, block = block) |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 128 | |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 129 | private open class DeferredCoroutine<T>( |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 130 | override val parentContext: CoroutineContext, |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 131 | active: Boolean |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 132 | ) : AbstractCoroutine<T>(active), Deferred<T> { |
Roman Elizarov | ee7c0eb | 2017-02-16 15:29:28 +0300 | [diff] [blame] | 133 | override val isCompletedExceptionally: Boolean get() = state is CompletedExceptionally |
| 134 | override val isCancelled: Boolean get() = state is Cancelled |
Roman Elizarov | b7c46de | 2017-02-08 12:35:24 +0300 | [diff] [blame] | 135 | |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 136 | @Suppress("UNCHECKED_CAST") |
| 137 | suspend override fun await(): T { |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 138 | // fast-path -- check state (avoid extra object creation) |
| 139 | while(true) { // lock-free loop on state |
Roman Elizarov | ee7c0eb | 2017-02-16 15:29:28 +0300 | [diff] [blame] | 140 | val state = this.state |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 141 | if (state !is Incomplete) { |
| 142 | // already complete -- just return result |
Roman Elizarov | 41c5c8b | 2017-01-25 13:37:15 +0300 | [diff] [blame] | 143 | if (state is CompletedExceptionally) throw state.exception |
| 144 | return state as T |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 145 | |
Roman Elizarov | 41c5c8b | 2017-01-25 13:37:15 +0300 | [diff] [blame] | 146 | } |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 147 | if (startInternal(state) >= 0) break // break unless needs to retry |
Roman Elizarov | 41c5c8b | 2017-01-25 13:37:15 +0300 | [diff] [blame] | 148 | } |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 149 | return awaitSuspend() // slow-path |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | @Suppress("UNCHECKED_CAST") |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 153 | private suspend fun awaitSuspend(): T = suspendCancellableCoroutine { cont -> |
Roman Elizarov | e780347 | 2017-02-16 09:52:31 +0300 | [diff] [blame] | 154 | cont.unregisterOnCompletion(invokeOnCompletion { |
Roman Elizarov | ee7c0eb | 2017-02-16 15:29:28 +0300 | [diff] [blame] | 155 | val state = this.state |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 156 | check(state !is Incomplete) |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 157 | if (state is CompletedExceptionally) |
| 158 | cont.resumeWithException(state.exception) |
| 159 | else |
| 160 | cont.resume(state as T) |
| 161 | }) |
| 162 | } |
| 163 | |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 164 | override fun <R> registerSelectAwait(select: SelectInstance<R>, block: suspend (T) -> R) { |
| 165 | if (select.isSelected) return |
| 166 | val state = this.state |
| 167 | if (state is Incomplete) { |
| 168 | select.unregisterOnCompletion(invokeOnCompletion(SelectOnCompletion(this, select, block))) |
| 169 | } else |
| 170 | selectCompletion(select, block, state) |
| 171 | } |
| 172 | |
| 173 | @Suppress("UNCHECKED_CAST") |
| 174 | internal fun <R> selectCompletion(select: SelectInstance<R>, block: suspend (T) -> R, state: Any? = this.state) { |
| 175 | if (select.trySelect(idempotent = null)) { |
| 176 | if (state is CompletedExceptionally) |
| 177 | select.resumeSelectWithException(state.exception) |
| 178 | else |
| 179 | block.startUndispatchedCoroutine(state as T, select.completion) |
| 180 | } |
| 181 | } |
| 182 | |
Roman Elizarov | c581454 | 2017-01-19 10:19:06 +0300 | [diff] [blame] | 183 | @Suppress("UNCHECKED_CAST") |
| 184 | override fun getCompleted(): T { |
Roman Elizarov | ee7c0eb | 2017-02-16 15:29:28 +0300 | [diff] [blame] | 185 | val state = this.state |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 186 | check(state !is Incomplete) { "This deferred value has not completed yet" } |
Roman Elizarov | c581454 | 2017-01-19 10:19:06 +0300 | [diff] [blame] | 187 | if (state is CompletedExceptionally) throw state.exception |
| 188 | return state as T |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 189 | } |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 190 | } |
| 191 | |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 192 | private class SelectOnCompletion<T, R>( |
| 193 | deferred: DeferredCoroutine<T>, |
| 194 | private val select: SelectInstance<R>, |
| 195 | private val block: suspend (T) -> R |
| 196 | ) : JobNode<DeferredCoroutine<T>>(deferred) { |
| 197 | override fun invoke(reason: Throwable?) = job.selectCompletion(select, block) |
| 198 | override fun toString(): String = "SelectOnCompletion[$select]" |
| 199 | } |
| 200 | |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 201 | private class LazyDeferredCoroutine<T>( |
Roman Elizarov | 1216e91 | 2017-02-22 09:57:06 +0300 | [diff] [blame] | 202 | parentContext: CoroutineContext, |
| 203 | private val block: suspend CoroutineScope.() -> T |
| 204 | ) : DeferredCoroutine<T>(parentContext, active = false) { |
Roman Elizarov | 32d9532 | 2017-02-09 15:57:31 +0300 | [diff] [blame] | 205 | override fun onStart() { |
| 206 | block.startCoroutine(this, this) |
| 207 | } |
Roman Elizarov | 3754f95 | 2017-01-18 20:47:54 +0300 | [diff] [blame] | 208 | } |