Initially suppress "Too many simultaneous connections"

This commit is contained in:
M66B 2019-12-11 11:43:32 +01:00
parent 19ce2783f1
commit 6a92eb68e4
2 changed files with 28 additions and 13 deletions

View File

@ -3199,6 +3199,7 @@ class Core {
}
static class State {
private int backoff;
private ConnectionHelper.NetworkState networkState;
private Thread thread;
private Semaphore semaphore = new Semaphore(0);
@ -3217,6 +3218,14 @@ class Core {
return networkState;
}
void setBackoff(int value) {
this.backoff = value;
}
int getBackoff() {
return backoff;
}
void runnable(Runnable runnable, String name) {
thread = new Thread(runnable, name);
thread.setPriority(THREAD_PRIORITY_BACKGROUND);
@ -3227,10 +3236,6 @@ class Core {
yield();
}
void acquire() throws InterruptedException {
semaphore.acquire();
}
boolean acquire(long milliseconds) throws InterruptedException {
return semaphore.tryAcquire(milliseconds, TimeUnit.MILLISECONDS);
}

View File

@ -51,6 +51,8 @@ import androidx.preference.PreferenceManager;
import com.sun.mail.imap.IMAPFolder;
import org.w3c.dom.Text;
import java.net.SocketException;
import java.text.DateFormat;
import java.util.ArrayList;
@ -777,7 +779,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
final DB db = DB.getInstance(this);
int backoff = CONNECT_BACKOFF_START;
state.setBackoff(CONNECT_BACKOFF_START);
while (state.isRunning()) {
state.reset();
Log.i(account.name + " run");
@ -798,17 +800,24 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
iservice.setListener(new StoreListener() {
@Override
public void notification(StoreEvent e) {
String message = e.getMessage();
if (TextUtils.isEmpty(message))
message = "?";
if (e.getMessageType() == StoreEvent.NOTICE)
EntityLog.log(ServiceSynchronize.this, account.name + " notice: " + e.getMessage());
EntityLog.log(ServiceSynchronize.this, account.name + " notice: " + message);
else
try {
wlFolder.acquire();
EntityLog.log(ServiceSynchronize.this, account.name + " " + e.getMessage());
EntityLog.log(ServiceSynchronize.this, account.name + " " + message);
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify("alert:" + account.id, 1,
getNotificationAlert(account.name, e.getMessage()).build());
if (state.getBackoff() > CONNECT_BACKOFF_MAX ||
!(message.startsWith("Maximum number of connections") /* Dovecot */ ||
message.startsWith("Too many simultaneous connections") /* Gmail */)) {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify("alert:" + account.id, 1,
getNotificationAlert(account.name, message).build());
}
} finally {
wlFolder.release();
}
@ -842,7 +851,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
long now = new Date().getTime();
long delayed = now - account.last_connected - account.poll_interval * 60 * 1000L;
if (delayed > ACCOUNT_ERROR_AFTER * 60 * 1000L && backoff > BACKOFF_ERROR_AFTER) {
if (delayed > ACCOUNT_ERROR_AFTER * 60 * 1000L && state.getBackoff() > BACKOFF_ERROR_AFTER) {
Log.i("Reporting sync error after=" + delayed);
Throwable warning = new Throwable(
getString(R.string.title_no_sync,
@ -1197,7 +1206,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
EntityOperation.sync(this, folder.id, false);
// Successfully connected: reset back off time
backoff = CONNECT_BACKOFF_START;
state.setBackoff(CONNECT_BACKOFF_START);
// Record successful connection
account.last_connected = new Date().getTime();
@ -1286,6 +1295,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
}
if (state.isRunning()) {
int backoff = state.getBackoff();
if (backoff <= CONNECT_BACKOFF_MAX) {
// Short back-off period, keep device awake
EntityLog.log(this, account.name + " backoff=" + backoff);
@ -1319,7 +1329,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
}
if (backoff <= CONNECT_BACKOFF_MAX)
backoff *= 2;
state.setBackoff(backoff * 2);
}
}
} finally {