@file:Suppress("DEPRECATION") package kotlinx.coroutines.channels import kotlinx.coroutines.* import kotlinx.coroutines.channels.Channel.Factory.CONFLATED import kotlinx.coroutines.channels.Channel.Factory.UNLIMITED import kotlinx.coroutines.intrinsics.* import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* /** * Broadcasts all elements of the channel. * This function [consumes][ReceiveChannel.consume] all elements of the original [ReceiveChannel]. * * The kind of the resulting channel depends on the specified [capacity] parameter: * when `capacity` is positive (1 by default), but less than [UNLIMITED] -- uses [BroadcastChannel] with a buffer of given capacity, * when `capacity` is [CONFLATED] -- uses [ConflatedBroadcastChannel] that conflates back-to-back sends; * Note that resulting channel behaves like [ConflatedBroadcastChannel] but is not an instance of [ConflatedBroadcastChannel]. * otherwise -- throws [IllegalArgumentException]. * * ### Cancelling broadcast * * **To stop broadcasting from the underlying channel call [cancel][BroadcastChannel.cancel] on the result.** * * Do not use [close][BroadcastChannel.close] on the resulting channel. * It causes eventual failure of the broadcast coroutine and cancellation of the underlying channel, too, * but it is not as prompt. * * ### Future replacement * * This function has an inappropriate result type of [BroadcastChannel] which provides * [send][BroadcastChannel.send] and [close][BroadcastChannel.close] operations that interfere with * the broadcasting coroutine in hard-to-specify ways. * * **Note: This API is obsolete since 1.5.0.** It is deprecated with warning in 1.7.0. * It is replaced with [Flow.shareIn][kotlinx.coroutines.flow.shareIn] operator. * * @param start coroutine start option. The default value is [CoroutineStart.LAZY]. */ @ObsoleteCoroutinesApi @Deprecated(level = DeprecationLevel.WARNING, message = "BroadcastChannel is deprecated in the favour of SharedFlow and is no longer supported") public fun ReceiveChannel.broadcast( capacity: Int = 1, start: CoroutineStart = CoroutineStart.LAZY ): BroadcastChannel { val scope = GlobalScope + Dispatchers.Unconfined + CoroutineExceptionHandler { _, _ -> } val channel = this // We can run this coroutine in the context that ignores all exceptions, because of `onCompletion = consume()` // which passes all exceptions upstream to the source ReceiveChannel return scope.broadcast(capacity = capacity, start = start, onCompletion = { cancelConsumed(it) }) { for (e in channel) { send(e) } } } /** * Launches new coroutine to produce a stream of values by sending them to a broadcast channel * and returns a reference to the coroutine as a [BroadcastChannel]. The resulting * object can be used to [subscribe][BroadcastChannel.openSubscription] to elements produced by this coroutine. * * The scope of the coroutine contains [ProducerScope] interface, which implements * both [CoroutineScope] and [SendChannel], so that coroutine can invoke * [send][SendChannel.send] directly. The channel is [closed][SendChannel.close] * when the coroutine completes. * * Coroutine context is inherited from a [CoroutineScope], additional context elements can be specified with [context] argument. * If the context does not have any dispatcher nor any other [ContinuationInterceptor], then [Dispatchers.Default] is used. * The parent job is inherited from a [CoroutineScope] as well, but it can also be overridden * with corresponding [context] element. * * Uncaught exceptions in this coroutine close the channel with this exception as a cause and * the resulting channel becomes _failed_, so that any attempt to receive from such a channel throws exception. * * The kind of the resulting channel depends on the specified [capacity] parameter: * - when `capacity` is positive (1 by default), but less than [UNLIMITED] -- uses [BroadcastChannel] with a buffer of given capacity, * - when `capacity` is [CONFLATED] -- uses [ConflatedBroadcastChannel] that conflates back-to-back sends; * Note that resulting channel behaves like [ConflatedBroadcastChannel] but is not an instance of [ConflatedBroadcastChannel]. * - otherwise -- throws [IllegalArgumentException]. * * **Note:** By default, the coroutine does not start until the first subscriber appears via [BroadcastChannel.openSubscription] * as [start] parameter has a value of [CoroutineStart.LAZY] by default. * This ensures that the first subscriber does not miss any sent elements. * However, later subscribers may miss elements. * * See [newCoroutineContext] for a description of debugging facilities that are available for newly created coroutine. * * ### Cancelling broadcast * * **To stop broadcasting from the underlying channel call [cancel][BroadcastChannel.cancel] on the result.** * * Do not use [close][BroadcastChannel.close] on the resulting channel. * It causes failure of the `send` operation in broadcast coroutine and would not cancel it if the * coroutine is doing something else. * * ### Future replacement * * This API is obsolete since 1.5.0 and deprecated with warning since 1.7.0. * This function has an inappropriate result type of [BroadcastChannel] which provides * [send][BroadcastChannel.send] and [close][BroadcastChannel.close] operations that interfere with * the broadcasting coroutine in hard-to-specify ways. * It is replaced with [Flow.shareIn][kotlinx.coroutines.flow.shareIn] operator. * * @param context additional to [CoroutineScope.coroutineContext] context of the coroutine. * @param capacity capacity of the channel's buffer (1 by default). * @param start coroutine start option. The default value is [CoroutineStart.LAZY]. * @param onCompletion optional completion handler for the producer coroutine (see [Job.invokeOnCompletion]). * @param block the coroutine code. */ @ObsoleteCoroutinesApi @Deprecated(level = DeprecationLevel.WARNING, message = "BroadcastChannel is deprecated in the favour of SharedFlow and is no longer supported") public fun CoroutineScope.broadcast( context: CoroutineContext = EmptyCoroutineContext, capacity: Int = 1, start: CoroutineStart = CoroutineStart.LAZY, onCompletion: CompletionHandler? = null, @BuilderInference block: suspend ProducerScope.() -> Unit ): BroadcastChannel { val newContext = newCoroutineContext(context) val channel = BroadcastChannel(capacity) val coroutine = if (start.isLazy) LazyBroadcastCoroutine(newContext, channel, block) else BroadcastCoroutine(newContext, channel, active = true) if (onCompletion != null) coroutine.invokeOnCompletion(handler = onCompletion) coroutine.start(start, coroutine, block) return coroutine } private open class BroadcastCoroutine( parentContext: CoroutineContext, protected val _channel: BroadcastChannel, active: Boolean ) : AbstractCoroutine(parentContext, initParentJob = false, active = active), ProducerScope, BroadcastChannel by _channel { init { initParentJob(parentContext[Job]) } override val isActive: Boolean get() = super.isActive override val channel: SendChannel get() = this @Suppress("MULTIPLE_DEFAULTS_INHERITED_FROM_SUPERTYPES_DEPRECATION_WARNING") // do not remove the MULTIPLE_DEFAULTS suppression: required in K2 @Deprecated(level = DeprecationLevel.HIDDEN, message = "Since 1.2.0, binary compatibility with versions <= 1.1.x") final override fun cancel(cause: Throwable?): Boolean { cancelInternal(cause ?: defaultCancellationException()) return true } @Suppress("MULTIPLE_DEFAULTS_INHERITED_FROM_SUPERTYPES_DEPRECATION_WARNING") // do not remove the MULTIPLE_DEFAULTS suppression: required in K2 final override fun cancel(cause: CancellationException?) { cancelInternal(cause ?: defaultCancellationException()) } override fun cancelInternal(cause: Throwable) { val exception = cause.toCancellationException() _channel.cancel(exception) // cancel the channel cancelCoroutine(exception) // cancel the job } override fun onCompleted(value: Unit) { _channel.close() } override fun onCancelled(cause: Throwable, handled: Boolean) { val processed = _channel.close(cause) if (!processed && !handled) handleCoroutineException(context, cause) } // The BroadcastChannel could be also closed override fun close(cause: Throwable?): Boolean { val result = _channel.close(cause) start() // start coroutine if it was not started yet return result } } private class LazyBroadcastCoroutine( parentContext: CoroutineContext, channel: BroadcastChannel, block: suspend ProducerScope.() -> Unit ) : BroadcastCoroutine(parentContext, channel, active = false) { private val continuation = block.createCoroutineUnintercepted(this, this) override fun openSubscription(): ReceiveChannel { // open subscription _first_ val subscription = _channel.openSubscription() // then start coroutine start() return subscription } override fun onStart() { continuation.startCoroutineCancellable(this) } }