Fixed
Status Update
Comments
sp...@gmail.com <sp...@gmail.com> #2
Yigit, do you have time to fix it?
reemission of the same liveData is racy
reemission of the same liveData is racy
se...@google.com <se...@google.com>
la...@gmail.com <la...@gmail.com> #3
yea i'll take it.
ma...@gmail.com <ma...@gmail.com> #4
Thanks for the detailed analysis. This may not be an issue anymore since we've started using Main.immediate there but I' not sure; I'll try to create a test case.
sp...@gmail.com <sp...@gmail.com> #5
just emitting same live data reproduces the issue.
@Test
fun raceTest() {
val subLiveData = MutableLiveData(1)
val subject = liveData(testScope.coroutineContext) {
emitSource(subLiveData)
emitSource(subLiveData) //crashes
}
subject.addObserver().apply {
testScope.advanceUntilIdle()
}
}
@Test
fun raceTest() {
val subLiveData = MutableLiveData(1)
val subject = liveData(testScope.coroutineContext) {
emitSource(subLiveData)
emitSource(subLiveData) //crashes
}
subject.addObserver().apply {
testScope.advanceUntilIdle()
}
}
[Deleted User] <[Deleted User]> #6
With 2.2.0-alpha04 (that use Main.immediate), the issue seems to be still there (I tested it by calling emitSource() twice, like your test case)
ap...@google.com <ap...@google.com> #7
yea sorry immediate does not fix it.
I actually have a WIP fix for it:
https://android-review.googlesource.com/c/platform/frameworks/support/+/1112186
if your case is the one i found (emitting same LiveData multiple times, as shown in #5) you can work around it by adding a dummy transformation.
val subLiveData = MutableLiveData(1)
val subject = liveData(testScope.coroutineContext) {
emitSource(subLiveData.map {it })
emitSource(subLiveData.map {it} )
}
I actually have a WIP fix for it:
if your case is the one i found (emitting same LiveData multiple times, as shown in #5) you can work around it by adding a dummy transformation.
val subLiveData = MutableLiveData(1)
val subject = liveData(testScope.coroutineContext) {
emitSource(subLiveData.map {it })
emitSource(subLiveData.map {it} )
}
jb...@google.com <jb...@google.com> #8
Project: platform/frameworks/support
Branch: androidx-master-dev
commit af12e75e6b4110f48e44ca121466943909de8f06
Author: Yigit Boyar <yboyar@google.com>
Date: Tue Sep 03 12:58:11 2019
Fix coroutine livedata race condition
This CL fixes a bug in liveData builder where emitting same
LiveData source twice would make it crash because the second
emission registry could possibly happen before first one is
removed as source.
We fix it by using a suspending dispose function. It does feel
a bit hacky but we cannot make DisposableHandle.dispose async
and we do not want to block there. This does not mean that there
is a problem if developer disposes it manually since our emit
functions take care of making sure it disposes (and there is
no other way to add source to the underlying MediatorLiveData)
Bug: 140249349
Test: BuildLiveDataTest#raceTest_*
Change-Id: I0b464c242a583da4669af195cf2504e2adc4de40
M lifecycle/lifecycle-livedata-ktx/api/2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/current.txt
M lifecycle/lifecycle-livedata-ktx/api/public_plus_experimental_2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/public_plus_experimental_current.txt
M lifecycle/lifecycle-livedata-ktx/api/restricted_2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/restricted_current.txt
M lifecycle/lifecycle-livedata-ktx/src/main/java/androidx/lifecycle/CoroutineLiveData.kt
M lifecycle/lifecycle-livedata-ktx/src/test/java/androidx/lifecycle/BuildLiveDataTest.kt
https://android-review.googlesource.com/1112186
https://goto.google.com/android-sha1/af12e75e6b4110f48e44ca121466943909de8f06
Branch: androidx-master-dev
commit af12e75e6b4110f48e44ca121466943909de8f06
Author: Yigit Boyar <yboyar@google.com>
Date: Tue Sep 03 12:58:11 2019
Fix coroutine livedata race condition
This CL fixes a bug in liveData builder where emitting same
LiveData source twice would make it crash because the second
emission registry could possibly happen before first one is
removed as source.
We fix it by using a suspending dispose function. It does feel
a bit hacky but we cannot make DisposableHandle.dispose async
and we do not want to block there. This does not mean that there
is a problem if developer disposes it manually since our emit
functions take care of making sure it disposes (and there is
no other way to add source to the underlying MediatorLiveData)
Bug: 140249349
Test: BuildLiveDataTest#raceTest_*
Change-Id: I0b464c242a583da4669af195cf2504e2adc4de40
M lifecycle/lifecycle-livedata-ktx/api/2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/current.txt
M lifecycle/lifecycle-livedata-ktx/api/public_plus_experimental_2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/public_plus_experimental_current.txt
M lifecycle/lifecycle-livedata-ktx/api/restricted_2.2.0-alpha05.txt
M lifecycle/lifecycle-livedata-ktx/api/restricted_current.txt
M lifecycle/lifecycle-livedata-ktx/src/main/java/androidx/lifecycle/CoroutineLiveData.kt
M lifecycle/lifecycle-livedata-ktx/src/test/java/androidx/lifecycle/BuildLiveDataTest.kt
sp...@gmail.com <sp...@gmail.com> #9
Awesome! Thank you for fixing this.
jb...@google.com <jb...@google.com>
go...@gmail.com <go...@gmail.com> #10
#FLHY
n....@tinkoff.ru <n....@tinkoff.ru> #11
on 2.4.0-alpha01 androidx.lifecycle.lint.NonNullableMutableLiveDataDetector still doesn't work
Stack: ArrayIndexOutOfBoundsException:NonNullableMutableLiveDataDetector$createUastHandler$1.getFieldTypeReference(NonNullableMutableLiveDataDetector.kt:101)←NonNullableMutableLiveDataDetector$createUastHandler$1.visitClass(NonNullableMutableLiveDataDetector.kt:88)←UElementVisitor$DispatchPsiVisitor.visitClass(UElementVisitor.kt:602)←UElementVisitor$DelegatingPsiVisitor.visitClass(UElementVisitor.kt:1153)←AbstractKotlinUClass.accept(KotlinUClass.kt:63)←ImplementationUtilsKt.acceptList(implementationUtils.kt:23)←UFile$DefaultImpls.accept(UFile.kt:83)←KotlinUFile.accept(KotlinUFile.kt:30)
Stack: ArrayIndexOutOfBoundsException:NonNullableMutableLiveDataDetector$createUastHandler$1.getFieldTypeReference(NonNullableMutableLiveDataDetector.kt:101)←NonNullableMutableLiveDataDetector$createUastHandler$1.visitClass(NonNullableMutableLiveDataDetector.kt:88)←UElementVisitor$DispatchPsiVisitor.visitClass(UElementVisitor.kt:602)←UElementVisitor$DelegatingPsiVisitor.visitClass(UElementVisitor.kt:1153)←AbstractKotlinUClass.accept(KotlinUClass.kt:63)←ImplementationUtilsKt.acceptList(implementationUtils.kt:23)←UFile$DefaultImpls.accept(UFile.kt:83)←KotlinUFile.accept(KotlinUFile.kt:30)
an...@gmail.com <an...@gmail.com> #12
Please contact me
cu...@gmail.com <cu...@gmail.com> #13
2.4.0-alpha01 still give error:
val currentUserId = MutableLiveData<String>()
fun setUserID(userId: String?) {
if (userId == null) {
return
}
val check: String = userId // no error
currentUserId.value = userId // error: Expected non-nullable value
}
val currentUserId = MutableLiveData<String>()
fun setUserID(userId: String?) {
if (userId == null) {
return
}
val check: String = userId // no error
currentUserId.value = userId // error: Expected non-nullable value
}
cu...@gmail.com <cu...@gmail.com> #14
It seems fixed in 2.4.0-SNAPSHOT
jo...@gmail.com <jo...@gmail.com> #15
Is this fixed?
ya...@gmail.com <ya...@gmail.com> #16
It still seems present in 2.4.0-alpha02:
Error: Cannot set non-nullable LiveData value to null [NullSafeMutableLiveData from jetified-lifecycle-livedata-core-ktx-2.4.0-alpha02
iv...@gmail.com <iv...@gmail.com> #17
I've tested with the example above from: cu...@gmail.com<cu...@gmail.com> #13
There is a issue that is still happening on 2.4.0-alpha02 and in the snapshot version mentioned above.
There is a issue that is still happening on 2.4.0-alpha02 and in the snapshot version mentioned above.
js...@gmail.com <js...@gmail.com> #18
What exactly is this thread context for and why am I the target on the command prompt etc
sp...@gmail.com <sp...@gmail.com> #19
I think a new bug report should be created for
ad...@ade.se <ad...@ade.se> #20
Here's a separate issue for the problem in
Description
Component used:
Version used: 2.2.0 and 2.3.0-alpha07
Devices/Android versions reproduced on: N/A
ViewModels with more than one MutableLiveData get their nullability wrong.
Example:
This gives the error
Error: Cannot set non-nullable LiveData value to null [NullSafeMutableLiveData]