package androidx.work.impl; import android.content.Context; import androidx.work.Clock; import androidx.work.Configuration; import androidx.work.Logger; import androidx.work.impl.background.systemjob.SystemJobScheduler; import androidx.work.impl.background.systemjob.SystemJobService; import androidx.work.impl.model.WorkGenerationalId; import androidx.work.impl.model.WorkSpec; import androidx.work.impl.model.WorkSpecDao; import androidx.work.impl.utils.PackageManagerHelper; import java.util.Iterator; import java.util.List; import java.util.concurrent.Executor; /* loaded from: classes2.dex */ public class Schedulers { public static final String GCM_SCHEDULER = "androidx.work.impl.background.gcm.GcmScheduler"; private static final String TAG = Logger.tagWithPrefix("Schedulers"); public static void registerRescheduling(final List schedulers, Processor processor, final Executor executor, final WorkDatabase workDatabase, final Configuration configuration) { processor.addExecutionListener(new ExecutionListener() { // from class: androidx.work.impl.Schedulers$$ExternalSyntheticLambda1 @Override // androidx.work.impl.ExecutionListener public final void onExecuted(WorkGenerationalId workGenerationalId, boolean z) { executor.execute(new Runnable() { // from class: androidx.work.impl.Schedulers$$ExternalSyntheticLambda0 @Override // java.lang.Runnable public final void run() { Schedulers.lambda$registerRescheduling$0(r1, workGenerationalId, r3, r4); } }); } }); } /* JADX INFO: Access modifiers changed from: package-private */ public static /* synthetic */ void lambda$registerRescheduling$0(List list, WorkGenerationalId workGenerationalId, Configuration configuration, WorkDatabase workDatabase) { Iterator it = list.iterator(); while (it.hasNext()) { ((Scheduler) it.next()).cancel(workGenerationalId.getWorkSpecId()); } schedule(configuration, workDatabase, list); } public static void schedule(Configuration configuration, WorkDatabase workDatabase, List schedulers) { if (schedulers == null || schedulers.size() == 0) { return; } WorkSpecDao workSpecDao = workDatabase.workSpecDao(); workDatabase.beginTransaction(); try { List eligibleWorkForSchedulingWithContentUris = workSpecDao.getEligibleWorkForSchedulingWithContentUris(); markScheduled(workSpecDao, configuration.getClock(), eligibleWorkForSchedulingWithContentUris); List eligibleWorkForScheduling = workSpecDao.getEligibleWorkForScheduling(configuration.getMaxSchedulerLimit()); markScheduled(workSpecDao, configuration.getClock(), eligibleWorkForScheduling); if (eligibleWorkForSchedulingWithContentUris != null) { eligibleWorkForScheduling.addAll(eligibleWorkForSchedulingWithContentUris); } List allEligibleWorkSpecsForScheduling = workSpecDao.getAllEligibleWorkSpecsForScheduling(200); workDatabase.setTransactionSuccessful(); workDatabase.endTransaction(); if (eligibleWorkForScheduling.size() > 0) { WorkSpec[] workSpecArr = (WorkSpec[]) eligibleWorkForScheduling.toArray(new WorkSpec[eligibleWorkForScheduling.size()]); for (Scheduler scheduler : schedulers) { if (scheduler.hasLimitedSchedulingSlots()) { scheduler.schedule(workSpecArr); } } } if (allEligibleWorkSpecsForScheduling.size() > 0) { WorkSpec[] workSpecArr2 = (WorkSpec[]) allEligibleWorkSpecsForScheduling.toArray(new WorkSpec[allEligibleWorkSpecsForScheduling.size()]); for (Scheduler scheduler2 : schedulers) { if (!scheduler2.hasLimitedSchedulingSlots()) { scheduler2.schedule(workSpecArr2); } } } } catch (Throwable th) { workDatabase.endTransaction(); throw th; } } /* JADX INFO: Access modifiers changed from: package-private */ public static Scheduler createBestAvailableBackgroundScheduler(Context context, WorkDatabase workDatabase, Configuration configuration) { SystemJobScheduler systemJobScheduler = new SystemJobScheduler(context, workDatabase, configuration); PackageManagerHelper.setComponentEnabled(context, SystemJobService.class, true); Logger.get().debug(TAG, "Created SystemJobScheduler and enabled SystemJobService"); return systemJobScheduler; } private static Scheduler tryCreateGcmBasedScheduler(Context context, Clock clock) { try { Scheduler scheduler = (Scheduler) Class.forName(GCM_SCHEDULER).getConstructor(Context.class, Clock.class).newInstance(context, clock); Logger.get().debug(TAG, "Created androidx.work.impl.background.gcm.GcmScheduler"); return scheduler; } catch (Throwable th) { Logger.get().debug(TAG, "Unable to create GCM Scheduler", th); return null; } } private Schedulers() { } private static void markScheduled(WorkSpecDao dao, Clock clock, List workSpecs) { if (workSpecs.size() > 0) { long currentTimeMillis = clock.currentTimeMillis(); Iterator it = workSpecs.iterator(); while (it.hasNext()) { dao.markWorkSpecScheduled(it.next().id, currentTimeMillis); } } } }