Files
rr3-apk/decompiled-community/sources/kotlinx/coroutines/UndispatchedCoroutine.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

86 lines
3.8 KiB
Java

package kotlinx.coroutines;
import kotlin.Pair;
import kotlin.TuplesKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
import kotlinx.coroutines.internal.ScopeCoroutine;
import kotlinx.coroutines.internal.ThreadContextKt;
/* loaded from: classes5.dex */
public final class UndispatchedCoroutine extends ScopeCoroutine {
private volatile boolean threadLocalIsSet;
public final ThreadLocal threadStateToRecover;
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public UndispatchedCoroutine(kotlin.coroutines.CoroutineContext r3, kotlin.coroutines.Continuation r4) {
/*
r2 = this;
kotlinx.coroutines.UndispatchedMarker r0 = kotlinx.coroutines.UndispatchedMarker.INSTANCE
kotlin.coroutines.CoroutineContext$Element r1 = r3.get(r0)
if (r1 != 0) goto Ld
kotlin.coroutines.CoroutineContext r0 = r3.plus(r0)
goto Le
Ld:
r0 = r3
Le:
r2.<init>(r0, r4)
java.lang.ThreadLocal r0 = new java.lang.ThreadLocal
r0.<init>()
r2.threadStateToRecover = r0
kotlin.coroutines.CoroutineContext r4 = r4.getContext()
kotlin.coroutines.ContinuationInterceptor$Key r0 = kotlin.coroutines.ContinuationInterceptor.Key
kotlin.coroutines.CoroutineContext$Element r4 = r4.get(r0)
boolean r4 = r4 instanceof kotlinx.coroutines.CoroutineDispatcher
if (r4 != 0) goto L31
r4 = 0
java.lang.Object r4 = kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(r3, r4)
kotlinx.coroutines.internal.ThreadContextKt.restoreThreadContext(r3, r4)
r2.saveThreadContext(r3, r4)
L31:
return
*/
throw new UnsupportedOperationException("Method not decompiled: kotlinx.coroutines.UndispatchedCoroutine.<init>(kotlin.coroutines.CoroutineContext, kotlin.coroutines.Continuation):void");
}
public final void saveThreadContext(CoroutineContext coroutineContext, Object obj) {
this.threadLocalIsSet = true;
this.threadStateToRecover.set(TuplesKt.to(coroutineContext, obj));
}
public final boolean clearThreadContext() {
boolean z = this.threadLocalIsSet && this.threadStateToRecover.get() == null;
this.threadStateToRecover.remove();
return !z;
}
@Override // kotlinx.coroutines.internal.ScopeCoroutine, kotlinx.coroutines.AbstractCoroutine
public void afterResume(Object obj) {
if (this.threadLocalIsSet) {
Pair pair = (Pair) this.threadStateToRecover.get();
if (pair != null) {
ThreadContextKt.restoreThreadContext((CoroutineContext) pair.component1(), pair.component2());
}
this.threadStateToRecover.remove();
}
Object recoverResult = CompletionStateKt.recoverResult(obj, this.uCont);
Continuation continuation = this.uCont;
CoroutineContext context = continuation.getContext();
Object updateThreadContext = ThreadContextKt.updateThreadContext(context, null);
UndispatchedCoroutine updateUndispatchedCompletion = updateThreadContext != ThreadContextKt.NO_THREAD_ELEMENTS ? CoroutineContextKt.updateUndispatchedCompletion(continuation, context, updateThreadContext) : null;
try {
this.uCont.resumeWith(recoverResult);
Unit unit = Unit.INSTANCE;
} finally {
if (updateUndispatchedCompletion == null || updateUndispatchedCompletion.clearThreadContext()) {
ThreadContextKt.restoreThreadContext(context, updateThreadContext);
}
}
}
}