Rabbit-R1/android (non root)/java/sources/androidx/work/impl/WorkerWrapper.java

463 lines
21 KiB
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package androidx.work.impl;
import android.content.Context;
import androidx.work.Clock;
import androidx.work.Configuration;
import androidx.work.Data;
import androidx.work.InputMerger;
import androidx.work.ListenableWorker;
import androidx.work.Logger;
import androidx.work.WorkInfo;
import androidx.work.WorkerParameters;
import androidx.work.impl.background.systemalarm.RescheduleReceiver;
import androidx.work.impl.foreground.ForegroundProcessor;
import androidx.work.impl.model.DependencyDao;
import androidx.work.impl.model.WorkGenerationalId;
import androidx.work.impl.model.WorkSpec;
import androidx.work.impl.model.WorkSpecDao;
import androidx.work.impl.model.WorkSpecKt;
import androidx.work.impl.utils.PackageManagerHelper;
import androidx.work.impl.utils.SynchronousExecutor;
import androidx.work.impl.utils.WorkForegroundRunnable;
import androidx.work.impl.utils.WorkForegroundUpdater;
import androidx.work.impl.utils.WorkProgressUpdater;
import androidx.work.impl.utils.futures.SettableFuture;
import androidx.work.impl.utils.taskexecutor.TaskExecutor;
import com.google.common.util.concurrent.ListenableFuture;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
/* loaded from: classes2.dex */
public class WorkerWrapper implements Runnable {
static final String TAG = Logger.tagWithPrefix("WorkerWrapper");
Context mAppContext;
private Clock mClock;
private Configuration mConfiguration;
private DependencyDao mDependencyDao;
private ForegroundProcessor mForegroundProcessor;
private WorkerParameters.RuntimeExtras mRuntimeExtras;
private List<String> mTags;
private WorkDatabase mWorkDatabase;
private String mWorkDescription;
WorkSpec mWorkSpec;
private WorkSpecDao mWorkSpecDao;
private final String mWorkSpecId;
TaskExecutor mWorkTaskExecutor;
ListenableWorker mWorker;
ListenableWorker.Result mResult = ListenableWorker.Result.failure();
SettableFuture<Boolean> mFuture = SettableFuture.create();
final SettableFuture<ListenableWorker.Result> mWorkerResultFuture = SettableFuture.create();
private volatile int mInterrupted = -256;
public ListenableFuture<Boolean> getFuture() {
return this.mFuture;
}
public WorkSpec getWorkSpec() {
return this.mWorkSpec;
}
WorkerWrapper(Builder builder) {
this.mAppContext = builder.mAppContext;
this.mWorkTaskExecutor = builder.mWorkTaskExecutor;
this.mForegroundProcessor = builder.mForegroundProcessor;
WorkSpec workSpec = builder.mWorkSpec;
this.mWorkSpec = workSpec;
this.mWorkSpecId = workSpec.id;
this.mRuntimeExtras = builder.mRuntimeExtras;
this.mWorker = builder.mWorker;
this.mConfiguration = builder.mConfiguration;
this.mClock = builder.mConfiguration.getClock();
WorkDatabase workDatabase = builder.mWorkDatabase;
this.mWorkDatabase = workDatabase;
this.mWorkSpecDao = workDatabase.workSpecDao();
this.mDependencyDao = this.mWorkDatabase.dependencyDao();
this.mTags = builder.mTags;
}
public WorkGenerationalId getWorkGenerationalId() {
return WorkSpecKt.generationalId(this.mWorkSpec);
}
@Override // java.lang.Runnable
public void run() {
this.mWorkDescription = createWorkDescription(this.mTags);
runWorker();
}
private void runWorker() {
Data merge;
if (tryCheckForInterruptionAndResolve()) {
return;
}
this.mWorkDatabase.beginTransaction();
try {
if (this.mWorkSpec.state != WorkInfo.State.ENQUEUED) {
resolveIncorrectStatus();
this.mWorkDatabase.setTransactionSuccessful();
Logger.get().debug(TAG, this.mWorkSpec.workerClassName + " is not in ENQUEUED state. Nothing more to do");
return;
}
if ((this.mWorkSpec.isPeriodic() || this.mWorkSpec.isBackedOff()) && this.mClock.currentTimeMillis() < this.mWorkSpec.calculateNextRunTime()) {
Logger.get().debug(TAG, String.format("Delaying execution for %s because it is being executed before schedule.", this.mWorkSpec.workerClassName));
resolve(true);
this.mWorkDatabase.setTransactionSuccessful();
return;
}
this.mWorkDatabase.setTransactionSuccessful();
this.mWorkDatabase.endTransaction();
if (this.mWorkSpec.isPeriodic()) {
merge = this.mWorkSpec.input;
} else {
InputMerger createInputMergerWithDefaultFallback = this.mConfiguration.getInputMergerFactory().createInputMergerWithDefaultFallback(this.mWorkSpec.inputMergerClassName);
if (createInputMergerWithDefaultFallback == null) {
Logger.get().error(TAG, "Could not create Input Merger " + this.mWorkSpec.inputMergerClassName);
setFailedAndResolve();
return;
} else {
ArrayList arrayList = new ArrayList();
arrayList.add(this.mWorkSpec.input);
arrayList.addAll(this.mWorkSpecDao.getInputsFromPrerequisites(this.mWorkSpecId));
merge = createInputMergerWithDefaultFallback.merge(arrayList);
}
}
WorkerParameters workerParameters = new WorkerParameters(UUID.fromString(this.mWorkSpecId), merge, this.mTags, this.mRuntimeExtras, this.mWorkSpec.runAttemptCount, this.mWorkSpec.getGeneration(), this.mConfiguration.getExecutor(), this.mWorkTaskExecutor, this.mConfiguration.getWorkerFactory(), new WorkProgressUpdater(this.mWorkDatabase, this.mWorkTaskExecutor), new WorkForegroundUpdater(this.mWorkDatabase, this.mForegroundProcessor, this.mWorkTaskExecutor));
if (this.mWorker == null) {
this.mWorker = this.mConfiguration.getWorkerFactory().createWorkerWithDefaultFallback(this.mAppContext, this.mWorkSpec.workerClassName, workerParameters);
}
ListenableWorker listenableWorker = this.mWorker;
if (listenableWorker == null) {
Logger.get().error(TAG, "Could not create Worker " + this.mWorkSpec.workerClassName);
setFailedAndResolve();
return;
}
if (listenableWorker.isUsed()) {
Logger.get().error(TAG, "Received an already-used Worker " + this.mWorkSpec.workerClassName + "; Worker Factory should return new instances");
setFailedAndResolve();
return;
}
this.mWorker.setUsed();
if (!trySetRunning()) {
resolveIncorrectStatus();
return;
}
if (tryCheckForInterruptionAndResolve()) {
return;
}
WorkForegroundRunnable workForegroundRunnable = new WorkForegroundRunnable(this.mAppContext, this.mWorkSpec, this.mWorker, workerParameters.getForegroundUpdater(), this.mWorkTaskExecutor);
this.mWorkTaskExecutor.getMainThreadExecutor().execute(workForegroundRunnable);
final ListenableFuture<Void> future = workForegroundRunnable.getFuture();
this.mWorkerResultFuture.addListener(new Runnable() { // from class: androidx.work.impl.WorkerWrapper$$ExternalSyntheticLambda0
@Override // java.lang.Runnable
public final void run() {
WorkerWrapper.this.m5338lambda$runWorker$0$androidxworkimplWorkerWrapper(future);
}
}, new SynchronousExecutor());
future.addListener(new Runnable() { // from class: androidx.work.impl.WorkerWrapper.1
@Override // java.lang.Runnable
public void run() {
if (WorkerWrapper.this.mWorkerResultFuture.isCancelled()) {
return;
}
try {
future.get();
Logger.get().debug(WorkerWrapper.TAG, "Starting work for " + WorkerWrapper.this.mWorkSpec.workerClassName);
WorkerWrapper.this.mWorkerResultFuture.setFuture(WorkerWrapper.this.mWorker.startWork());
} catch (Throwable th) {
WorkerWrapper.this.mWorkerResultFuture.setException(th);
}
}
}, this.mWorkTaskExecutor.getMainThreadExecutor());
final String str = this.mWorkDescription;
this.mWorkerResultFuture.addListener(new Runnable() { // from class: androidx.work.impl.WorkerWrapper.2
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r5v3, types: [androidx.work.impl.WorkerWrapper] */
@Override // java.lang.Runnable
public void run() {
try {
try {
ListenableWorker.Result result = WorkerWrapper.this.mWorkerResultFuture.get();
if (result == null) {
Logger.get().error(WorkerWrapper.TAG, WorkerWrapper.this.mWorkSpec.workerClassName + " returned a null result. Treating it as a failure.");
} else {
Logger.get().debug(WorkerWrapper.TAG, WorkerWrapper.this.mWorkSpec.workerClassName + " returned a " + result + ".");
WorkerWrapper.this.mResult = result;
}
} catch (InterruptedException | ExecutionException e) {
Logger.get().error(WorkerWrapper.TAG, str + " failed because it threw an exception/error", e);
} catch (CancellationException e2) {
Logger.get().info(WorkerWrapper.TAG, str + " was cancelled", e2);
}
} finally {
WorkerWrapper.this.onWorkFinished();
}
}
}, this.mWorkTaskExecutor.getSerialTaskExecutor());
} finally {
this.mWorkDatabase.endTransaction();
}
}
/* JADX INFO: Access modifiers changed from: package-private */
/* renamed from: lambda$runWorker$0$androidx-work-impl-WorkerWrapper, reason: not valid java name */
public /* synthetic */ void m5338lambda$runWorker$0$androidxworkimplWorkerWrapper(ListenableFuture listenableFuture) {
if (this.mWorkerResultFuture.isCancelled()) {
listenableFuture.cancel(true);
}
}
void onWorkFinished() {
if (tryCheckForInterruptionAndResolve()) {
return;
}
this.mWorkDatabase.beginTransaction();
try {
WorkInfo.State state = this.mWorkSpecDao.getState(this.mWorkSpecId);
this.mWorkDatabase.workProgressDao().delete(this.mWorkSpecId);
if (state == null) {
resolve(false);
} else if (state == WorkInfo.State.RUNNING) {
handleResult(this.mResult);
} else if (!state.isFinished()) {
this.mInterrupted = WorkInfo.STOP_REASON_UNKNOWN;
rescheduleAndResolve();
}
this.mWorkDatabase.setTransactionSuccessful();
} finally {
this.mWorkDatabase.endTransaction();
}
}
public void interrupt(int stopReason) {
this.mInterrupted = stopReason;
tryCheckForInterruptionAndResolve();
this.mWorkerResultFuture.cancel(true);
if (this.mWorker != null && this.mWorkerResultFuture.isCancelled()) {
this.mWorker.stop(stopReason);
} else {
Logger.get().debug(TAG, "WorkSpec " + this.mWorkSpec + " is already done. Not interrupting.");
}
}
private void resolveIncorrectStatus() {
WorkInfo.State state = this.mWorkSpecDao.getState(this.mWorkSpecId);
if (state == WorkInfo.State.RUNNING) {
Logger.get().debug(TAG, "Status for " + this.mWorkSpecId + " is RUNNING; not doing any work and rescheduling for later execution");
resolve(true);
} else {
Logger.get().debug(TAG, "Status for " + this.mWorkSpecId + " is " + state + " ; not doing any work");
resolve(false);
}
}
private boolean tryCheckForInterruptionAndResolve() {
if (this.mInterrupted == -256) {
return false;
}
Logger.get().debug(TAG, "Work interrupted for " + this.mWorkDescription);
if (this.mWorkSpecDao.getState(this.mWorkSpecId) == null) {
resolve(false);
} else {
resolve(!r0.isFinished());
}
return true;
}
private void resolve(final boolean needsReschedule) {
this.mWorkDatabase.beginTransaction();
try {
if (!this.mWorkDatabase.workSpecDao().hasUnfinishedWork()) {
PackageManagerHelper.setComponentEnabled(this.mAppContext, RescheduleReceiver.class, false);
}
if (needsReschedule) {
this.mWorkSpecDao.setState(WorkInfo.State.ENQUEUED, this.mWorkSpecId);
this.mWorkSpecDao.setStopReason(this.mWorkSpecId, this.mInterrupted);
this.mWorkSpecDao.markWorkSpecScheduled(this.mWorkSpecId, -1L);
}
this.mWorkDatabase.setTransactionSuccessful();
this.mWorkDatabase.endTransaction();
this.mFuture.set(Boolean.valueOf(needsReschedule));
} catch (Throwable th) {
this.mWorkDatabase.endTransaction();
throw th;
}
}
private void handleResult(ListenableWorker.Result result) {
if (result instanceof ListenableWorker.Result.Success) {
Logger.get().info(TAG, "Worker result SUCCESS for " + this.mWorkDescription);
if (this.mWorkSpec.isPeriodic()) {
resetPeriodicAndResolve();
return;
} else {
setSucceededAndResolve();
return;
}
}
if (result instanceof ListenableWorker.Result.Retry) {
Logger.get().info(TAG, "Worker result RETRY for " + this.mWorkDescription);
rescheduleAndResolve();
return;
}
Logger.get().info(TAG, "Worker result FAILURE for " + this.mWorkDescription);
if (this.mWorkSpec.isPeriodic()) {
resetPeriodicAndResolve();
} else {
setFailedAndResolve();
}
}
private boolean trySetRunning() {
boolean z;
this.mWorkDatabase.beginTransaction();
try {
if (this.mWorkSpecDao.getState(this.mWorkSpecId) == WorkInfo.State.ENQUEUED) {
this.mWorkSpecDao.setState(WorkInfo.State.RUNNING, this.mWorkSpecId);
this.mWorkSpecDao.incrementWorkSpecRunAttemptCount(this.mWorkSpecId);
this.mWorkSpecDao.setStopReason(this.mWorkSpecId, -256);
z = true;
} else {
z = false;
}
this.mWorkDatabase.setTransactionSuccessful();
return z;
} finally {
this.mWorkDatabase.endTransaction();
}
}
void setFailedAndResolve() {
this.mWorkDatabase.beginTransaction();
try {
iterativelyFailWorkAndDependents(this.mWorkSpecId);
Data outputData = ((ListenableWorker.Result.Failure) this.mResult).getOutputData();
this.mWorkSpecDao.resetWorkSpecNextScheduleTimeOverride(this.mWorkSpecId, this.mWorkSpec.getNextScheduleTimeOverrideGeneration());
this.mWorkSpecDao.setOutput(this.mWorkSpecId, outputData);
this.mWorkDatabase.setTransactionSuccessful();
} finally {
this.mWorkDatabase.endTransaction();
resolve(false);
}
}
private void iterativelyFailWorkAndDependents(String workSpecId) {
LinkedList linkedList = new LinkedList();
linkedList.add(workSpecId);
while (!linkedList.isEmpty()) {
String str = (String) linkedList.remove();
if (this.mWorkSpecDao.getState(str) != WorkInfo.State.CANCELLED) {
this.mWorkSpecDao.setState(WorkInfo.State.FAILED, str);
}
linkedList.addAll(this.mDependencyDao.getDependentWorkIds(str));
}
}
private void rescheduleAndResolve() {
this.mWorkDatabase.beginTransaction();
try {
this.mWorkSpecDao.setState(WorkInfo.State.ENQUEUED, this.mWorkSpecId);
this.mWorkSpecDao.setLastEnqueueTime(this.mWorkSpecId, this.mClock.currentTimeMillis());
this.mWorkSpecDao.resetWorkSpecNextScheduleTimeOverride(this.mWorkSpecId, this.mWorkSpec.getNextScheduleTimeOverrideGeneration());
this.mWorkSpecDao.markWorkSpecScheduled(this.mWorkSpecId, -1L);
this.mWorkDatabase.setTransactionSuccessful();
} finally {
this.mWorkDatabase.endTransaction();
resolve(true);
}
}
private void resetPeriodicAndResolve() {
this.mWorkDatabase.beginTransaction();
try {
this.mWorkSpecDao.setLastEnqueueTime(this.mWorkSpecId, this.mClock.currentTimeMillis());
this.mWorkSpecDao.setState(WorkInfo.State.ENQUEUED, this.mWorkSpecId);
this.mWorkSpecDao.resetWorkSpecRunAttemptCount(this.mWorkSpecId);
this.mWorkSpecDao.resetWorkSpecNextScheduleTimeOverride(this.mWorkSpecId, this.mWorkSpec.getNextScheduleTimeOverrideGeneration());
this.mWorkSpecDao.incrementPeriodCount(this.mWorkSpecId);
this.mWorkSpecDao.markWorkSpecScheduled(this.mWorkSpecId, -1L);
this.mWorkDatabase.setTransactionSuccessful();
} finally {
this.mWorkDatabase.endTransaction();
resolve(false);
}
}
private void setSucceededAndResolve() {
this.mWorkDatabase.beginTransaction();
try {
this.mWorkSpecDao.setState(WorkInfo.State.SUCCEEDED, this.mWorkSpecId);
this.mWorkSpecDao.setOutput(this.mWorkSpecId, ((ListenableWorker.Result.Success) this.mResult).getOutputData());
long currentTimeMillis = this.mClock.currentTimeMillis();
for (String str : this.mDependencyDao.getDependentWorkIds(this.mWorkSpecId)) {
if (this.mWorkSpecDao.getState(str) == WorkInfo.State.BLOCKED && this.mDependencyDao.hasCompletedAllPrerequisites(str)) {
Logger.get().info(TAG, "Setting status to enqueued for " + str);
this.mWorkSpecDao.setState(WorkInfo.State.ENQUEUED, str);
this.mWorkSpecDao.setLastEnqueueTime(str, currentTimeMillis);
}
}
this.mWorkDatabase.setTransactionSuccessful();
} finally {
this.mWorkDatabase.endTransaction();
resolve(false);
}
}
private String createWorkDescription(List<String> tags) {
StringBuilder append = new StringBuilder("Work [ id=").append(this.mWorkSpecId).append(", tags={ ");
boolean z = true;
for (String str : tags) {
if (z) {
z = false;
} else {
append.append(", ");
}
append.append(str);
}
append.append(" } ]");
return append.toString();
}
/* loaded from: classes2.dex */
public static class Builder {
Context mAppContext;
Configuration mConfiguration;
ForegroundProcessor mForegroundProcessor;
WorkerParameters.RuntimeExtras mRuntimeExtras = new WorkerParameters.RuntimeExtras();
private final List<String> mTags;
WorkDatabase mWorkDatabase;
WorkSpec mWorkSpec;
TaskExecutor mWorkTaskExecutor;
ListenableWorker mWorker;
public Builder withRuntimeExtras(WorkerParameters.RuntimeExtras runtimeExtras) {
if (runtimeExtras != null) {
this.mRuntimeExtras = runtimeExtras;
}
return this;
}
public Builder withWorker(ListenableWorker worker) {
this.mWorker = worker;
return this;
}
public Builder(Context context, Configuration configuration, TaskExecutor workTaskExecutor, ForegroundProcessor foregroundProcessor, WorkDatabase database, WorkSpec workSpec, List<String> tags) {
this.mAppContext = context.getApplicationContext();
this.mWorkTaskExecutor = workTaskExecutor;
this.mForegroundProcessor = foregroundProcessor;
this.mConfiguration = configuration;
this.mWorkDatabase = database;
this.mWorkSpec = workSpec;
this.mTags = tags;
}
public WorkerWrapper build() {
return new WorkerWrapper(this);
}
}
}