Rabbit-R1/android (non root)/java/sources/kotlinx/coroutines/CompletionStateKt.java

60 lines
4.3 KiB
Java
Raw Permalink Normal View History

2024-05-21 16:08:36 -05:00
package kotlinx.coroutines;
import androidx.exifinterface.media.ExifInterface;
import io.sentry.protocol.SentryThread;
import kotlin.Metadata;
import kotlin.Result;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.jvm.internal.CoroutineStackFrame;
import kotlin.jvm.functions.Function1;
import kotlinx.coroutines.internal.StackTraceRecoveryKt;
/* compiled from: CompletionState.kt */
@Metadata(d1 = {"\u00008\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0010\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\u001a4\u0010\u0000\u001a\b\u0012\u0004\u0012\u0002H\u00020\u0001\"\u0004\b\u0000\u0010\u00022\b\u0010\u0003\u001a\u0004\u0018\u00010\u00042\f\u0010\u0005\u001a\b\u0012\u0004\u0012\u0002H\u00020\u0006H\u0000ø\u0001\u0000¢\u0006\u0002\u0010\u0007\u001aI\u0010\b\u001a\u0004\u0018\u00010\u0004\"\u0004\b\u0000\u0010\u0002*\b\u0012\u0004\u0012\u0002H\u00020\u00012%\b\u0002\u0010\t\u001a\u001f\u0012\u0013\u0012\u00110\u000b¢\u0006\f\b\f\u0012\b\b\r\u0012\u0004\b\b(\u000e\u0012\u0004\u0012\u00020\u000f\u0018\u00010\nH\u0000ø\u0001\u0000¢\u0006\u0002\u0010\u0010\u001a.\u0010\b\u001a\u0004\u0018\u00010\u0004\"\u0004\b\u0000\u0010\u0002*\b\u0012\u0004\u0012\u0002H\u00020\u00012\n\u0010\u0011\u001a\u0006\u0012\u0002\b\u00030\u0012H\u0000ø\u0001\u0000¢\u0006\u0002\u0010\u0013\u0082\u0002\u0004\n\u0002\b\u0019¨\u0006\u0014"}, d2 = {"recoverResult", "Lkotlin/Result;", ExifInterface.GPS_DIRECTION_TRUE, SentryThread.JsonKeys.STATE, "", "uCont", "Lkotlin/coroutines/Continuation;", "(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "toState", "onCancellation", "Lkotlin/Function1;", "", "Lkotlin/ParameterName;", "name", "cause", "", "(Ljava/lang/Object;Lkotlin/jvm/functions/Function1;)Ljava/lang/Object;", "caller", "Lkotlinx/coroutines/CancellableContinuation;", "(Ljava/lang/Object;Lkotlinx/coroutines/CancellableContinuation;)Ljava/lang/Object;", "kotlinx-coroutines-core"}, k = 2, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes3.dex */
public final class CompletionStateKt {
public static /* synthetic */ Object toState$default(Object obj, Function1 function1, int i, Object obj2) {
if ((i & 1) != 0) {
function1 = null;
}
return toState(obj, (Function1<? super Throwable, Unit>) function1);
}
public static final <T> Object toState(Object obj, Function1<? super Throwable, Unit> function1) {
Throwable m5701exceptionOrNullimpl = Result.m5701exceptionOrNullimpl(obj);
if (m5701exceptionOrNullimpl == null) {
return function1 != null ? new CompletedWithCancellation(obj, function1) : obj;
}
return new CompletedExceptionally(m5701exceptionOrNullimpl, false, 2, null);
}
public static final <T> Object toState(Object obj, CancellableContinuation<?> cancellableContinuation) {
Throwable m5701exceptionOrNullimpl = Result.m5701exceptionOrNullimpl(obj);
if (m5701exceptionOrNullimpl != null) {
if (DebugKt.getRECOVER_STACK_TRACES()) {
CancellableContinuation<?> cancellableContinuation2 = cancellableContinuation;
if (cancellableContinuation2 instanceof CoroutineStackFrame) {
m5701exceptionOrNullimpl = StackTraceRecoveryKt.recoverFromStackFrame(m5701exceptionOrNullimpl, (CoroutineStackFrame) cancellableContinuation2);
}
}
obj = new CompletedExceptionally(m5701exceptionOrNullimpl, false, 2, null);
}
return obj;
}
public static final <T> Object recoverResult(Object obj, Continuation<? super T> continuation) {
if (obj instanceof CompletedExceptionally) {
Result.Companion companion = Result.INSTANCE;
Throwable th = ((CompletedExceptionally) obj).cause;
if (DebugKt.getRECOVER_STACK_TRACES() && (continuation instanceof CoroutineStackFrame)) {
th = StackTraceRecoveryKt.recoverFromStackFrame(th, (CoroutineStackFrame) continuation);
}
return Result.m5698constructorimpl(ResultKt.createFailure(th));
}
Result.Companion companion2 = Result.INSTANCE;
return Result.m5698constructorimpl(obj);
}
}