mirror of https://github.com/M66B/FairEmail.git
Long back-off
This commit is contained in:
parent
866c873649
commit
55f7f40b5a
|
@ -106,7 +106,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||||
private static final long QUIT_DELAY = 5 * 1000L; // milliseconds
|
private static final long QUIT_DELAY = 5 * 1000L; // milliseconds
|
||||||
private static final int CONNECT_BACKOFF_START = 8; // seconds
|
private static final int CONNECT_BACKOFF_START = 8; // seconds
|
||||||
private static final int CONNECT_BACKOFF_MAX = 64; // seconds (totally 2 minutes)
|
private static final int CONNECT_BACKOFF_MAX = 64; // seconds (totally 2 minutes)
|
||||||
private static final int CONNECT_BACKOFF_AlARM = 15; // minutes
|
private static final int CONNECT_BACKOFF_AlARM_START = 15; // minutes
|
||||||
|
private static final int CONNECT_BACKOFF_AlARM_MAX = 60; // minutes
|
||||||
private static final long RECONNECT_BACKOFF = 90 * 1000L; // milliseconds
|
private static final long RECONNECT_BACKOFF = 90 * 1000L; // milliseconds
|
||||||
private static final int ACCOUNT_ERROR_AFTER = 60; // minutes
|
private static final int ACCOUNT_ERROR_AFTER = 60; // minutes
|
||||||
private static final int ACCOUNT_ERROR_AFTER_POLL = 3; // times
|
private static final int ACCOUNT_ERROR_AFTER_POLL = 3; // times
|
||||||
|
@ -1460,9 +1461,9 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||||
|
|
||||||
if (state.isRunning()) {
|
if (state.isRunning()) {
|
||||||
int backoff = state.getBackoff();
|
int backoff = state.getBackoff();
|
||||||
|
EntityLog.log(this, account.name + " backoff=" + backoff);
|
||||||
if (backoff <= CONNECT_BACKOFF_MAX) {
|
if (backoff <= CONNECT_BACKOFF_MAX) {
|
||||||
// Short back-off period, keep device awake
|
// Short back-off period, keep device awake
|
||||||
EntityLog.log(this, account.name + " backoff=" + backoff);
|
|
||||||
try {
|
try {
|
||||||
state.acquire(backoff * 1000L * (state.getMaxConnections() ? 2 : 1));
|
state.acquire(backoff * 1000L * (state.getMaxConnections() ? 2 : 1));
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
|
@ -1482,15 +1483,13 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||||
|
|
||||||
AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
|
AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
|
||||||
try {
|
try {
|
||||||
long duration = CONNECT_BACKOFF_AlARM * 60 * 1000L;
|
long trigger = System.currentTimeMillis() + backoff * 1000L;
|
||||||
long trigger = System.currentTimeMillis() + duration;
|
EntityLog.log(this, "### " + account.name + " backoff until=" + new Date(trigger));
|
||||||
EntityLog.log(this, "### " + account.name + " backoff" +
|
|
||||||
" alarm=" + CONNECT_BACKOFF_AlARM + " until=" + new Date(trigger));
|
|
||||||
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, trigger, pi);
|
AlarmManagerCompat.setAndAllowWhileIdle(am, AlarmManager.RTC_WAKEUP, trigger, pi);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
wlAccount.release();
|
wlAccount.release();
|
||||||
state.acquire(2 * duration);
|
state.acquire(2 * backoff * 1000L);
|
||||||
Log.i("### " + account.name + " backoff done");
|
Log.i("### " + account.name + " backoff done");
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
Log.w(account.name + " backoff " + ex.toString());
|
Log.w(account.name + " backoff " + ex.toString());
|
||||||
|
@ -1502,7 +1501,11 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (backoff <= CONNECT_BACKOFF_MAX)
|
if (backoff < CONNECT_BACKOFF_MAX)
|
||||||
|
state.setBackoff(backoff * 2);
|
||||||
|
else if (backoff == CONNECT_BACKOFF_MAX)
|
||||||
|
state.setBackoff(CONNECT_BACKOFF_AlARM_START * 60);
|
||||||
|
else if (backoff < CONNECT_BACKOFF_AlARM_MAX * 60)
|
||||||
state.setBackoff(backoff * 2);
|
state.setBackoff(backoff * 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue