Skip to content

Commit 24ed82f

Browse files
committed
Make RibEvents buffer size configurable
1 parent 08b95b6 commit 24ed82f

File tree

2 files changed

+97
-6
lines changed

2 files changed

+97
-6
lines changed

android/libraries/rib-base/src/main/kotlin/com/uber/rib/core/RibEvents.kt

+38-6
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,52 @@ import io.reactivex.Observable
2020
import kotlinx.coroutines.channels.BufferOverflow
2121
import kotlinx.coroutines.channels.Channel
2222
import kotlinx.coroutines.flow.MutableSharedFlow
23+
import kotlinx.coroutines.flow.SharedFlow
24+
import kotlinx.coroutines.flow.asSharedFlow
2325
import kotlinx.coroutines.rx2.asObservable
2426

2527
public object RibEvents {
28+
private var extraBufferCapacity: Int = Channel.UNLIMITED
2629

27-
private val mutableRouterEvents =
28-
MutableSharedFlow<RibRouterEvent>(0, Channel.UNLIMITED, BufferOverflow.DROP_OLDEST)
29-
private val mutableRibDurationEvents =
30-
MutableSharedFlow<RibActionInfo>(0, Channel.UNLIMITED, BufferOverflow.DROP_OLDEST)
30+
/**
31+
* Sets the extra buffer capacity for [routerEventsFlow] and [ribActionEventsFlow].
32+
*
33+
* This function must be called on the main thread, and before any usage of:
34+
* 1. [routerEventsFlow]
35+
* 2. [routerEvents]
36+
* 3. [ribActionEventsFlow]
37+
* 4. [ribActionEvents]
38+
*/
39+
@JvmStatic
40+
public fun setExtraBufferCapacity(capacity: Int) {
41+
extraBufferCapacity = capacity
42+
}
43+
44+
private val mutableRouterEvents by lazy {
45+
MutableSharedFlow<RibRouterEvent>(0, extraBufferCapacity, BufferOverflow.DROP_OLDEST)
46+
}
47+
48+
private val mutableRibDurationEvents by lazy {
49+
MutableSharedFlow<RibActionInfo>(0, extraBufferCapacity, BufferOverflow.DROP_OLDEST)
50+
}
51+
52+
@JvmStatic
53+
public val routerEventsFlow: SharedFlow<RibRouterEvent> by lazy {
54+
mutableRouterEvents.asSharedFlow()
55+
}
3156

3257
@JvmStatic
33-
public val routerEvents: Observable<RibRouterEvent> = mutableRouterEvents.asObservable()
58+
public val routerEvents: Observable<RibRouterEvent> by lazy { mutableRouterEvents.asObservable() }
3459

3560
@JvmStatic
36-
public val ribActionEvents: Observable<RibActionInfo> = mutableRibDurationEvents.asObservable()
61+
public val ribActionEventsFlow: SharedFlow<RibActionInfo> by lazy {
62+
mutableRibDurationEvents.asSharedFlow()
63+
}
64+
65+
@JvmStatic
66+
public val ribActionEvents: Observable<RibActionInfo> by lazy {
67+
mutableRibDurationEvents.asObservable()
68+
}
3769

3870
/** Indicates if [ribActionEvents] will be emitting. */
3971
public var areRibActionEmissionsAllowed: Boolean = false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
/*
2+
* Copyright (C) 2024. Uber Technologies
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+
package com.uber.rib.core
17+
18+
import com.google.common.truth.Truth.assertThat
19+
import kotlinx.coroutines.ExperimentalCoroutinesApi
20+
import kotlinx.coroutines.channels.Channel
21+
import kotlinx.coroutines.launch
22+
import kotlinx.coroutines.test.runCurrent
23+
import kotlinx.coroutines.test.runTest
24+
import org.junit.After
25+
import org.junit.Before
26+
import org.junit.Ignore
27+
import org.junit.Test
28+
import org.mockito.kotlin.mock
29+
30+
@OptIn(ExperimentalCoroutinesApi::class)
31+
@Ignore(
32+
"""
33+
Test only passes when running in isolation: RibEvents flows might've been accessed
34+
when running full suite.
35+
""",
36+
)
37+
class RibEventsTest {
38+
private val extraBufferCapacity = 16
39+
40+
@Before
41+
fun setUp() {
42+
RibEvents.setExtraBufferCapacity(extraBufferCapacity)
43+
}
44+
45+
@After
46+
fun tearDown() {
47+
RibEvents.setExtraBufferCapacity(Channel.UNLIMITED)
48+
}
49+
50+
@Test
51+
fun setExtraBufferCapacityTest() = runTest {
52+
val results = mutableListOf<RibRouterEvent>()
53+
backgroundScope.launch { RibEvents.routerEventsFlow.collect(results::add) }
54+
runCurrent()
55+
repeat(32) { RibEvents.emitRouterEvent(RibEventType.ATTACHED, mock(), mock()) }
56+
runCurrent()
57+
assertThat(results.size).isEqualTo(16)
58+
}
59+
}

0 commit comments

Comments
 (0)