FairEmail/app/src/main/java/eu/faircode/email/ServiceSynchronize.java

1714 lines
82 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
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.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
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
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
2020-01-05 17:32:53 +00:00
Copyright 2018-2020 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-10-09 19:39:25 +00:00
import android.app.AlarmManager;
2018-08-02 13:33:06 +00:00
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
2018-09-14 13:31:00 +00:00
import android.content.SharedPreferences;
2018-08-02 13:33:06 +00:00
import android.net.ConnectivityManager;
import android.net.Network;
import android.net.NetworkCapabilities;
import android.net.NetworkInfo;
2018-08-02 13:33:06 +00:00
import android.net.NetworkRequest;
import android.os.Build;
2019-12-09 21:26:29 +00:00
import android.os.Bundle;
2018-12-02 13:19:54 +00:00
import android.os.Handler;
2018-10-08 06:18:44 +00:00
import android.os.PowerManager;
import android.service.notification.StatusBarNotification;
import android.text.TextUtils;
2018-08-02 13:33:06 +00:00
import androidx.annotation.NonNull;
2019-07-08 17:23:07 +00:00
import androidx.core.app.AlarmManagerCompat;
import androidx.core.app.NotificationCompat;
import androidx.core.content.ContextCompat;
2019-12-06 15:00:11 +00:00
import androidx.lifecycle.MediatorLiveData;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.Observer;
import androidx.preference.PreferenceManager;
2018-08-02 13:33:06 +00:00
import com.sun.mail.imap.IMAPFolder;
2020-01-07 16:43:27 +00:00
import com.sun.mail.imap.IMAPStore;
2019-02-27 15:05:15 +00:00
import java.io.IOException;
import java.text.DateFormat;
2018-08-02 13:33:06 +00:00
import java.util.ArrayList;
import java.util.Arrays;
2018-08-02 13:33:06 +00:00
import java.util.Calendar;
2019-05-21 13:21:03 +00:00
import java.util.Collections;
import java.util.Comparator;
2018-08-02 13:33:06 +00:00
import java.util.Date;
2018-08-04 22:35:47 +00:00
import java.util.HashMap;
import java.util.Hashtable;
2018-08-02 13:33:06 +00:00
import java.util.List;
2018-08-04 22:35:47 +00:00
import java.util.Map;
import java.util.Objects;
2018-08-02 13:33:06 +00:00
import java.util.concurrent.ExecutorService;
2019-06-23 18:56:07 +00:00
import javax.mail.AuthenticationFailedException;
2018-08-02 13:33:06 +00:00
import javax.mail.Folder;
2018-08-02 15:25:01 +00:00
import javax.mail.FolderClosedException;
2019-05-25 14:45:46 +00:00
import javax.mail.FolderNotFoundException;
2018-08-02 13:33:06 +00:00
import javax.mail.Message;
import javax.mail.MessagingException;
2018-08-15 19:34:22 +00:00
import javax.mail.NoSuchProviderException;
2020-01-07 16:43:27 +00:00
import javax.mail.Quota;
2019-04-29 19:54:49 +00:00
import javax.mail.ReadOnlyFolderException;
2018-09-03 16:34:38 +00:00
import javax.mail.StoreClosedException;
2018-08-02 13:33:06 +00:00
import javax.mail.event.FolderAdapter;
import javax.mail.event.FolderEvent;
import javax.mail.event.MessageChangedEvent;
import javax.mail.event.MessageChangedListener;
import javax.mail.event.MessageCountAdapter;
import javax.mail.event.MessageCountEvent;
import javax.mail.event.StoreEvent;
import javax.mail.event.StoreListener;
2019-02-27 15:05:15 +00:00
import me.leolin.shortcutbadger.ShortcutBadger;
2018-08-19 07:21:39 +00:00
import static android.os.Process.THREAD_PRIORITY_BACKGROUND;
public class ServiceSynchronize extends ServiceBase implements SharedPreferences.OnSharedPreferenceChangeListener {
2020-01-12 18:28:19 +00:00
private Integer lastStartId = null;
2019-12-07 21:06:40 +00:00
private Boolean lastSuitable = null;
2019-12-12 08:19:30 +00:00
private long lastLost = 0;
2019-12-07 21:06:40 +00:00
private int lastAccounts = 0;
private int lastOperations = 0;
2019-02-28 07:55:08 +00:00
2019-12-12 07:51:48 +00:00
private Map<Long, Core.State> coreStates = new Hashtable<>();
2019-12-12 07:56:57 +00:00
private MutableLiveData<ConnectionHelper.NetworkState> liveNetworkState = new MutableLiveData<>();
private MutableLiveData<List<TupleAccountState>> liveAccountState = new MutableLiveData<>();
private MediatorState liveAccountNetworkState = new MediatorState();
2019-12-12 07:51:48 +00:00
2019-12-12 08:53:06 +00:00
private static final long YIELD_DURATION = 200L; // milliseconds
2020-01-12 15:16:50 +00:00
private static final long QUIT_DELAY = 10 * 1000L; // milliseconds
private static final int CONNECT_BACKOFF_START = 8; // seconds
2018-11-08 12:47:34 +00:00
private static final int CONNECT_BACKOFF_MAX = 64; // seconds (totally 2 minutes)
2018-11-08 17:16:32 +00:00
private static final int CONNECT_BACKOFF_AlARM = 15; // minutes
2019-12-12 08:19:30 +00:00
private static final long RECONNECT_BACKOFF = 90 * 1000L; // milliseconds
2019-04-25 13:21:32 +00:00
private static final int ACCOUNT_ERROR_AFTER = 60; // minutes
private static final int BACKOFF_ERROR_AFTER = 16; // seconds
private static final List<String> PREF_EVAL = Collections.unmodifiableList(Arrays.asList(
2019-12-10 10:09:36 +00:00
"enabled", "poll_interval" // restart account(s)
));
private static final List<String> PREF_RELOAD = Collections.unmodifiableList(Arrays.asList(
2019-12-07 19:32:58 +00:00
"metered", "roaming", "rlah", // force reconnect
"socks_enabled", "socks_proxy", // force reconnect
"subscribed_only", // force folder sync
"badge", "unseen_ignored", // force update badge/widget
"debug" // force reconnect
));
2019-02-27 15:05:15 +00:00
2019-02-28 07:55:08 +00:00
static final int PI_ALARM = 1;
static final int PI_BACKOFF = 2;
static final int PI_KEEPALIVE = 3;
2018-08-02 13:33:06 +00:00
@Override
public void onCreate() {
2019-08-17 11:06:57 +00:00
EntityLog.log(this, "Service create version=" + BuildConfig.VERSION_NAME);
2018-08-02 13:33:06 +00:00
super.onCreate();
startForeground(Helper.NOTIFICATION_SYNCHRONIZE, getNotificationService(null, null).build());
2018-08-02 13:33:06 +00:00
// Listen for network changes
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkRequest.Builder builder = new NetworkRequest.Builder();
builder.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
// Removed because of Android VPN service
// builder.addCapability(NetworkCapabilities.NET_CAPABILITY_VALIDATED);
2019-10-04 15:17:42 +00:00
cm.registerNetworkCallback(builder.build(), networkCallback);
2019-07-11 06:42:20 +00:00
2019-10-04 15:17:42 +00:00
IntentFilter iif = new IntentFilter();
iif.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
iif.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
registerReceiver(connectionChangedReceiver, iif);
2019-07-11 06:42:20 +00:00
registerReceiver(onScreenOff, new IntentFilter(Intent.ACTION_SCREEN_OFF));
2018-08-02 13:33:06 +00:00
DB db = DB.getInstance(this);
db.account().liveAccountState().observe(this, new Observer<List<TupleAccountState>>() {
@Override
public void onChanged(List<TupleAccountState> accountStates) {
liveAccountState.postValue(accountStates);
}
});
2019-12-06 15:00:11 +00:00
liveAccountNetworkState.addSource(liveNetworkState, new Observer<ConnectionHelper.NetworkState>() {
@Override
public void onChanged(ConnectionHelper.NetworkState networkState) {
liveAccountNetworkState.post(networkState);
}
});
liveAccountNetworkState.addSource(liveAccountState, new Observer<List<TupleAccountState>>() {
@Override
public void onChanged(List<TupleAccountState> accountStates) {
liveAccountNetworkState.post(accountStates);
}
});
2019-12-07 19:32:58 +00:00
liveAccountNetworkState.observeForever(new Observer<List<TupleAccountNetworkState>>() {
private List<TupleAccountNetworkState> accountStates = new ArrayList<>();
private ExecutorService queue = Helper.getBackgroundExecutor(1, "service");
2019-12-06 15:00:11 +00:00
@Override
public void onChanged(List<TupleAccountNetworkState> accountNetworkStates) {
2019-12-07 19:32:58 +00:00
if (accountNetworkStates == null) {
2019-12-09 21:26:29 +00:00
// Destroy
2019-12-12 07:51:48 +00:00
for (TupleAccountNetworkState prev : accountStates)
2019-12-07 19:32:58 +00:00
stop(prev);
2020-01-12 18:28:19 +00:00
quit(null);
2019-12-07 19:32:58 +00:00
accountStates.clear();
2019-12-12 07:51:48 +00:00
coreStates.clear();
2019-12-07 19:32:58 +00:00
liveAccountNetworkState.removeObserver(this);
} else {
2019-12-07 21:06:40 +00:00
int accounts = 0;
int operations = 0;
2019-12-07 19:32:58 +00:00
boolean runService = false;
for (TupleAccountNetworkState current : accountNetworkStates) {
2019-12-18 16:43:28 +00:00
Log.d("### evaluating " + current);
2019-12-07 19:32:58 +00:00
if (current.accountState.shouldRun(current.enabled))
runService = true;
if ("connected".equals(current.accountState.state))
2019-12-07 21:06:40 +00:00
accounts++;
2019-12-09 07:33:25 +00:00
if (current.accountState.synchronize)
operations += current.accountState.operations;
2019-12-07 19:32:58 +00:00
2019-12-10 10:09:36 +00:00
long account = current.command.getLong("account", -1);
if (account > 0 && !current.accountState.id.equals(account))
continue;
2019-12-07 19:32:58 +00:00
int index = accountStates.indexOf(current);
if (index < 0) {
if (current.canRun()) {
EntityLog.log(ServiceSynchronize.this, "### new " + current);
start(current, current.accountState.isEnabled(current.enabled));
2019-12-07 19:32:58 +00:00
}
} else {
TupleAccountNetworkState prev = accountStates.get(index);
2019-12-12 07:51:48 +00:00
Core.State state = coreStates.get(current.accountState.id);
2019-12-07 19:32:58 +00:00
if (state != null)
state.setNetworkState(current.networkState);
2019-12-09 21:26:29 +00:00
boolean reload = false;
2019-12-18 08:29:38 +00:00
boolean sync = current.command.getBoolean("sync", false);
2019-12-10 10:09:36 +00:00
switch (current.command.getString("name")) {
case "reload":
reload = true;
break;
}
2019-12-09 21:26:29 +00:00
2019-12-10 09:36:59 +00:00
accountStates.remove(index);
// Some networks disallow email server connections:
// - reload on network type change when disconnected
if (reload ||
2019-12-07 19:32:58 +00:00
prev.canRun() != current.canRun() ||
!prev.accountState.equals(current.accountState) ||
(!"connected".equals(current.accountState.state) &&
!Objects.equals(prev.networkState.getType(), current.networkState.getType()))) {
if (prev.canRun() || current.canRun())
EntityLog.log(ServiceSynchronize.this, "### changed " + current +
2019-12-09 21:26:29 +00:00
" reload=" + reload +
" stop=" + prev.canRun() +
" start=" + current.canRun() +
2019-12-18 08:29:38 +00:00
" sync=" + current.accountState.isEnabled(current.enabled) + "/" + sync +
" changed=" + !prev.accountState.equals(current.accountState) +
2019-12-09 08:31:09 +00:00
" enabled=" + current.accountState.synchronize +
" state=" + current.accountState.state +
" type=" + prev.networkState.getType() + "/" + current.networkState.getType());
2019-12-07 19:32:58 +00:00
if (prev.canRun())
stop(prev);
2019-12-07 19:32:58 +00:00
if (current.canRun())
2019-12-18 08:29:38 +00:00
start(current, current.accountState.isEnabled(current.enabled) || sync);
2019-12-07 19:32:58 +00:00
}
}
2019-12-07 19:32:58 +00:00
if (current.accountState.tbd == null)
accountStates.add(current);
2019-12-18 16:43:28 +00:00
else
delete(current);
2019-12-07 19:32:58 +00:00
}
2019-12-07 19:32:58 +00:00
if (runService) {
2019-12-07 21:06:40 +00:00
if (lastAccounts != accounts || lastOperations != operations) {
lastAccounts = accounts;
lastOperations = operations;
2019-12-07 19:32:58 +00:00
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
2019-12-07 21:06:40 +00:00
nm.notify(Helper.NOTIFICATION_SYNCHRONIZE, getNotificationService(lastAccounts, lastOperations).build());
2019-12-07 19:32:58 +00:00
}
2019-12-09 21:26:29 +00:00
} else
2020-01-12 18:28:19 +00:00
quit(lastStartId);
}
}
private void start(final TupleAccountNetworkState accountNetworkState, boolean sync) {
EntityLog.log(ServiceSynchronize.this, "Service start=" + accountNetworkState);
2019-12-07 21:06:40 +00:00
final Core.State astate = new Core.State(accountNetworkState.networkState);
astate.runnable(new Runnable() {
@Override
public void run() {
try {
monitorAccount(accountNetworkState.accountState, astate, sync);
} catch (Throwable ex) {
Log.e(accountNetworkState.accountState.name, ex);
}
}
}, "sync.account." + accountNetworkState.accountState.id);
2019-12-12 07:51:48 +00:00
coreStates.put(accountNetworkState.accountState.id, astate);
queue.submit(new Runnable() {
@Override
public void run() {
Map<String, String> crumb = new HashMap<>();
2019-12-09 11:41:00 +00:00
crumb.put("account", accountNetworkState.accountState.id.toString());
2019-12-07 21:06:40 +00:00
crumb.put("connected", Boolean.toString(accountNetworkState.networkState.isConnected()));
crumb.put("suitable", Boolean.toString(accountNetworkState.networkState.isSuitable()));
crumb.put("unmetered", Boolean.toString(accountNetworkState.networkState.isUnmetered()));
crumb.put("roaming", Boolean.toString(accountNetworkState.networkState.isRoaming()));
2019-12-12 08:19:30 +00:00
crumb.put("lastLost", new Date(lastLost).toString());
Log.breadcrumb("start", crumb);
2020-01-10 12:02:46 +00:00
Log.i("### start=" + accountNetworkState + " sync=" + sync);
astate.start();
EntityLog.log(ServiceSynchronize.this, "### started=" + accountNetworkState);
}
});
}
private void stop(final TupleAccountNetworkState accountNetworkState) {
EntityLog.log(ServiceSynchronize.this, "Service stop=" + accountNetworkState);
2019-12-12 07:51:48 +00:00
final Core.State state = coreStates.get(accountNetworkState.accountState.id);
coreStates.remove(accountNetworkState.accountState.id);
queue.submit(new Runnable() {
@Override
public void run() {
Map<String, String> crumb = new HashMap<>();
2019-12-09 11:41:00 +00:00
crumb.put("account", accountNetworkState.accountState.id.toString());
2019-12-07 21:06:40 +00:00
crumb.put("connected", Boolean.toString(accountNetworkState.networkState.isConnected()));
crumb.put("suitable", Boolean.toString(accountNetworkState.networkState.isSuitable()));
crumb.put("unmetered", Boolean.toString(accountNetworkState.networkState.isUnmetered()));
crumb.put("roaming", Boolean.toString(accountNetworkState.networkState.isRoaming()));
2019-12-12 08:19:30 +00:00
crumb.put("lastLost", new Date(lastLost).toString());
Log.breadcrumb("stop", crumb);
2019-12-07 16:02:42 +00:00
Log.i("### stop=" + accountNetworkState);
state.stop();
state.join();
EntityLog.log(ServiceSynchronize.this, "### stopped=" + accountNetworkState);
}
});
2019-12-06 15:00:11 +00:00
}
private void delete(final TupleAccountNetworkState accountNetworkState) {
EntityLog.log(ServiceSynchronize.this, "Service delete=" + accountNetworkState);
2019-06-01 06:44:46 +00:00
queue.submit(new Runnable() {
@Override
public void run() {
DB db = DB.getInstance(ServiceSynchronize.this);
db.account().deleteAccount(accountNetworkState.accountState.id);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.deleteNotificationChannel(EntityAccount.getNotificationChannelId(accountNetworkState.accountState.id));
}
2019-06-01 13:58:09 +00:00
}
});
}
2019-06-01 06:44:46 +00:00
2020-01-12 18:28:19 +00:00
private void quit(final Integer startId) {
2019-12-07 19:32:58 +00:00
EntityLog.log(ServiceSynchronize.this, "Service quit");
2019-06-01 06:44:46 +00:00
queue.submit(new Runnable() {
@Override
public void run() {
2019-12-07 19:32:58 +00:00
Log.i("### quit");
try {
Thread.sleep(QUIT_DELAY);
} catch (InterruptedException ex) {
Log.w(ex);
}
2020-01-12 18:28:19 +00:00
if (startId != null) {
stopSelf(startId);
if (startId.equals(lastStartId)) {
DB db = DB.getInstance(ServiceSynchronize.this);
List<EntityOperation> ops = db.operation().getOperations(EntityOperation.SYNC);
for (EntityOperation op : ops)
db.folder().setFolderSyncState(op.folder, null);
}
2020-01-12 18:28:19 +00:00
EntityLog.log(ServiceSynchronize.this, "### quit requested");
}
}
});
}
});
2019-09-23 08:57:02 +00:00
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
final TwoStateOwner cowner = new TwoStateOwner(this, "liveUnseenNotify");
db.folder().liveSynchronizing().observe(this, new Observer<Integer>() {
@Override
public void onChanged(Integer count) {
Log.i("Synchronizing folders=" + count);
if (count == null || count == 0)
cowner.start();
else
cowner.stop();
}
});
db.message().liveUnseenWidget(null).observe(cowner, new Observer<List<TupleMessageStats>>() {
private List<TupleMessageStats> last = null;
@Override
public void onChanged(List<TupleMessageStats> stats) {
if (stats == null)
stats = new ArrayList<>();
boolean changed = false;
if (last == null || last.size() != stats.size())
changed = true;
else
for (int i = 0; i < stats.size(); i++)
if (!last.get(i).equals(stats.get(i))) {
changed = true;
break;
}
if (!changed)
return;
Widget.update(ServiceSynchronize.this);
boolean badge = prefs.getBoolean("badge", true);
boolean unseen_ignored = prefs.getBoolean("unseen_ignored", false);
int count = 0;
for (TupleMessageStats stat : stats) {
Integer unseen = (unseen_ignored ? stat.notifying : stat.unseen);
if (unseen != null)
count += unseen;
}
try {
if (count == 0 || !badge)
ShortcutBadger.removeCount(ServiceSynchronize.this);
else
ShortcutBadger.applyCount(ServiceSynchronize.this, count);
} catch (Throwable ex) {
Log.e(ex);
}
}
});
2019-09-01 09:32:18 +00:00
Map<Long, List<Long>> groupNotifying = new HashMap<>();
// Get existing notifications
2019-09-13 09:50:33 +00:00
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
try {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
for (StatusBarNotification sbn : nm.getActiveNotifications()) {
String tag = sbn.getTag();
if (tag != null && tag.startsWith("unseen.")) {
String[] p = tag.split(("\\."));
long group = Long.parseLong(p[1]);
2019-09-18 19:36:10 +00:00
long id = sbn.getNotification().extras.getLong("id", 0);
2019-09-13 09:50:33 +00:00
if (!groupNotifying.containsKey(group))
groupNotifying.put(group, new ArrayList<>());
if (id > 0) {
2019-09-18 19:36:10 +00:00
Log.i("Notify restore " + tag + " id=" + id);
2019-09-13 09:50:33 +00:00
groupNotifying.get(group).add(id);
}
}
}
2019-09-13 09:50:33 +00:00
} catch (Throwable ex) {
Log.w(ex);
/*
java.lang.RuntimeException: Unable to create service eu.faircode.email.ServiceSynchronize: java.lang.NullPointerException: Attempt to invoke virtual method 'java.util.List android.content.pm.ParceledListSlice.getList()' on a null object reference
at android.app.ActivityThread.handleCreateService(ActivityThread.java:2944)
at android.app.ActivityThread.access$1900(ActivityThread.java:154)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1474)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:234)
at android.app.ActivityThread.main(ActivityThread.java:5526)
*/
}
2019-03-20 14:52:51 +00:00
db.message().liveUnseenNotify().observe(cowner, new Observer<List<TupleMessageEx>>() {
2019-08-01 07:19:22 +00:00
private ExecutorService executor =
2019-10-10 11:26:44 +00:00
Helper.getBackgroundExecutor(1, "notify");
2019-08-01 07:19:22 +00:00
@Override
2019-08-01 07:19:22 +00:00
public void onChanged(final List<TupleMessageEx> messages) {
executor.submit(new Runnable() {
@Override
public void run() {
try {
2019-08-04 13:21:21 +00:00
Core.notifyMessages(ServiceSynchronize.this, messages, groupNotifying);
2019-08-01 07:19:22 +00:00
} catch (SecurityException ex) {
Log.w(ex);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ServiceSynchronize.this);
prefs.edit().remove("sound").apply();
} catch (Throwable ex) {
Log.e(ex);
}
}
});
2018-08-02 13:33:06 +00:00
}
});
2019-12-01 10:42:54 +00:00
db.message().liveWidgetUnified().observe(cowner, new Observer<List<TupleMessageWidgetCount>>() {
private List<TupleMessageWidgetCount> last = null;
2019-07-25 15:22:00 +00:00
@Override
public void onChanged(List<TupleMessageWidgetCount> current) {
if (current == null)
current = new ArrayList<>();
boolean changed = false;
if (last == null || last.size() != current.size())
changed = true;
else
for (int i = 0; i < current.size(); i++)
if (!current.get(i).equals(last.get(i))) {
changed = true;
break;
}
if (changed)
2020-01-01 19:52:23 +00:00
WidgetUnified.updateData(ServiceSynchronize.this);
2019-11-18 09:14:37 +00:00
last = current;
2019-07-25 15:22:00 +00:00
}
});
prefs.registerOnSharedPreferenceChangeListener(this);
}
@Override
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
2019-12-09 21:26:29 +00:00
if (PREF_EVAL.contains(key)) {
Bundle command = new Bundle();
command.putString("name", "eval");
2019-12-12 10:57:35 +00:00
liveAccountNetworkState.post(command);
2019-12-09 21:26:29 +00:00
} else if (PREF_RELOAD.contains(key)) {
Bundle command = new Bundle();
command.putString("name", "reload");
liveAccountNetworkState.post(command);
}
2018-10-16 10:26:35 +00:00
}
@Override
public void onDestroy() {
2019-03-25 14:05:52 +00:00
EntityLog.log(this, "Service destroy");
2018-10-16 10:26:35 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
prefs.unregisterOnSharedPreferenceChangeListener(this);
2019-07-11 06:42:20 +00:00
unregisterReceiver(onScreenOff);
2019-10-04 15:17:42 +00:00
unregisterReceiver(connectionChangedReceiver);
2019-07-11 06:42:20 +00:00
2018-10-16 10:26:35 +00:00
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
2019-10-04 15:17:42 +00:00
cm.unregisterNetworkCallback(networkCallback);
2018-10-16 10:26:35 +00:00
2019-12-07 19:32:58 +00:00
liveAccountNetworkState.postDestroy();
2018-10-21 18:29:28 +00:00
2019-08-12 06:18:28 +00:00
try {
stopForeground(true);
} catch (Throwable ex) {
Log.e(ex);
/*
OnePlus A6013 - Android 9
java.lang.RuntimeException: Unable to stop service eu.faircode.email.ServiceSynchronize@3995fc9: java.lang.NullPointerException: Attempt to invoke virtual method 'long java.lang.Long.longValue()' on a null object reference
at android.app.ActivityThread.handleStopService(ActivityThread.java:3908)
at android.app.ActivityThread.access$1900(ActivityThread.java:209)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1826)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6954)
at java.lang.reflect.Method.invoke(Method.java:-2)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:537)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'long java.lang.Long.longValue()' on a null object reference
at android.os.Parcel.createException(Parcel.java:1956)
at android.os.Parcel.readException(Parcel.java:1918)
at android.os.Parcel.readException(Parcel.java:1868)
at android.app.IActivityManager$Stub$Proxy.setServiceForeground(IActivityManager.java:5111)
at android.app.Service.stopForeground(Service.java:724)
at android.app.Service.stopForeground(Service.java:710)
*/
}
2018-10-16 10:26:35 +00:00
2018-12-09 17:49:52 +00:00
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
2019-02-15 07:51:14 +00:00
nm.cancel(Helper.NOTIFICATION_SYNCHRONIZE);
2018-10-16 10:26:35 +00:00
super.onDestroy();
}
2020-01-13 16:16:02 +00:00
@Override
public void onTaskRemoved(Intent rootIntent) {
super.onTaskRemoved(rootIntent);
Log.i("Task removed=" + rootIntent);
}
2018-10-16 10:26:35 +00:00
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
2020-01-12 18:28:19 +00:00
lastStartId = startId;
2018-10-16 10:26:35 +00:00
String action = (intent == null ? null : intent.getAction());
2019-12-07 16:02:42 +00:00
String reason = (intent == null ? null : intent.getStringExtra("reason"));
EntityLog.log(ServiceSynchronize.this, "### Service command " + intent +
" action=" + action + " reason=" + reason);
2019-02-14 12:28:03 +00:00
Log.logExtras(intent);
2018-10-16 10:26:35 +00:00
super.onStartCommand(intent, flags, startId);
startForeground(Helper.NOTIFICATION_SYNCHRONIZE, getNotificationService(null, null).build());
2018-08-02 13:33:06 +00:00
2018-12-28 17:21:31 +00:00
if (action != null)
try {
2019-12-12 07:51:48 +00:00
switch (action.split(":")[0]) {
case "eval":
2019-12-12 07:51:48 +00:00
onEval(intent);
2019-02-14 12:28:03 +00:00
break;
2019-12-09 21:26:29 +00:00
case "reload":
2019-12-12 07:51:48 +00:00
onReload(intent);
2019-12-09 21:26:29 +00:00
break;
2019-12-12 10:10:57 +00:00
case "backoff":
case "keepalive":
2019-12-12 07:51:48 +00:00
onWakeup(intent);
2018-12-28 17:21:31 +00:00
break;
2019-12-09 21:26:29 +00:00
case "alarm":
2019-12-12 07:51:48 +00:00
onAlarm(intent);
2019-05-12 18:15:16 +00:00
break;
2018-12-28 17:21:31 +00:00
default:
Log.w("Unknown action: " + action);
}
} catch (Throwable ex) {
Log.e(ex);
2018-08-22 12:30:27 +00:00
}
2019-12-12 07:51:48 +00:00
2018-08-02 13:33:06 +00:00
return START_STICKY;
}
2019-12-12 07:51:48 +00:00
private void onEval(Intent intent) {
Bundle command = new Bundle();
command.putString("name", "eval");
command.putLong("account", intent.getLongExtra("account", -1));
liveAccountNetworkState.post(command);
}
private void onReload(Intent intent) {
2019-12-12 08:19:30 +00:00
lastLost = 0;
2019-12-12 07:51:48 +00:00
Bundle command = new Bundle();
command.putString("name", "reload");
command.putLong("account", intent.getLongExtra("account", -1));
liveAccountNetworkState.post(command);
}
private void onWakeup(Intent intent) {
String action = intent.getAction();
long account = Long.parseLong(action.split(":")[1]);
Core.State state = coreStates.get(account);
if (state == null)
EntityLog.log(this, "### wakeup missing account=" + account);
else {
EntityLog.log(this, "### waking up account=" + account);
state.release();
2019-12-12 08:53:06 +00:00
try {
Thread.sleep(YIELD_DURATION);
} catch (InterruptedException ex) {
Log.w(ex);
}
2019-12-12 07:51:48 +00:00
}
}
private void onAlarm(Intent intent) {
Bundle command = new Bundle();
schedule(this);
command.putString("name", "eval");
2019-12-18 08:29:38 +00:00
command.putBoolean("sync", true);
2019-12-12 07:51:48 +00:00
liveAccountNetworkState.post(command);
}
2019-12-07 21:06:40 +00:00
private NotificationCompat.Builder getNotificationService(Integer accounts, Integer operations) {
if (accounts != null)
this.lastAccounts = accounts;
if (operations != null)
this.lastOperations = operations;
2018-10-17 06:11:20 +00:00
2018-08-02 13:33:06 +00:00
// Build pending intent
2019-03-14 14:57:24 +00:00
Intent why = new Intent(this, ActivityView.class);
why.setAction("why");
2020-01-13 10:33:34 +00:00
why.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2019-03-14 14:57:24 +00:00
PendingIntent piWhy = PendingIntent.getActivity(this, ActivityView.REQUEST_WHY, why, PendingIntent.FLAG_UPDATE_CURRENT);
2018-08-02 13:33:06 +00:00
// Build notification
2019-06-23 08:23:49 +00:00
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this, "service")
.setSmallIcon(R.drawable.baseline_compare_arrows_white_24)
.setContentTitle(getResources().getQuantityString(
2019-12-07 21:06:40 +00:00
R.plurals.title_notification_synchronizing, lastAccounts, lastAccounts))
2019-06-23 08:23:49 +00:00
.setContentIntent(piWhy)
.setAutoCancel(false)
.setShowWhen(false)
.setPriority(NotificationCompat.PRIORITY_MIN)
2019-07-23 09:38:36 +00:00
.setCategory(NotificationCompat.CATEGORY_SERVICE)
2019-10-16 13:18:59 +00:00
.setVisibility(NotificationCompat.VISIBILITY_SECRET)
.setLocalOnly(true);
2018-08-02 13:33:06 +00:00
2019-12-07 21:06:40 +00:00
if (lastOperations > 0)
2019-03-03 09:17:42 +00:00
builder.setContentText(getResources().getQuantityString(
2019-12-07 21:06:40 +00:00
R.plurals.title_notification_operations, lastOperations, lastOperations));
2019-12-07 21:06:40 +00:00
if (lastSuitable == null || !lastSuitable)
builder.setSubText(getString(R.string.title_notification_waiting));
2018-08-02 13:33:06 +00:00
return builder;
}
2019-12-10 10:51:03 +00:00
private NotificationCompat.Builder getNotificationAlert(String account, String message) {
// Build pending intent
Intent alert = new Intent(this, ActivityView.class);
alert.setAction("alert");
2020-01-13 10:33:34 +00:00
alert.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2019-12-10 10:51:03 +00:00
PendingIntent piAlert = PendingIntent.getActivity(this, ActivityView.REQUEST_ALERT, alert, PendingIntent.FLAG_UPDATE_CURRENT);
// Build notification
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this, "alerts")
.setSmallIcon(R.drawable.baseline_warning_white_24)
.setContentTitle(getString(R.string.title_notification_alert, account))
.setContentText(message)
.setContentIntent(piAlert)
.setAutoCancel(false)
.setShowWhen(true)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setOnlyAlertOnce(true)
.setCategory(NotificationCompat.CATEGORY_ERROR)
.setVisibility(NotificationCompat.VISIBILITY_SECRET)
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(message));
return builder;
}
2019-07-22 11:18:52 +00:00
private void monitorAccount(final EntityAccount account, final Core.State state, final boolean sync) throws NoSuchProviderException {
2018-12-09 17:49:52 +00:00
final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
2018-12-02 13:19:54 +00:00
final PowerManager.WakeLock wlAccount = pm.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, BuildConfig.APPLICATION_ID + ":account." + account.id);
2019-05-18 06:02:45 +00:00
final PowerManager.WakeLock wlFolder = pm.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, BuildConfig.APPLICATION_ID + ":account." + account.id + ".folder");
final PowerManager.WakeLock wlMessage = pm.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, BuildConfig.APPLICATION_ID + ":account." + account.id + ".message");
2018-10-10 07:26:04 +00:00
try {
2018-12-02 13:19:54 +00:00
wlAccount.acquire();
2018-10-10 07:26:04 +00:00
2019-12-09 11:43:43 +00:00
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (account.notify)
account.createNotificationChannel(ServiceSynchronize.this);
else
account.deleteNotificationChannel(ServiceSynchronize.this);
}
2019-12-12 08:19:30 +00:00
long ago = new Date().getTime() - lastLost;
if (ago < RECONNECT_BACKOFF)
try {
long backoff = RECONNECT_BACKOFF - ago;
EntityLog.log(ServiceSynchronize.this, account.name + " backoff=" + (backoff / 1000));
state.acquire(backoff);
} catch (InterruptedException ex) {
Log.w(account.name + " backoff " + ex.toString());
}
2018-10-10 07:26:04 +00:00
final DB db = DB.getInstance(this);
state.setBackoff(CONNECT_BACKOFF_START);
2019-08-12 13:50:46 +00:00
while (state.isRunning()) {
2019-04-10 18:17:58 +00:00
state.reset();
2018-12-24 12:27:45 +00:00
Log.i(account.name + " run");
2018-10-10 07:26:04 +00:00
2019-03-30 19:26:09 +00:00
Handler handler = new Handler(getMainLooper());
final List<TwoStateOwner> cowners = new ArrayList<>();
2018-10-10 07:26:04 +00:00
// Debug
2019-03-06 10:18:57 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
2019-04-06 07:56:37 +00:00
boolean debug = (prefs.getBoolean("debug", false) || BuildConfig.DEBUG);
2018-10-10 07:26:04 +00:00
2019-07-29 09:17:12 +00:00
final MailService iservice = new MailService(
2019-10-19 08:05:43 +00:00
this, account.getProtocol(), account.realm, account.insecure, false, debug);
2019-07-29 09:17:12 +00:00
iservice.setPartialFetch(account.partial_fetch);
iservice.setIgnoreBodyStructureSize(account.ignore_size);
2019-11-23 12:48:59 +00:00
if (account.protocol != EntityAccount.TYPE_IMAP)
iservice.setLeaveOnServer(account.browse);
2019-12-09 15:32:37 +00:00
iservice.setListener(new StoreListener() {
@Override
public void notification(StoreEvent e) {
String message = e.getMessage();
if (TextUtils.isEmpty(message))
message = "?";
2019-12-09 15:32:37 +00:00
if (e.getMessageType() == StoreEvent.NOTICE)
EntityLog.log(ServiceSynchronize.this, account.name + " notice: " + message);
2019-12-09 15:32:37 +00:00
else
try {
wlFolder.acquire();
EntityLog.log(ServiceSynchronize.this, account.name + " alert: " + message);
2019-12-09 15:32:37 +00:00
2020-01-13 12:18:49 +00:00
if (!isMaxConnections(message) || state.getBackoff() > CONNECT_BACKOFF_MAX) {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify("alert:" + account.id, 1,
getNotificationAlert(account.name, message).build());
}
2019-12-09 15:32:37 +00:00
} finally {
wlFolder.release();
}
}
});
2019-05-21 13:21:03 +00:00
final Map<EntityFolder, IMAPFolder> mapFolders = new HashMap<>();
2018-10-10 07:26:04 +00:00
List<Thread> idlers = new ArrayList<>();
try {
2019-07-28 19:45:29 +00:00
// Initiate connection
EntityLog.log(this, account.name + " connecting");
db.folder().setFolderStates(account.id, null);
db.account().setAccountState(account.id, "connecting");
try {
2019-07-29 09:17:12 +00:00
iservice.connect(account);
2019-07-28 19:45:29 +00:00
} catch (Throwable ex) {
2019-12-09 11:24:42 +00:00
// Immediately report auth errors
2020-01-13 12:18:49 +00:00
if (ex instanceof AuthenticationFailedException) {
boolean ioError = false;
Throwable c = ex;
while (c != null) {
if (c instanceof IOException || isMaxConnections(c.getMessage())) {
ioError = true;
break;
}
c = c.getCause();
}
if (!ioError) {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify("receive:" + account.id, 1,
Core.getNotificationError(this, "error", account.name, ex)
.build());
throw ex;
}
2019-07-28 19:45:29 +00:00
}
// Report account connection error
if (account.last_connected != null && !ConnectionHelper.airplaneMode(this)) {
EntityLog.log(this, account.name + " last connected: " + new Date(account.last_connected));
long now = new Date().getTime();
long delayed = now - account.last_connected - account.poll_interval * 60 * 1000L;
if (delayed > ACCOUNT_ERROR_AFTER * 60 * 1000L && state.getBackoff() > BACKOFF_ERROR_AFTER) {
2019-07-28 19:45:29 +00:00
Log.i("Reporting sync error after=" + delayed);
Throwable warning = new Throwable(
getString(R.string.title_no_sync,
Helper.getDateTimeInstance(this, DateFormat.SHORT, DateFormat.SHORT)
.format(account.last_connected)), ex);
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify("receive:" + account.id, 1,
Core.getNotificationError(this, "warning", account.name, warning)
.build());
}
}
throw ex;
}
2019-09-19 15:41:26 +00:00
final boolean capIdle = iservice.hasCapability("IDLE");
2019-07-28 19:45:29 +00:00
Log.i(account.name + " idle=" + capIdle);
db.account().setAccountState(account.id, "connected");
db.account().setAccountError(account.id, null);
db.account().setAccountWarning(account.id, null);
EntityLog.log(this, account.name + " connected");
2018-10-10 07:26:04 +00:00
// Listen for folder events
2019-07-28 19:45:29 +00:00
iservice.getStore().addFolderListener(new FolderAdapter() {
2018-10-10 07:26:04 +00:00
@Override
public void folderCreated(FolderEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlFolder.acquire();
2019-05-25 14:32:08 +00:00
String name = e.getFolder().getFullName();
Log.i("Folder created=" + name);
if (db.folder().getFolderByName(account.id, name) == null)
2019-12-09 18:44:27 +00:00
reload(ServiceSynchronize.this, account.id, "folder created");
2018-10-10 07:26:04 +00:00
} finally {
2019-05-18 06:02:45 +00:00
wlFolder.release();
2018-10-10 07:26:04 +00:00
}
}
2018-08-02 13:33:06 +00:00
2018-10-10 07:26:04 +00:00
@Override
public void folderRenamed(FolderEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlFolder.acquire();
2018-09-14 06:28:23 +00:00
2018-10-10 07:26:04 +00:00
String old = e.getFolder().getFullName();
String name = e.getNewFolder().getFullName();
2019-05-25 14:32:08 +00:00
Log.i("Folder renamed from=" + old + " to=" + name);
2018-10-10 07:26:04 +00:00
int count = db.folder().renameFolder(account.id, old, name);
2018-12-24 12:27:45 +00:00
Log.i("Renamed to " + name + " count=" + count);
2019-05-25 14:32:08 +00:00
if (count == 0)
2019-12-09 18:44:27 +00:00
reload(ServiceSynchronize.this, account.id, "folder renamed");
2018-10-10 07:26:04 +00:00
} finally {
2019-05-18 06:02:45 +00:00
wlFolder.release();
2018-10-10 07:26:04 +00:00
}
}
2018-08-02 13:33:06 +00:00
2018-10-10 07:26:04 +00:00
@Override
public void folderDeleted(FolderEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlFolder.acquire();
2019-05-25 14:32:08 +00:00
String name = e.getFolder().getFullName();
Log.i("Folder deleted=" + name);
if (db.folder().getFolderByName(account.id, name) != null)
2019-12-09 18:44:27 +00:00
reload(ServiceSynchronize.this, account.id, "folder deleted");
2018-10-10 07:26:04 +00:00
} finally {
2019-05-18 06:02:45 +00:00
wlFolder.release();
2018-10-10 07:26:04 +00:00
}
}
});
2018-08-02 13:33:06 +00:00
2018-10-10 07:26:04 +00:00
// Update folder list
2019-11-23 12:48:59 +00:00
if (account.protocol == EntityAccount.TYPE_IMAP)
2019-09-19 15:41:26 +00:00
Core.onSynchronizeFolders(this, account, iservice.getStore(), state);
2018-08-04 22:35:47 +00:00
// Open synchronizing folders
2019-10-10 11:26:44 +00:00
final ExecutorService executor =
Helper.getBackgroundExecutor(1, "account_" + account.id);
2019-06-24 06:34:17 +00:00
2019-07-07 07:25:52 +00:00
List<EntityFolder> folders = db.folder().getFolders(account.id, false, true);
2019-06-24 06:34:17 +00:00
Collections.sort(folders, new Comparator<EntityFolder>() {
@Override
public int compare(EntityFolder f1, EntityFolder f2) {
int s1 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f1.type);
int s2 = EntityFolder.FOLDER_SORT_ORDER.indexOf(f2.type);
int s = Integer.compare(s1, s2);
if (s != 0)
return s;
return f1.name.compareTo(f2.name);
}
});
2019-05-21 13:21:03 +00:00
for (final EntityFolder folder : folders) {
2019-08-24 13:39:59 +00:00
if (folder.synchronize && !folder.poll && capIdle && sync) {
2018-12-24 12:27:45 +00:00
Log.i(account.name + " sync folder " + folder.name);
2018-08-22 05:31:00 +00:00
db.folder().setFolderState(folder.id, "connecting");
2018-08-22 05:31:00 +00:00
2019-07-28 19:45:29 +00:00
final IMAPFolder ifolder = (IMAPFolder) iservice.getStore().getFolder(folder.name);
2019-12-11 10:48:57 +00:00
mapFolders.put(folder, ifolder);
try {
2019-07-07 07:25:52 +00:00
if (BuildConfig.DEBUG && "Postausgang".equals(folder.name))
throw new ReadOnlyFolderException(ifolder);
ifolder.open(Folder.READ_WRITE);
db.folder().setFolderReadOnly(folder.id, ifolder.getUIDNotSticky());
2019-04-29 19:54:49 +00:00
} catch (ReadOnlyFolderException ex) {
2019-04-30 07:06:32 +00:00
Log.w(folder.name + " read only");
2019-04-29 19:54:49 +00:00
try {
ifolder.open(Folder.READ_ONLY);
2019-04-30 07:06:32 +00:00
db.folder().setFolderReadOnly(folder.id, true);
2019-12-08 08:31:09 +00:00
} catch (Throwable ex1) {
2019-12-06 07:50:46 +00:00
db.folder().setFolderError(folder.id, Log.formatThrowable(ex1));
2019-12-08 08:31:09 +00:00
throw ex1;
2019-04-29 19:54:49 +00:00
}
2019-05-25 14:45:46 +00:00
} catch (FolderNotFoundException ex) {
2019-09-17 19:25:41 +00:00
Log.w(folder.name, ex);
2019-05-25 14:45:46 +00:00
db.folder().deleteFolder(folder.id);
continue;
} catch (Throwable ex) {
2019-12-06 07:50:46 +00:00
db.folder().setFolderError(folder.id, Log.formatThrowable(ex));
throw ex;
}
2018-08-22 05:31:00 +00:00
db.folder().setFolderState(folder.id, "connected");
db.folder().setFolderError(folder.id, null);
2018-11-29 13:00:46 +00:00
2019-03-09 08:20:46 +00:00
int count = ifolder.getMessageCount();
db.folder().setFolderTotal(folder.id, count < 0 ? null : count);
2018-12-24 12:27:45 +00:00
Log.i(account.name + " folder " + folder.name + " flags=" + ifolder.getPermanentFlags());
2018-11-25 12:34:08 +00:00
// Listen for new and deleted messages
ifolder.addMessageCountListener(new MessageCountAdapter() {
@Override
public void messagesAdded(MessageCountEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlMessage.acquire();
2018-12-24 12:27:45 +00:00
Log.i(folder.name + " messages added");
2019-09-17 11:38:23 +00:00
for (Message imessage : e.getMessages()) {
long uid = ifolder.getUID(imessage);
EntityOperation.queue(ServiceSynchronize.this, folder, EntityOperation.FETCH, uid);
}
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.e(folder.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
folder.name + " " + Log.formatThrowable(ex, false));
2019-04-10 18:17:58 +00:00
state.error(ex);
} finally {
2019-05-18 06:02:45 +00:00
wlMessage.release();
}
}
@Override
public void messagesRemoved(MessageCountEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlMessage.acquire();
2018-12-24 12:27:45 +00:00
Log.i(folder.name + " messages removed");
2019-09-17 11:38:23 +00:00
for (Message imessage : e.getMessages()) {
long uid = ifolder.getUID(imessage);
EntityOperation.queue(ServiceSynchronize.this, folder, EntityOperation.FETCH, uid);
2019-09-17 11:38:23 +00:00
}
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.e(folder.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
folder.name + " " + Log.formatThrowable(ex, false));
2019-04-10 18:17:58 +00:00
state.error(ex);
} finally {
2019-05-18 06:02:45 +00:00
wlMessage.release();
}
}
});
// Flags (like "seen") at the remote could be changed while synchronizing
// Listen for changed messages
ifolder.addMessageChangedListener(new MessageChangedListener() {
@Override
public void messageChanged(MessageChangedEvent e) {
try {
2019-05-18 06:02:45 +00:00
wlMessage.acquire();
2019-09-17 11:38:23 +00:00
Log.i(folder.name + " message changed");
long uid = ifolder.getUID(e.getMessage());
EntityOperation.queue(ServiceSynchronize.this, folder, EntityOperation.FETCH, uid);
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.e(folder.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
folder.name + " " + Log.formatThrowable(ex, false));
2019-04-10 18:17:58 +00:00
state.error(ex);
} finally {
2019-05-18 06:02:45 +00:00
wlMessage.release();
2018-12-02 13:19:54 +00:00
}
2018-08-15 19:34:22 +00:00
}
});
2018-10-10 07:26:04 +00:00
// Idle folder
2018-10-10 07:26:04 +00:00
Thread idler = new Thread(new Runnable() {
@Override
public void run() {
try {
2018-12-24 12:27:45 +00:00
Log.i(folder.name + " start idle");
while (ifolder.isOpen() && state.isRunning() && state.isRecoverable()) {
2018-12-24 12:27:45 +00:00
Log.i(folder.name + " do idle");
2019-03-25 17:34:48 +00:00
ifolder.idle(false);
state.activity();
2018-10-10 07:26:04 +00:00
}
} catch (Throwable ex) {
Log.e(folder.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
folder.name + " " + Log.formatThrowable(ex, false));
state.error(new FolderClosedException(ifolder, "IDLE"));
2018-10-10 07:26:04 +00:00
} finally {
2018-12-24 12:27:45 +00:00
Log.i(folder.name + " end idle");
}
2018-10-10 07:26:04 +00:00
}
}, "idler." + folder.id);
2019-01-07 15:05:24 +00:00
idler.setPriority(THREAD_PRIORITY_BACKGROUND);
2018-10-10 07:26:04 +00:00
idler.start();
idlers.add(idler);
2018-12-02 13:19:54 +00:00
2019-09-13 09:49:16 +00:00
if (sync && folder.selectable)
2019-07-22 11:18:52 +00:00
EntityOperation.sync(this, folder.id, false);
} else
2019-05-21 13:21:03 +00:00
mapFolders.put(folder, null);
2018-08-04 22:35:47 +00:00
2019-12-08 08:31:09 +00:00
Log.d(folder.name + " observing");
2019-03-30 19:26:09 +00:00
handler.post(new Runnable() {
2018-12-02 13:19:54 +00:00
@Override
2019-03-06 16:36:20 +00:00
public void run() {
2019-03-30 19:26:09 +00:00
TwoStateOwner cowner = new TwoStateOwner(ServiceSynchronize.this, folder.name);
cowners.add(cowner);
cowner.start();
2019-03-30 06:39:26 +00:00
db.operation().liveOperations(folder.id).observe(cowner, new Observer<List<EntityOperation>>() {
2019-03-06 16:36:20 +00:00
private List<Long> handling = new ArrayList<>();
private final PowerManager.WakeLock wlFolder = pm.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, BuildConfig.APPLICATION_ID + ":folder." + folder.id);
@Override
public void onChanged(final List<EntityOperation> operations) {
boolean process = false;
List<Long> ops = new ArrayList<>();
for (EntityOperation op : operations) {
if (!handling.contains(op.id))
process = true;
ops.add(op.id);
2019-03-05 12:46:25 +00:00
}
2019-03-06 16:36:20 +00:00
handling = ops;
if (handling.size() > 0 && process) {
2019-05-22 07:33:25 +00:00
Log.i(folder.name + " operations=" + operations.size() +
" init=" + folder.initialize + " poll=" + folder.poll);
executor.submit(new Runnable() {
2019-03-06 16:36:20 +00:00
@Override
public void run() {
2018-12-05 10:50:07 +00:00
try {
2019-03-06 16:36:20 +00:00
wlFolder.acquire();
Log.i(folder.name + " process");
2018-08-04 22:35:47 +00:00
2019-03-06 16:36:20 +00:00
// Get folder
2019-05-21 13:21:03 +00:00
Folder ifolder = mapFolders.get(folder); // null when polling
2019-11-23 12:48:59 +00:00
boolean canOpen = (account.protocol == EntityAccount.TYPE_IMAP || EntityFolder.INBOX.equals(folder.type));
2019-09-19 15:41:26 +00:00
final boolean shouldClose = (ifolder == null && canOpen);
2019-03-06 16:36:20 +00:00
try {
Log.i(folder.name + " run " + (shouldClose ? "offline" : "online"));
2018-09-03 09:34:13 +00:00
2019-09-19 15:41:26 +00:00
if (shouldClose) {
2019-03-06 16:36:20 +00:00
// Prevent unnecessary folder connections
if (db.operation().getOperationCount(folder.id, null) == 0)
return;
2019-02-10 19:22:35 +00:00
2019-03-06 16:36:20 +00:00
db.folder().setFolderState(folder.id, "connecting");
2018-10-10 07:26:04 +00:00
2019-07-28 19:45:29 +00:00
ifolder = iservice.getStore().getFolder(folder.name);
2019-03-06 16:36:20 +00:00
ifolder.open(Folder.READ_WRITE);
2018-12-05 10:50:07 +00:00
2019-03-06 16:36:20 +00:00
db.folder().setFolderState(folder.id, "connected");
2018-12-05 10:50:07 +00:00
2019-03-06 16:36:20 +00:00
db.folder().setFolderError(folder.id, null);
}
Core.processOperations(ServiceSynchronize.this,
account, folder,
2019-07-29 09:17:12 +00:00
iservice.getStore(), ifolder,
2019-03-06 16:36:20 +00:00
state);
} catch (FolderNotFoundException ex) {
2019-09-17 19:25:41 +00:00
Log.w(folder.name, ex);
db.folder().deleteFolder(folder.id);
2019-03-06 16:36:20 +00:00
} catch (Throwable ex) {
Log.e(folder.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
folder.name + " " + Log.formatThrowable(ex, false));
db.folder().setFolderError(folder.id, Log.formatThrowable(ex));
2019-04-10 18:17:58 +00:00
state.error(ex);
2019-03-06 16:36:20 +00:00
} finally {
if (shouldClose) {
if (ifolder != null && ifolder.isOpen()) {
db.folder().setFolderState(folder.id, "closing");
try {
ifolder.close(false);
} catch (MessagingException ex) {
Log.w(folder.name, ex);
}
2018-12-02 13:19:54 +00:00
}
2019-03-06 16:36:20 +00:00
if (folder.synchronize && (folder.poll || !capIdle))
db.folder().setFolderState(folder.id, "waiting");
else
db.folder().setFolderState(folder.id, null);
2018-12-02 13:19:54 +00:00
}
}
2019-03-06 16:36:20 +00:00
} finally {
wlFolder.release();
2018-10-10 07:26:04 +00:00
}
2018-12-05 10:50:07 +00:00
}
2019-03-06 16:36:20 +00:00
});
}
2018-12-05 10:50:07 +00:00
}
2019-03-06 16:36:20 +00:00
});
}
});
2018-12-02 13:19:54 +00:00
}
2018-10-07 10:13:32 +00:00
2018-10-10 07:26:04 +00:00
// Keep alive
boolean first = true;
2019-12-09 21:26:29 +00:00
while (state.isRunning()) {
try {
if (!state.isRecoverable())
throw new StoreClosedException(iservice.getStore(), "Unrecoverable");
// Sends store NOOP
if (!iservice.getStore().isConnected())
throw new StoreClosedException(iservice.getStore(), "NOOP");
if (sync)
for (EntityFolder folder : mapFolders.keySet())
if (folder.synchronize)
if (!folder.poll && capIdle) {
// Sends folder NOOP
if (!mapFolders.get(folder).isOpen())
throw new StoreClosedException(iservice.getStore(), folder.name);
} else
EntityOperation.sync(this, folder.id, false);
} catch (Throwable ex) {
2019-12-29 12:03:30 +00:00
if (BuildConfig.DEBUG &&
!first && !account.keep_alive_ok &&
account.poll_interval > 9 &&
2019-12-29 16:00:38 +00:00
Math.abs(state.getIdleTime() - account.poll_interval * 60 * 1000L) < 60 * 1000L) {
account.keep_alive_failed++;
2019-12-29 16:00:38 +00:00
if (account.keep_alive_failed >= 3) {
account.keep_alive_failed = 0;
account.poll_interval--;
db.account().setAccountKeepAliveInterval(account.id, account.poll_interval);
}
db.account().setAccountKeepAliveFailed(account.id, account.keep_alive_failed);
EntityLog.log(ServiceSynchronize.this, account.name +
" keep alive failed=" + account.keep_alive_failed +
" keep alive interval=" + account.poll_interval +
" max idle=" + state.getIdleTime());
}
throw ex;
}
2019-12-29 12:03:30 +00:00
if (BuildConfig.DEBUG &&
!first && !account.keep_alive_ok &&
account.poll_interval > 9 &&
2019-12-29 16:00:38 +00:00
Math.abs(state.getIdleTime() - account.poll_interval * 60 * 1000L) < 60 * 1000L) {
account.keep_alive_ok = true;
db.account().setAccountKeepAliveOk(account.id, true);
EntityLog.log(ServiceSynchronize.this, account.name + " keep alive ok");
}
2019-12-09 21:26:29 +00:00
// Successfully connected: reset back off time
state.setBackoff(CONNECT_BACKOFF_START);
2019-12-09 21:26:29 +00:00
// Record successful connection
account.last_connected = new Date().getTime();
EntityLog.log(this, account.name + " set last_connected=" + new Date(account.last_connected));
db.account().setAccountConnected(account.id, account.last_connected);
db.account().setAccountWarning(account.id, capIdle ? null : getString(R.string.title_no_idle));
2020-01-07 16:43:27 +00:00
// Get quota
if (iservice.hasCapability("QUOTA"))
try {
// https://tools.ietf.org/id/draft-melnikov-extra-quota-00.html
Quota[] quotas = ((IMAPStore) iservice.getStore()).getQuota("INBOX");
if (quotas != null) {
long usage = 0;
long limit = 0;
for (Quota quota : quotas)
if (quota.resources != null)
for (Quota.Resource resource : quota.resources) {
Log.i("Quota " + resource.name + " " + resource.usage + "/" + resource.limit);
if ("STORAGE".equalsIgnoreCase(resource.name)) {
usage += resource.usage * 1024;
limit = Math.max(limit, resource.limit * 1024);
}
}
db.account().setAccountQuota(account.id, usage, limit);
}
} catch (MessagingException ex) {
Log.w(ex);
db.account().setAccountQuota(account.id, null, null);
}
else
db.account().setAccountQuota(account.id, null, null);
2019-12-09 21:26:29 +00:00
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.cancel("receive:" + account.id, 1);
2019-12-10 15:11:49 +00:00
nm.cancel("alert:" + account.id, 1);
2019-12-09 21:26:29 +00:00
// Schedule keep alive alarm
2019-12-12 10:10:57 +00:00
Intent intent = new Intent(ServiceSynchronize.this, ServiceSynchronize.class);
intent.setAction("keepalive:" + account.id);
PendingIntent pi = PendingIntentCompat.getForegroundService(
this, PI_KEEPALIVE, intent, PendingIntent.FLAG_UPDATE_CURRENT);
2019-12-09 21:26:29 +00:00
AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
try {
long duration = account.poll_interval * 60 * 1000L;
long trigger = System.currentTimeMillis() + duration;
EntityLog.log(this, "### " + account.name + " keep alive" +
" wait=" + account.poll_interval + " until=" + new Date(trigger));
2019-12-12 10:10:57 +00:00
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, trigger, pi);
2018-10-08 06:18:44 +00:00
2018-10-10 07:26:04 +00:00
try {
2018-12-02 13:19:54 +00:00
wlAccount.release();
2019-12-09 21:26:29 +00:00
state.acquire(2 * duration);
Log.i("### " + account.name + " keeping alive");
2018-10-10 07:26:04 +00:00
} catch (InterruptedException ex) {
2018-11-28 18:47:16 +00:00
EntityLog.log(this, account.name + " waited state=" + state);
2018-10-10 07:26:04 +00:00
} finally {
2018-12-02 13:19:54 +00:00
wlAccount.acquire();
2018-10-10 07:26:04 +00:00
}
2019-12-09 21:26:29 +00:00
} finally {
2019-12-12 10:10:57 +00:00
am.cancel(pi);
2019-06-21 15:58:41 +00:00
}
first = false;
2018-08-02 13:33:06 +00:00
}
2018-10-08 06:18:44 +00:00
2018-12-24 12:27:45 +00:00
Log.i(account.name + " done state=" + state);
2018-10-10 07:26:04 +00:00
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.e(account.name, ex);
2019-06-25 06:05:28 +00:00
EntityLog.log(
ServiceSynchronize.this,
2019-12-06 07:50:46 +00:00
account.name + " " + Log.formatThrowable(ex, false));
db.account().setAccountError(account.id, Log.formatThrowable(ex));
2018-08-15 19:34:22 +00:00
} finally {
2019-12-09 07:39:51 +00:00
// Update state
EntityLog.log(this, account.name + " closing");
db.account().setAccountState(account.id, "closing");
// Stop watching for operations
2019-03-30 19:26:09 +00:00
handler.post(new Runnable() {
@Override
public void run() {
for (TwoStateOwner owner : cowners)
owner.destroy();
}
});
2019-12-09 07:42:52 +00:00
// Close folders
2019-05-21 13:21:03 +00:00
for (EntityFolder folder : mapFolders.keySet())
2019-12-09 07:42:52 +00:00
if (folder.synchronize && !folder.poll && mapFolders.get(folder) != null) {
db.folder().setFolderState(folder.id, "closing");
2019-12-09 07:42:52 +00:00
try {
2019-12-09 12:14:12 +00:00
if (iservice.getStore().isConnected())
mapFolders.get(folder).close();
} catch (Throwable ex) {
2019-12-09 07:42:52 +00:00
Log.w(ex);
} finally {
db.folder().setFolderState(folder.id, null);
}
}
2018-09-08 05:42:44 +00:00
2018-10-10 07:26:04 +00:00
// Close store
try {
2019-01-05 11:17:33 +00:00
EntityLog.log(this, account.name + " store closing");
2019-07-28 19:45:29 +00:00
iservice.close();
2019-01-05 11:17:33 +00:00
EntityLog.log(this, account.name + " store closed");
} catch (Throwable ex) {
2018-12-24 12:27:45 +00:00
Log.w(account.name, ex);
2018-10-10 07:26:04 +00:00
} finally {
EntityLog.log(this, account.name + " closed");
db.account().setAccountState(account.id, null);
2018-09-08 08:43:13 +00:00
}
2018-10-10 08:07:37 +00:00
// Stop idlers
2018-11-28 18:47:16 +00:00
for (Thread idler : idlers)
state.join(idler);
2018-12-02 13:19:54 +00:00
idlers.clear();
2018-08-15 19:34:22 +00:00
}
2018-08-02 13:33:06 +00:00
2019-12-09 07:51:05 +00:00
if (state.isRunning()) {
int backoff = state.getBackoff();
2019-12-09 07:51:05 +00:00
if (backoff <= CONNECT_BACKOFF_MAX) {
// Short back-off period, keep device awake
EntityLog.log(this, account.name + " backoff=" + backoff);
try {
2020-01-01 15:26:53 +00:00
state.acquire(backoff *
("imap.gmail.com".equalsIgnoreCase(account.host) ? 1500L : 1000L));
2019-12-09 07:51:05 +00:00
} catch (InterruptedException ex) {
Log.w(account.name + " backoff " + ex.toString());
}
} else {
// Long back-off period, let device sleep
2019-12-12 10:10:57 +00:00
Intent intent = new Intent(ServiceSynchronize.this, ServiceSynchronize.class);
intent.setAction("backoff:" + account.id);
PendingIntent pi = PendingIntentCompat.getForegroundService(
this, PI_BACKOFF, intent, PendingIntent.FLAG_UPDATE_CURRENT);
2019-12-09 07:51:05 +00:00
AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
try {
2019-12-09 21:26:29 +00:00
long duration = CONNECT_BACKOFF_AlARM * 60 * 1000L;
long trigger = System.currentTimeMillis() + duration;
EntityLog.log(this, "### " + account.name + " backoff" +
" alarm=" + CONNECT_BACKOFF_AlARM + " until=" + new Date(trigger));
2019-12-12 10:10:57 +00:00
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, trigger, pi);
2018-11-09 08:54:24 +00:00
2019-12-09 07:51:05 +00:00
try {
wlAccount.release();
2019-12-09 21:26:29 +00:00
state.acquire(2 * duration);
2019-12-10 09:36:59 +00:00
Log.i("### " + account.name + " backoff done");
2019-12-09 07:51:05 +00:00
} catch (InterruptedException ex) {
Log.w(account.name + " backoff " + ex.toString());
2018-11-08 17:16:32 +00:00
} finally {
2019-12-09 07:51:05 +00:00
wlAccount.acquire();
}
} finally {
2019-12-12 10:10:57 +00:00
am.cancel(pi);
2018-11-08 17:16:32 +00:00
}
2018-10-10 07:26:04 +00:00
}
2019-12-09 07:51:05 +00:00
if (backoff <= CONNECT_BACKOFF_MAX)
state.setBackoff(backoff * 2);
2019-12-09 07:51:05 +00:00
}
2018-08-02 13:33:06 +00:00
}
2018-10-10 07:26:04 +00:00
} finally {
EntityLog.log(this, account.name + " stopped");
2018-12-02 13:19:54 +00:00
wlAccount.release();
2018-08-02 13:33:06 +00:00
}
}
2020-01-13 12:18:49 +00:00
private boolean isMaxConnections(String message) {
return (message != null &&
(message.contains("Maximum number of connections") /* Dovecot */ ||
message.contains("Too many simultaneous connections") /* Gmail */));
}
2019-10-04 15:17:42 +00:00
private ConnectivityManager.NetworkCallback networkCallback = new ConnectivityManager.NetworkCallback() {
@Override
public void onAvailable(@NonNull Network network) {
2019-12-13 11:06:28 +00:00
EntityLog.log(ServiceSynchronize.this, "Available network=" + network);
updateState();
}
2018-08-02 13:33:06 +00:00
@Override
public void onCapabilitiesChanged(@NonNull Network network, @NonNull NetworkCapabilities capabilities) {
2019-12-13 11:06:28 +00:00
EntityLog.log(ServiceSynchronize.this, "Changed network=" + network + " capabilities " + capabilities);
updateState();
}
2018-08-02 13:33:06 +00:00
@Override
public void onLost(@NonNull Network network) {
2019-12-13 11:06:28 +00:00
try {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo active = cm.getActiveNetworkInfo();
EntityLog.log(ServiceSynchronize.this, "Lost network=" + network + " active=" + active);
if (active == null)
lastLost = new Date().getTime();
} catch (Throwable ex) {
Log.w(ex);
}
updateState();
}
private void updateState() {
ConnectionHelper.NetworkState ns = ConnectionHelper.getNetworkState(ServiceSynchronize.this);
liveNetworkState.postValue(ns);
2019-07-29 14:44:11 +00:00
2019-12-07 21:06:40 +00:00
if (lastSuitable == null || lastSuitable != ns.isSuitable()) {
lastSuitable = ns.isSuitable();
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
2019-12-07 21:06:40 +00:00
nm.notify(Helper.NOTIFICATION_SYNCHRONIZE, getNotificationService(lastAccounts, lastOperations).build());
}
}
2019-03-06 10:18:57 +00:00
};
2019-10-04 15:17:42 +00:00
private BroadcastReceiver connectionChangedReceiver = new BroadcastReceiver() {
2019-09-30 18:44:22 +00:00
@Override
public void onReceive(Context context, Intent intent) {
2019-10-04 15:17:42 +00:00
EntityLog.log(ServiceSynchronize.this, "Received intent=" + intent +
" " + TextUtils.join(" ", Log.getExtras(intent.getExtras())));
2019-10-04 15:17:42 +00:00
if (Intent.ACTION_AIRPLANE_MODE_CHANGED.equals(intent.getAction())) {
boolean on = intent.getBooleanExtra("state", false);
if (!on)
2019-12-12 08:19:30 +00:00
lastLost = 0;
2019-10-04 15:17:42 +00:00
}
networkCallback.onCapabilitiesChanged(null, null);
2019-09-30 18:44:22 +00:00
}
};
2019-07-11 06:42:20 +00:00
private BroadcastReceiver onScreenOff = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Log.i("Received " + intent);
Log.logExtras(intent);
Helper.clearAuthentication(ServiceSynchronize.this);
}
};
2019-12-12 07:56:57 +00:00
private class MediatorState extends MediatorLiveData<List<TupleAccountNetworkState>> {
boolean running = true;
private ConnectionHelper.NetworkState lastNetworkState = null;
private List<TupleAccountState> lastAccountStates = null;
private void post(Bundle command) {
Log.i("### command posted");
for (String extra : Log.getExtras(command))
Log.i("### " + extra);
post(command, lastNetworkState, lastAccountStates);
}
private void post(ConnectionHelper.NetworkState networkState) {
lastNetworkState = networkState;
post(null, lastNetworkState, lastAccountStates);
}
private void post(List<TupleAccountState> accountStates) {
lastAccountStates = accountStates;
post(null, lastNetworkState, lastAccountStates);
}
private void postDestroy() {
if (running) {
running = false;
postValue(null);
}
}
private void post(Bundle command, ConnectionHelper.NetworkState networkState, List<TupleAccountState> accountStates) {
if (!running) {
Log.i("### not running");
return;
}
if (networkState == null || accountStates == null)
return;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ServiceSynchronize.this);
boolean enabled = prefs.getBoolean("enabled", true);
int pollInterval = prefs.getInt("poll_interval", 0);
long[] schedule = getSchedule(ServiceSynchronize.this);
long now = new Date().getTime();
boolean scheduled = (schedule == null || now >= schedule[0] && now < schedule[1]);
if (command == null) {
command = new Bundle();
command.putString("name", "eval");
}
List<TupleAccountNetworkState> result = new ArrayList<>();
for (TupleAccountState accountState : accountStates)
result.add(new TupleAccountNetworkState(
enabled && (pollInterval == 0 || accountState.poll_exempted) && scheduled,
2019-12-12 07:56:57 +00:00
command,
networkState,
accountState));
postValue(result);
}
}
2019-03-06 10:18:57 +00:00
static void boot(final Context context) {
2019-08-01 07:08:28 +00:00
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
DB db = DB.getInstance(context);
2019-12-12 16:20:30 +00:00
// Reset accounts
for (EntityAccount account : db.account().getAccounts())
db.account().setAccountState(account.id, null);
// reset folders
for (EntityFolder folder : db.folder().getFolders()) {
db.folder().setFolderState(folder.id, null);
db.folder().setFolderSyncState(folder.id, null);
}
2019-08-01 07:08:28 +00:00
// Restore notifications
db.message().clearNotifyingMessages();
// Restore snooze timers
for (EntityMessage message : db.message().getSnoozed())
EntityMessage.snooze(context, message.id, message.ui_snoozed);
// Restore schedule
schedule(context);
2019-12-12 16:20:30 +00:00
// Init service
2019-12-13 07:08:18 +00:00
int accounts = db.account().getSynchronizingAccounts().size();
if (accounts > 0)
eval(context, "boot");
2019-08-01 07:08:28 +00:00
} catch (Throwable ex) {
Log.e(ex);
2018-11-29 07:35:34 +00:00
}
2019-08-01 07:08:28 +00:00
}
}, "synchronize:boot");
thread.setPriority(THREAD_PRIORITY_BACKGROUND);
thread.start();
}
2019-02-28 07:55:08 +00:00
private static void schedule(Context context) {
Intent intent = new Intent(context, ServiceSynchronize.class);
intent.setAction("alarm");
PendingIntent pi = PendingIntentCompat.getForegroundService(
context, PI_ALARM, intent, PendingIntent.FLAG_UPDATE_CURRENT);
2019-02-28 07:55:08 +00:00
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
am.cancel(pi);
2019-02-28 07:55:08 +00:00
2020-01-10 11:12:14 +00:00
boolean enabled;
long[] schedule = getSchedule(context);
if (schedule == null)
2020-01-10 11:12:14 +00:00
enabled = true;
else {
long now = new Date().getTime();
long next = (now < schedule[0] ? schedule[0] : schedule[1]);
enabled = (now >= schedule[0] && now < schedule[1]);
2020-01-10 11:12:14 +00:00
Log.i("Schedule now=" + new Date(now));
Log.i("Schedule start=" + new Date(schedule[0]));
Log.i("Schedule end=" + new Date(schedule[1]));
Log.i("Schedule next=" + new Date(next));
Log.i("Schedule enabled=" + enabled);
2020-01-10 11:12:14 +00:00
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, next, pi);
}
ServiceUI.schedule(context, enabled);
}
private static long[] getSchedule(Context context) {
2019-02-28 07:55:08 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
2019-12-23 13:08:04 +00:00
if (!prefs.getBoolean("schedule", false))
return null;
if (!ActivityBilling.isPro(context))
return null;
2019-02-28 07:55:08 +00:00
int minuteStart = prefs.getInt("schedule_start", 0);
int minuteEnd = prefs.getInt("schedule_end", 0);
Calendar calStart = Calendar.getInstance();
calStart.set(Calendar.HOUR_OF_DAY, minuteStart / 60);
calStart.set(Calendar.MINUTE, minuteStart % 60);
calStart.set(Calendar.SECOND, 0);
calStart.set(Calendar.MILLISECOND, 0);
2019-12-23 13:08:04 +00:00
calStart.add(Calendar.DATE, -1);
2019-02-28 07:55:08 +00:00
Calendar calEnd = Calendar.getInstance();
calEnd.set(Calendar.HOUR_OF_DAY, minuteEnd / 60);
calEnd.set(Calendar.MINUTE, minuteEnd % 60);
calEnd.set(Calendar.SECOND, 0);
calEnd.set(Calendar.MILLISECOND, 0);
2019-12-23 13:08:04 +00:00
if (minuteEnd > minuteStart)
calEnd.add(Calendar.DATE, -1);
2019-02-28 07:55:08 +00:00
long now = new Date().getTime();
2019-12-23 13:08:04 +00:00
boolean found = false;
for (int i = 0; i < 8; i++) {
int sdow = calStart.get(Calendar.DAY_OF_WEEK) - 1;
int edow = calEnd.get(Calendar.DAY_OF_WEEK) - 1;
boolean son = prefs.getBoolean("schedule_day" + sdow, true);
boolean eon = prefs.getBoolean("schedule_day" + edow, true);
if (BuildConfig.DEBUG)
Log.i("@@@ eval dow=" + sdow + "/" + edow +
" on=" + son + "/" + eon +
" start=" + new Date(calStart.getTimeInMillis()) +
" end=" + new Date(calEnd.getTimeInMillis()));
if ((son || eon) &&
now < calEnd.getTimeInMillis() &&
(i > 0 || (now >= calStart.getTimeInMillis() && eon))) {
found = true;
if (!son) {
calStart.set(Calendar.HOUR_OF_DAY, 0);
calStart.set(Calendar.MINUTE, 0);
calStart.add(Calendar.DATE, 1);
}
if (!eon) {
calEnd.set(Calendar.HOUR_OF_DAY, 0);
calEnd.set(Calendar.MINUTE, 0);
}
break;
}
calStart.add(Calendar.DATE, 1);
calEnd.add(Calendar.DATE, 1);
}
if (!found) {
if (BuildConfig.DEBUG)
Log.i("@@@ not found");
return null;
2019-02-28 07:55:08 +00:00
}
long start = calStart.getTimeInMillis();
long end = calEnd.getTimeInMillis();
2019-12-23 13:08:04 +00:00
if (BuildConfig.DEBUG) {
Log.i("@@@ start=" + new Date(start));
Log.i("@@@ end=" + new Date(end));
}
if (now > end)
Log.e("Schedule invalid now=" + new Date(now) + " end=" + new Date(end));
if (start > end)
Log.e("Schedule invalid start=" + new Date(start) + " end=" + new Date(end));
2019-04-27 16:07:06 +00:00
return new long[]{start, end};
2019-02-28 07:55:08 +00:00
}
2019-12-09 18:44:27 +00:00
static void eval(Context context, String reason) {
2019-02-14 12:28:03 +00:00
ContextCompat.startForegroundService(context,
new Intent(context, ServiceSynchronize.class)
.setAction("eval")
2019-12-09 18:44:27 +00:00
.putExtra("reason", reason));
}
2019-12-09 21:26:29 +00:00
static void reload(Context context, Long account, String reason) {
2019-12-09 18:44:27 +00:00
ContextCompat.startForegroundService(context,
new Intent(context, ServiceSynchronize.class)
2019-12-09 21:26:29 +00:00
.setAction("reload")
.putExtra("account", account == null ? -1 : account)
.putExtra("reason", reason));
2019-04-17 08:53:15 +00:00
}
static void reschedule(Context context) {
ContextCompat.startForegroundService(context,
new Intent(context, ServiceSynchronize.class)
.setAction("alarm"));
2018-08-02 13:33:06 +00:00
}
}