mirror of https://github.com/M66B/FairEmail.git
Added cleanup worker
This commit is contained in:
parent
14cdd55c77
commit
46fec74282
|
@ -1016,7 +1016,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||||
new SimpleTask<Void>() {
|
new SimpleTask<Void>() {
|
||||||
@Override
|
@Override
|
||||||
protected Void onExecute(Context context, Bundle args) {
|
protected Void onExecute(Context context, Bundle args) {
|
||||||
JobDaily.cleanup(ActivityView.this, true);
|
WorkerCleanup.cleanup(ActivityView.this, true);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -131,7 +131,7 @@ public class ServiceSynchronize extends LifecycleService {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
JobDaily.schedule(this);
|
WorkerCleanup.queue();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -145,7 +145,7 @@ public class ServiceSynchronize extends LifecycleService {
|
||||||
|
|
||||||
Widget.update(this, -1);
|
Widget.update(this, -1);
|
||||||
|
|
||||||
JobDaily.cancel(this);
|
WorkerCleanup.cancel();
|
||||||
|
|
||||||
stopForeground(true);
|
stopForeground(true);
|
||||||
|
|
||||||
|
|
|
@ -1,30 +1,7 @@
|
||||||
package eu.faircode.email;
|
package eu.faircode.email;
|
||||||
|
|
||||||
/*
|
|
||||||
This file is part of FairEmail.
|
|
||||||
|
|
||||||
FairEmail is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
FairEmail is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
|
||||||
*/
|
|
||||||
|
|
||||||
import android.app.job.JobInfo;
|
|
||||||
import android.app.job.JobParameters;
|
|
||||||
import android.app.job.JobScheduler;
|
|
||||||
import android.app.job.JobService;
|
|
||||||
import android.content.ComponentName;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.os.Build;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -32,47 +9,30 @@ import java.util.Arrays;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.Executors;
|
|
||||||
|
|
||||||
public class JobDaily extends JobService {
|
import androidx.annotation.NonNull;
|
||||||
private ExecutorService executor = Executors.newSingleThreadExecutor(Helper.backgroundThreadFactory);
|
import androidx.work.Constraints;
|
||||||
|
import androidx.work.PeriodicWorkRequest;
|
||||||
|
import androidx.work.WorkInfo;
|
||||||
|
import androidx.work.WorkManager;
|
||||||
|
import androidx.work.Worker;
|
||||||
|
import androidx.work.WorkerParameters;
|
||||||
|
|
||||||
private static final long CLEANUP_INTERVAL = 4 * 3600 * 1000L; // milliseconds
|
public class WorkerCleanup extends Worker {
|
||||||
|
private static final int CLEANUP_INTERVAL = 4; // hours
|
||||||
private static final long CACHE_IMAGE_DURATION = 3 * 24 * 3600 * 1000L; // milliseconds
|
private static final long CACHE_IMAGE_DURATION = 3 * 24 * 3600 * 1000L; // milliseconds
|
||||||
private static final long KEEP_LOG_DURATION = 24 * 3600 * 1000L; // milliseconds
|
private static final long KEEP_LOG_DURATION = 24 * 3600 * 1000L; // milliseconds
|
||||||
|
|
||||||
public static void schedule(Context context) {
|
public WorkerCleanup(@NonNull Context context, @NonNull WorkerParameters workerParams) {
|
||||||
JobScheduler scheduler = (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
|
super(context, workerParams);
|
||||||
|
|
||||||
JobInfo.Builder job = new JobInfo.Builder(Helper.JOB_DAILY, new ComponentName(context, JobDaily.class))
|
|
||||||
.setPeriodic(CLEANUP_INTERVAL)
|
|
||||||
.setRequiresDeviceIdle(true);
|
|
||||||
|
|
||||||
if (scheduler.schedule(job.build()) == JobScheduler.RESULT_SUCCESS)
|
|
||||||
Log.i("Scheduled daily job");
|
|
||||||
else
|
|
||||||
Log.e("Scheduling daily job failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void cancel(Context context) {
|
|
||||||
JobScheduler scheduler = (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
|
|
||||||
scheduler.cancel(Helper.JOB_DAILY);
|
|
||||||
Log.i("Cancelled daily job");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
@Override
|
@Override
|
||||||
public boolean onStartJob(JobParameters args) {
|
public Result doWork() {
|
||||||
EntityLog.log(this, "Daily cleanup");
|
cleanup(getApplicationContext(), false);
|
||||||
|
return Result.success();
|
||||||
executor.submit(new Runnable() {
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
cleanup(getApplicationContext(), false);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cleanup(Context context, boolean manual) {
|
static void cleanup(Context context, boolean manual) {
|
||||||
|
@ -80,7 +40,7 @@ public class JobDaily extends JobService {
|
||||||
try {
|
try {
|
||||||
db.beginTransaction();
|
db.beginTransaction();
|
||||||
|
|
||||||
Log.i("Start daily job manual=" + manual);
|
Log.i("Start cleanup manual=" + manual);
|
||||||
|
|
||||||
// Cleanup folders
|
// Cleanup folders
|
||||||
Log.i("Cleanup kept messages");
|
Log.i("Cleanup kept messages");
|
||||||
|
@ -162,13 +122,42 @@ public class JobDaily extends JobService {
|
||||||
Log.e(ex);
|
Log.e(ex);
|
||||||
} finally {
|
} finally {
|
||||||
db.endTransaction();
|
db.endTransaction();
|
||||||
Log.i("End daily job");
|
Log.i("End cleanup");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
static void queue() {
|
||||||
public boolean onStopJob(JobParameters args) {
|
String tag = "cleanup";
|
||||||
return false;
|
Log.i("Queuing work " + tag);
|
||||||
|
|
||||||
|
try {
|
||||||
|
for (WorkInfo info : WorkManager.getInstance().getWorkInfosByTag(tag).get())
|
||||||
|
if (!info.getState().isFinished()) {
|
||||||
|
Log.i("Work already queued " + tag);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (Throwable ex) {
|
||||||
|
Log.w(ex);
|
||||||
|
}
|
||||||
|
|
||||||
|
Constraints.Builder constraints = new Constraints.Builder();
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !BuildConfig.DEBUG)
|
||||||
|
constraints.setRequiresDeviceIdle(true);
|
||||||
|
|
||||||
|
PeriodicWorkRequest workRequest =
|
||||||
|
new PeriodicWorkRequest.Builder(WorkerCleanup.class, CLEANUP_INTERVAL, TimeUnit.HOURS)
|
||||||
|
.addTag(tag)
|
||||||
|
.setConstraints(constraints.build())
|
||||||
|
.build();
|
||||||
|
WorkManager.getInstance().enqueue(workRequest);
|
||||||
|
|
||||||
|
Log.i("Queued work " + tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void cancel() {
|
||||||
|
String tag = "cleanup";
|
||||||
|
Log.i("Cancelling work " + tag);
|
||||||
|
|
||||||
|
WorkManager.getInstance().cancelAllWorkByTag(tag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue