Auto optimize keep alive

This commit is contained in:
M66B 2020-03-31 16:41:29 +02:00
parent 2ee82e5d28
commit f5ca67bf0e
1 changed files with 9 additions and 9 deletions

View File

@ -1318,14 +1318,14 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
boolean first = true; boolean first = true;
while (state.isRunning()) { while (state.isRunning()) {
long idleTime = state.getIdleTime(); long idleTime = state.getIdleTime();
boolean idleOk = (!first && account.poll_interval > 9 && boolean auto_optimize = prefs.getBoolean("auto_optimize", false);
boolean optimize = (auto_optimize && !first &&
!account.keep_alive_ok && account.poll_interval > 9 &&
Math.abs(idleTime - account.poll_interval * 60 * 1000L) < 60 * 1000L); Math.abs(idleTime - account.poll_interval * 60 * 1000L) < 60 * 1000L);
if (BuildConfig.DEBUG) if (auto_optimize && !first && !account.keep_alive_ok)
EntityLog.log(ServiceSynchronize.this, account.name + EntityLog.log(ServiceSynchronize.this, account.name +
" first=" + first + " Optimize interval=" + account.poll_interval +
" ok=" + account.keep_alive_ok + " idle=" + idleTime + "/" + optimize);
" interval=" + account.poll_interval +
" idle=" + idleTime + "/" + idleOk);
try { try {
if (!state.isRecoverable()) if (!state.isRecoverable())
throw new StoreClosedException(iservice.getStore(), "Unrecoverable"); throw new StoreClosedException(iservice.getStore(), "Unrecoverable");
@ -1356,7 +1356,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
Log.i(folder.name + " poll count=" + folder.poll_count); Log.i(folder.name + " poll count=" + folder.poll_count);
} }
} catch (Throwable ex) { } catch (Throwable ex) {
if (BuildConfig.DEBUG && !account.keep_alive_ok && idleOk) { if (optimize) {
account.keep_alive_failed++; account.keep_alive_failed++;
if (account.keep_alive_failed >= 3) { if (account.keep_alive_failed >= 3) {
account.keep_alive_failed = 0; account.keep_alive_failed = 0;
@ -1367,12 +1367,12 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
EntityLog.log(ServiceSynchronize.this, account.name + EntityLog.log(ServiceSynchronize.this, account.name +
" keep alive failed=" + account.keep_alive_failed + " keep alive failed=" + account.keep_alive_failed +
" keep alive interval=" + account.poll_interval + " keep alive interval=" + account.poll_interval +
" max idle=" + idleTime + "/" + idleOk); " max idle=" + idleTime + "/" + optimize);
} }
throw ex; throw ex;
} }
if (BuildConfig.DEBUG && !account.keep_alive_ok && idleOk) { if (optimize) {
account.keep_alive_ok = true; account.keep_alive_ok = true;
account.keep_alive_failed = 0; account.keep_alive_failed = 0;
db.account().setAccountKeepAliveOk(account.id, true); db.account().setAccountKeepAliveOk(account.id, true);