package androidx.room; import java.util.concurrent.CancellationException; import java.util.concurrent.atomic.AtomicInteger; import kotlin.Metadata; import kotlin.coroutines.ContinuationInterceptor; import kotlin.coroutines.CoroutineContext; import kotlin.jvm.functions.Function2; import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.jvm.internal.Intrinsics; import kotlinx.coroutines.Job; /* compiled from: RoomDatabaseExt.kt */ @Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0002\b\u0003\b\u0001\u0018\u0000 \u00122\u00020\u0001:\u0001\u0012B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006J\u0006\u0010\u000f\u001a\u00020\u0010J\u0006\u0010\u0011\u001a\u00020\u0010R\u001a\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00000\b8VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\t\u0010\nR\u000e\u0010\u000b\u001a\u00020\fX\u0082\u0004¢\u0006\u0002\n\u0000R\u0014\u0010\u0004\u001a\u00020\u0005X\u0080\u0004¢\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000eR\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u0013"}, d2 = {"Landroidx/room/TransactionElement;", "Lkotlin/coroutines/CoroutineContext$Element;", "transactionThreadControlJob", "Lkotlinx/coroutines/Job;", "transactionDispatcher", "Lkotlin/coroutines/ContinuationInterceptor;", "(Lkotlinx/coroutines/Job;Lkotlin/coroutines/ContinuationInterceptor;)V", "key", "Lkotlin/coroutines/CoroutineContext$Key;", "getKey", "()Lkotlin/coroutines/CoroutineContext$Key;", "referenceCount", "Ljava/util/concurrent/atomic/AtomicInteger;", "getTransactionDispatcher$room_ktx_release", "()Lkotlin/coroutines/ContinuationInterceptor;", "acquire", "", "release", "Key", "room-ktx_release"}, k = 1, mv = {1, 7, 1}, xi = 48) /* loaded from: classes2.dex */ public final class TransactionElement implements CoroutineContext.Element { /* renamed from: Key, reason: from kotlin metadata */ public static final Companion INSTANCE = new Companion(null); private final AtomicInteger referenceCount; private final ContinuationInterceptor transactionDispatcher; private final Job transactionThreadControlJob; /* renamed from: getTransactionDispatcher$room_ktx_release, reason: from getter */ public final ContinuationInterceptor getTransactionDispatcher() { return this.transactionDispatcher; } public TransactionElement(Job transactionThreadControlJob, ContinuationInterceptor transactionDispatcher) { Intrinsics.checkNotNullParameter(transactionThreadControlJob, "transactionThreadControlJob"); Intrinsics.checkNotNullParameter(transactionDispatcher, "transactionDispatcher"); this.transactionThreadControlJob = transactionThreadControlJob; this.transactionDispatcher = transactionDispatcher; this.referenceCount = new AtomicInteger(0); } @Override // kotlin.coroutines.CoroutineContext.Element, kotlin.coroutines.CoroutineContext public R fold(R r, Function2 function2) { return (R) CoroutineContext.Element.DefaultImpls.fold(this, r, function2); } @Override // kotlin.coroutines.CoroutineContext.Element, kotlin.coroutines.CoroutineContext public E get(CoroutineContext.Key key) { return (E) CoroutineContext.Element.DefaultImpls.get(this, key); } @Override // kotlin.coroutines.CoroutineContext.Element, kotlin.coroutines.CoroutineContext public CoroutineContext minusKey(CoroutineContext.Key key) { return CoroutineContext.Element.DefaultImpls.minusKey(this, key); } @Override // kotlin.coroutines.CoroutineContext public CoroutineContext plus(CoroutineContext coroutineContext) { return CoroutineContext.Element.DefaultImpls.plus(this, coroutineContext); } /* compiled from: RoomDatabaseExt.kt */ @Metadata(d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0003¨\u0006\u0004"}, d2 = {"Landroidx/room/TransactionElement$Key;", "Lkotlin/coroutines/CoroutineContext$Key;", "Landroidx/room/TransactionElement;", "()V", "room-ktx_release"}, k = 1, mv = {1, 7, 1}, xi = 48) /* renamed from: androidx.room.TransactionElement$Key, reason: from kotlin metadata */ /* loaded from: classes2.dex */ public static final class Companion implements CoroutineContext.Key { public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) { this(); } private Companion() { } } @Override // kotlin.coroutines.CoroutineContext.Element public CoroutineContext.Key getKey() { return INSTANCE; } public final void acquire() { this.referenceCount.incrementAndGet(); } public final void release() { int decrementAndGet = this.referenceCount.decrementAndGet(); if (decrementAndGet < 0) { throw new IllegalStateException("Transaction was never started or was already released."); } if (decrementAndGet == 0) { Job.DefaultImpls.cancel$default(this.transactionThreadControlJob, (CancellationException) null, 1, (Object) null); } } }