-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathBuilders.kt
314 lines (291 loc) · 9.18 KB
/
Builders.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/*
* Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
@file:JvmMultifileClass
@file:JvmName("FlowKt")
package kotlinx.coroutines.flow
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.*
import kotlinx.coroutines.flow.internal.*
import kotlin.coroutines.*
import kotlin.jvm.*
/**
* Creates a flow from the given suspendable [block].
*
* Example of usage:
* ```
* fun fibonacci(): Flow<Long> = flow {
* emit(1L)
* var f1 = 1L
* var f2 = 1L
* repeat(100) {
* var tmp = f1
* f1 = f2
* f2 += tmp
* emit(f1)
* }
* }
* ```
*
* `emit` should happen strictly in the dispatchers of the [block] in order to preserve the flow context.
* For example, the following code will result in an [IllegalStateException]:
* ```
* flow {
* emit(1) // Ok
* withContext(Dispatcher.IO) {
* emit(2) // Will fail with ISE
* }
* }
* ```
* If you want to switch the context of execution of a flow, use the [flowOn] operator.
*/
@FlowPreview
public fun <T> flow(@BuilderInference block: suspend FlowCollector<T>.() -> Unit): Flow<T> {
return object : Flow<T> {
override suspend fun collect(collector: FlowCollector<T>) {
SafeCollector(collector, coroutineContext).block()
}
}
}
/**
* An analogue of the [flow] builder that does not check the context of execution of the resulting flow.
* Used in our own operators where we trust the context of invocations.
*/
@FlowPreview
@PublishedApi
internal inline fun <T> unsafeFlow(@BuilderInference crossinline block: suspend FlowCollector<T>.() -> Unit): Flow<T> {
return object : Flow<T> {
override suspend fun collect(collector: FlowCollector<T>) {
collector.block()
}
}
}
/**
* Creates a flow that produces a single value from the given functional type.
*/
@FlowPreview
public fun <T> (() -> T).asFlow(): Flow<T> = unsafeFlow {
emit(invoke())
}
/**
* Creates a flow that produces a single value from the given functional type.
* Example of usage:
* ```
* suspend fun remoteCall(): R = ...
* suspend fun remoteCallFlow(): Flow<R> = ::remoteCall.asFlow()
* ```
*/
@FlowPreview
public fun <T> (suspend () -> T).asFlow(): Flow<T> = unsafeFlow {
emit(invoke())
}
/**
* Creates a flow that produces values from the given iterable.
*/
@FlowPreview
public fun <T> Iterable<T>.asFlow(): Flow<T> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates a flow that produces values from the given iterable.
*/
@FlowPreview
public fun <T> Iterator<T>.asFlow(): Flow<T> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates a flow that produces values from the given sequence.
*/
@FlowPreview
public fun <T> Sequence<T>.asFlow(): Flow<T> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates a flow that produces values from the given array of elements.
*/
@FlowPreview
public fun <T> flowOf(vararg elements: T): Flow<T> = unsafeFlow {
for (element in elements) {
emit(element)
}
}
/**
* Creates flow that produces a given [value].
*/
@FlowPreview
public fun <T> flowOf(value: T): Flow<T> = unsafeFlow {
/*
* Implementation note: this is just an "optimized" overload of flowOf(vararg)
* which significantly reduce the footprint of widespread single-value flows.
*/
emit(value)
}
/**
* Returns an empty flow.
*/
@FlowPreview
public fun <T> emptyFlow(): Flow<T> = EmptyFlow
private object EmptyFlow : Flow<Nothing> {
override suspend fun collect(collector: FlowCollector<Nothing>) = Unit
}
/**
* Creates a flow that produces values from the given array.
*/
@FlowPreview
public fun <T> Array<T>.asFlow(): Flow<T> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates flow that produces values from the given array.
*/
@FlowPreview
public fun IntArray.asFlow(): Flow<Int> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates flow that produces values from the given array.
*/
@FlowPreview
public fun LongArray.asFlow(): Flow<Long> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates flow that produces values from the given range.
*/
@FlowPreview
public fun IntRange.asFlow(): Flow<Int> = unsafeFlow {
forEach { value ->
emit(value)
}
}
/**
* Creates flow that produces values from the given range.
*/
@FlowPreview
public fun LongRange.asFlow(): Flow<Long> = flow {
forEach { value ->
emit(value)
}
}
/**
* @suppress
*/
@FlowPreview
@Deprecated(
message = "Use channelFlow instead",
level = DeprecationLevel.WARNING,
replaceWith = ReplaceWith("channelFlow(bufferSize, block)")
)
public fun <T> flowViaChannel(
bufferSize: Int = 16,
@BuilderInference block: CoroutineScope.(channel: SendChannel<T>) -> Unit
): Flow<T> {
return flow {
coroutineScope {
val channel = Channel<T>(bufferSize)
launch {
block(channel)
}
channel.consumeEach { value ->
emit(value)
}
}
}
}
/**
* Creates an instance of the cold [Flow] with elements that are sent to a [SendChannel]
* that is provided to the builder's [block] of code via [ProducerScope]. It allows elements to be
* produced by the code that is running in a different context or running concurrently.
* The resulting flow is _cold_, which means that [block] is called on each call of a terminal operator
* on the resulting flow.
*
* This builder ensures thread-safety and context preservation, thus the provided [ProducerScope] can be used concurrently from different contexts.
* The resulting flow will complete as soon as [ProducerScope], to artificially prolong it [awaitClose] can be used.
* For more detailed example please refer to [callbackFlow] documentation.
*
* To control backpressure, [bufferSize] is used and matches directly the `capacity` parameter of [Channel] factory.
* The provided channel can later be used by any external service to communicate with the flow and its buffer determines
* backpressure buffer size or its behaviour (e.g. in the case when [Channel.CONFLATED] was used).
*
* Examples of usage:
* ```
* fun <T> Flow<T>.merge(other: Flow<T>): Flow<T> = channelFlow {
* launch {
* collect { value -> send(value) }
* }
* other.collect { value -> send(value) }
* }
*
* fun <T> contextualFlow(): Flow<T> = channelFlow {
* launch(Dispatchers.IO) {
* send(computeIoValue())
* }
*
* launch(Dispatchers.Default) {
* send(computeCpuValue())
* }
* }
* ```
*/
@FlowPreview
public fun <T> channelFlow(bufferSize: Int = 16, @BuilderInference block: suspend ProducerScope<T>.() -> Unit): Flow<T> =
flow {
coroutineScope {
val channel = produce(capacity = bufferSize, block = block)
channel.consumeEach { value ->
emit(value)
}
}
}
/**
* Creates an instance of the cold [Flow] with elements that are sent to a [SendChannel]
* that is provided to the builder's [block] of code via [ProducerScope]. It allows elements to be
* produced by the code that is running in a different context or running concurrently.
*
* The resulting flow is _cold_, which means that [block] is called on each call of a terminal operator
* on the resulting flow.
*
* This builder ensures thread-safety and context preservation, thus the provided [ProducerScope] can be used from any context,
* e.g. from the callback-based API. The flow completes as soon as its scope completes, thus if you are using channel from the
* callback-based API, to artificially prolong scope lifetime and avoid memory-leaks related to unregistered resources,
* [awaitClose] extension should be used. [awaitClose] argument will be invoked when either flow consumer cancels flow collection
* or when callback-based API invokes [SendChannel.close] manually.
*
* To control backpressure, [bufferSize] is used and matches directly the `capacity` parameter of [Channel] factory.
* The provided channel can later be used by any external service to communicate with the flow and its buffer determines
* backpressure buffer size or its behaviour (e.g. in the case when [Channel.CONFLATED] was used).
*
* Example of usage:
* ```
* fun flowFrom(api: CallbackBasedApi): Flow<T> = callbackFlow {
* val callback = object : Callback { // implementation of some callback interface
* override fun onNextValue(value: T) {
* // Note: offer drops value when buffer is full
* // Channel.UNLIMITED can be used to avoid overfill
* offer(value)
* }
* override fun onApiError(cause: Throwable) {
* cancel(CancellationException("API Error", cause))
* }
* override fun onCompleted() = channel.close()
* }
* api.register(callback)
* // Suspend until either onCompleted or external cancellation are invoked
* await { api.unregister(callback) }
* }
* ```
*/
public inline fun <T> callbackFlow(bufferSize: Int = 16, @BuilderInference crossinline block: suspend ProducerScope<T>.() -> Unit): Flow<T> =
channelFlow(bufferSize) { block() }