- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
126 lines
7.4 KiB
Java
126 lines
7.4 KiB
Java
package androidx.work.impl.utils;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.work.Configuration;
|
|
import androidx.work.Constraints;
|
|
import androidx.work.Data;
|
|
import androidx.work.WorkRequest;
|
|
import androidx.work.impl.Scheduler;
|
|
import androidx.work.impl.WorkContinuationImpl;
|
|
import androidx.work.impl.WorkDatabase;
|
|
import androidx.work.impl.model.WorkSpec;
|
|
import androidx.work.impl.workers.ConstraintTrackingWorker;
|
|
import androidx.work.impl.workers.ConstraintTrackingWorkerKt;
|
|
import java.util.Collection;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import kotlin.collections.CollectionsKt__CollectionsKt;
|
|
import kotlin.collections.CollectionsKt__MutableCollectionsKt;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
|
|
@SourceDebugExtension({"SMAP\nEnqueueUtils.kt\nKotlin\n*S Kotlin\n*F\n+ 1 EnqueueUtils.kt\nandroidx/work/impl/utils/EnqueueUtilsKt\n+ 2 _Collections.kt\nkotlin/collections/CollectionsKt___CollectionsKt\n+ 3 fake.kt\nkotlin/jvm/internal/FakeKt\n+ 4 Data_.kt\nandroidx/work/Data\n*L\n1#1,168:1\n1774#2,4:169\n1747#2,3:177\n1#3:173\n229#4:174\n229#4:175\n229#4:176\n*S KotlinDebug\n*F\n+ 1 EnqueueUtils.kt\nandroidx/work/impl/utils/EnqueueUtilsKt\n*L\n45#1:169,4\n140#1:177,3\n71#1:174\n72#1:175\n73#1:176\n*E\n"})
|
|
/* loaded from: classes.dex */
|
|
public final class EnqueueUtilsKt {
|
|
public static final String ARGUMENT_REMOTE_LISTENABLE_WORKER_NAME = "androidx.work.multiprocess.RemoteListenableDelegatingWorker.ARGUMENT_REMOTE_LISTENABLE_WORKER_NAME";
|
|
public static final String ARGUMENT_SERVICE_CLASS_NAME = "androidx.work.impl.workers.RemoteListenableWorker.ARGUMENT_CLASS_NAME";
|
|
public static final String ARGUMENT_SERVICE_PACKAGE_NAME = "androidx.work.impl.workers.RemoteListenableWorker.ARGUMENT_PACKAGE_NAME";
|
|
public static final String REMOTE_DELEGATING_LISTENABLE_WORKER_CLASS_NAME = "androidx.work.multiprocess.RemoteListenableDelegatingWorker";
|
|
|
|
public static final void checkContentUriTriggerWorkerLimits(WorkDatabase workDatabase, Configuration configuration, WorkContinuationImpl continuation) {
|
|
List mutableListOf;
|
|
Object removeLast;
|
|
int i;
|
|
Intrinsics.checkNotNullParameter(workDatabase, "workDatabase");
|
|
Intrinsics.checkNotNullParameter(configuration, "configuration");
|
|
Intrinsics.checkNotNullParameter(continuation, "continuation");
|
|
mutableListOf = CollectionsKt__CollectionsKt.mutableListOf(continuation);
|
|
int i2 = 0;
|
|
while (!mutableListOf.isEmpty()) {
|
|
removeLast = CollectionsKt__MutableCollectionsKt.removeLast(mutableListOf);
|
|
WorkContinuationImpl workContinuationImpl = (WorkContinuationImpl) removeLast;
|
|
List<? extends WorkRequest> work = workContinuationImpl.getWork();
|
|
Intrinsics.checkNotNullExpressionValue(work, "current.work");
|
|
List<? extends WorkRequest> list = work;
|
|
if ((list instanceof Collection) && list.isEmpty()) {
|
|
i = 0;
|
|
} else {
|
|
Iterator<T> it = list.iterator();
|
|
i = 0;
|
|
while (it.hasNext()) {
|
|
if (((WorkRequest) it.next()).getWorkSpec().constraints.hasContentUriTriggers() && (i = i + 1) < 0) {
|
|
CollectionsKt__CollectionsKt.throwCountOverflow();
|
|
}
|
|
}
|
|
}
|
|
i2 += i;
|
|
List<WorkContinuationImpl> parents = workContinuationImpl.getParents();
|
|
if (parents != null) {
|
|
mutableListOf.addAll(parents);
|
|
}
|
|
}
|
|
if (i2 == 0) {
|
|
return;
|
|
}
|
|
int countNonFinishedContentUriTriggerWorkers = workDatabase.workSpecDao().countNonFinishedContentUriTriggerWorkers();
|
|
int contentUriTriggerWorkersLimit = configuration.getContentUriTriggerWorkersLimit();
|
|
if (countNonFinishedContentUriTriggerWorkers + i2 <= contentUriTriggerWorkersLimit) {
|
|
return;
|
|
}
|
|
throw new IllegalArgumentException("Too many workers with contentUriTriggers are enqueued:\ncontentUriTrigger workers limit: " + contentUriTriggerWorkersLimit + ";\nalready enqueued count: " + countNonFinishedContentUriTriggerWorkers + ";\ncurrent enqueue operation count: " + i2 + ".\nTo address this issue you can: \n1. enqueue less workers or batch some of workers with content uri triggers together;\n2. increase limit via Configuration.Builder.setContentUriTriggerWorkersLimit;\nPlease beware that workers with content uri triggers immediately occupy slots in JobScheduler so no updates to content uris are missed.");
|
|
}
|
|
|
|
@VisibleForTesting
|
|
public static final WorkSpec tryDelegateRemoteListenableWorker(WorkSpec workSpec) {
|
|
Intrinsics.checkNotNullParameter(workSpec, "workSpec");
|
|
boolean hasKeyWithValueOfType = workSpec.input.hasKeyWithValueOfType(ARGUMENT_REMOTE_LISTENABLE_WORKER_NAME, String.class);
|
|
boolean hasKeyWithValueOfType2 = workSpec.input.hasKeyWithValueOfType(ARGUMENT_SERVICE_PACKAGE_NAME, String.class);
|
|
boolean hasKeyWithValueOfType3 = workSpec.input.hasKeyWithValueOfType(ARGUMENT_SERVICE_CLASS_NAME, String.class);
|
|
if (hasKeyWithValueOfType || !hasKeyWithValueOfType2 || !hasKeyWithValueOfType3) {
|
|
return workSpec;
|
|
}
|
|
return WorkSpec.copy$default(workSpec, null, null, REMOTE_DELEGATING_LISTENABLE_WORKER_CLASS_NAME, null, new Data.Builder().putAll(workSpec.input).putString(ARGUMENT_REMOTE_LISTENABLE_WORKER_NAME, workSpec.workerClassName).build(), null, 0L, 0L, 0L, null, 0, null, 0L, 0L, 0L, 0L, false, null, 0, 0, 0L, 0, 0, null, 16777195, null);
|
|
}
|
|
|
|
public static final WorkSpec tryDelegateConstrainedWorkSpec(WorkSpec workSpec) {
|
|
Intrinsics.checkNotNullParameter(workSpec, "workSpec");
|
|
Constraints constraints = workSpec.constraints;
|
|
String str = workSpec.workerClassName;
|
|
if (Intrinsics.areEqual(str, ConstraintTrackingWorker.class.getName())) {
|
|
return workSpec;
|
|
}
|
|
if (!constraints.requiresBatteryNotLow() && !constraints.requiresStorageNotLow()) {
|
|
return workSpec;
|
|
}
|
|
Data build = new Data.Builder().putAll(workSpec.input).putString(ConstraintTrackingWorkerKt.ARGUMENT_CLASS_NAME, str).build();
|
|
String name = ConstraintTrackingWorker.class.getName();
|
|
Intrinsics.checkNotNullExpressionValue(name, "name");
|
|
return WorkSpec.copy$default(workSpec, null, null, name, null, build, null, 0L, 0L, 0L, null, 0, null, 0L, 0L, 0L, 0L, false, null, 0, 0, 0L, 0, 0, null, 16777195, null);
|
|
}
|
|
|
|
public static final WorkSpec wrapWorkSpecIfNeeded(List<? extends Scheduler> schedulers, WorkSpec workSpec) {
|
|
Intrinsics.checkNotNullParameter(schedulers, "schedulers");
|
|
Intrinsics.checkNotNullParameter(workSpec, "workSpec");
|
|
return tryDelegateRemoteListenableWorker(workSpec);
|
|
}
|
|
|
|
private static final boolean usesScheduler(List<? extends Scheduler> list, String str) {
|
|
try {
|
|
Class<?> cls = Class.forName(str);
|
|
List<? extends Scheduler> list2 = list;
|
|
if ((list2 instanceof Collection) && list2.isEmpty()) {
|
|
return false;
|
|
}
|
|
Iterator<T> it = list2.iterator();
|
|
while (it.hasNext()) {
|
|
if (cls.isAssignableFrom(((Scheduler) it.next()).getClass())) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
} catch (ClassNotFoundException unused) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|