2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-06-27 06:22:49 -07:00
|
|
|
|
2011-10-02 01:16:22 -07:00
|
|
|
const EXPORTED_SYMBOLS = ["SyncScheduler",
|
|
|
|
"ErrorHandler",
|
|
|
|
"SendCredentialsController"];
|
2011-06-27 06:22:49 -07:00
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
|
2011-06-27 06:22:49 -07:00
|
|
|
|
|
|
|
Cu.import("resource://services-sync/constants.js");
|
2012-04-05 23:26:06 -07:00
|
|
|
Cu.import("resource://services-common/log4moz.js");
|
2011-06-27 06:22:49 -07:00
|
|
|
Cu.import("resource://services-sync/util.js");
|
|
|
|
Cu.import("resource://services-sync/engines.js");
|
|
|
|
Cu.import("resource://services-sync/engines/clients.js");
|
|
|
|
Cu.import("resource://services-sync/status.js");
|
|
|
|
|
|
|
|
Cu.import("resource://services-sync/main.js"); // So we can get to Service for callbacks.
|
|
|
|
|
|
|
|
let SyncScheduler = {
|
|
|
|
_log: Log4Moz.repository.getLogger("Sync.SyncScheduler"),
|
|
|
|
|
2011-10-27 22:25:00 -07:00
|
|
|
_fatalLoginStatus: [LOGIN_FAILED_NO_USERNAME,
|
|
|
|
LOGIN_FAILED_NO_PASSWORD,
|
|
|
|
LOGIN_FAILED_NO_PASSPHRASE,
|
|
|
|
LOGIN_FAILED_INVALID_PASSPHRASE,
|
|
|
|
LOGIN_FAILED_LOGIN_REJECTED],
|
|
|
|
|
2011-06-28 18:48:55 -07:00
|
|
|
/**
|
|
|
|
* The nsITimer object that schedules the next sync. See scheduleNextSync().
|
|
|
|
*/
|
|
|
|
syncTimer: null,
|
|
|
|
|
|
|
|
setDefaults: function setDefaults() {
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.trace("Setting SyncScheduler policy values to defaults.");
|
2011-06-29 20:12:24 -07:00
|
|
|
|
|
|
|
this.singleDeviceInterval = Svc.Prefs.get("scheduler.singleDeviceInterval") * 1000;
|
|
|
|
this.idleInterval = Svc.Prefs.get("scheduler.idleInterval") * 1000;
|
|
|
|
this.activeInterval = Svc.Prefs.get("scheduler.activeInterval") * 1000;
|
|
|
|
this.immediateInterval = Svc.Prefs.get("scheduler.immediateInterval") * 1000;
|
|
|
|
|
2011-06-28 18:48:55 -07:00
|
|
|
// A user is non-idle on startup by default.
|
|
|
|
this.idle = false;
|
|
|
|
|
|
|
|
this.hasIncomingItems = false;
|
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
this.clearSyncTriggers();
|
2011-06-28 18:48:55 -07:00
|
|
|
},
|
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
// nextSync is in milliseconds, but prefs can't hold that much
|
|
|
|
get nextSync() Svc.Prefs.get("nextSync", 0) * 1000,
|
|
|
|
set nextSync(value) Svc.Prefs.set("nextSync", Math.floor(value / 1000)),
|
|
|
|
|
|
|
|
get syncInterval() Svc.Prefs.get("syncInterval", this.singleDeviceInterval),
|
|
|
|
set syncInterval(value) Svc.Prefs.set("syncInterval", value),
|
|
|
|
|
|
|
|
get syncThreshold() Svc.Prefs.get("syncThreshold", SINGLE_USER_THRESHOLD),
|
|
|
|
set syncThreshold(value) Svc.Prefs.set("syncThreshold", value),
|
|
|
|
|
2011-06-27 06:22:49 -07:00
|
|
|
get globalScore() Svc.Prefs.get("globalScore", 0),
|
|
|
|
set globalScore(value) Svc.Prefs.set("globalScore", value),
|
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
get numClients() Svc.Prefs.get("numClients", 0),
|
|
|
|
set numClients(value) Svc.Prefs.set("numClients", value),
|
|
|
|
|
2011-06-27 06:22:49 -07:00
|
|
|
init: function init() {
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.level = Log4Moz.Level[Svc.Prefs.get("log.logger.service.main")];
|
2011-06-28 18:48:55 -07:00
|
|
|
this.setDefaults();
|
2011-06-27 06:22:49 -07:00
|
|
|
Svc.Obs.add("weave:engine:score:updated", this);
|
|
|
|
Svc.Obs.add("network:offline-status-changed", this);
|
|
|
|
Svc.Obs.add("weave:service:sync:start", this);
|
|
|
|
Svc.Obs.add("weave:service:sync:finish", this);
|
|
|
|
Svc.Obs.add("weave:engine:sync:finish", this);
|
2011-08-26 14:01:35 -07:00
|
|
|
Svc.Obs.add("weave:engine:sync:error", this);
|
2011-06-27 06:22:49 -07:00
|
|
|
Svc.Obs.add("weave:service:login:error", this);
|
|
|
|
Svc.Obs.add("weave:service:logout:finish", this);
|
|
|
|
Svc.Obs.add("weave:service:sync:error", this);
|
|
|
|
Svc.Obs.add("weave:service:backoff:interval", this);
|
2011-07-21 12:20:55 -07:00
|
|
|
Svc.Obs.add("weave:service:ready", this);
|
2011-06-27 06:24:33 -07:00
|
|
|
Svc.Obs.add("weave:engine:sync:applied", this);
|
2011-07-21 12:21:34 -07:00
|
|
|
Svc.Obs.add("weave:service:setup-complete", this);
|
|
|
|
Svc.Obs.add("weave:service:start-over", this);
|
2011-08-26 14:01:35 -07:00
|
|
|
|
2011-07-21 12:21:34 -07:00
|
|
|
if (Status.checkSetup() == STATUS_OK) {
|
|
|
|
Svc.Idle.addIdleObserver(this, Svc.Prefs.get("scheduler.idleTime"));
|
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
observe: function observe(subject, topic, data) {
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("Handling " + topic);
|
2011-06-27 06:22:49 -07:00
|
|
|
switch(topic) {
|
|
|
|
case "weave:engine:score:updated":
|
2011-09-06 09:17:26 -07:00
|
|
|
if (Status.login == LOGIN_SUCCEEDED) {
|
|
|
|
Utils.namedTimer(this.calculateScore, SCORE_UPDATE_DELAY, this,
|
|
|
|
"_scoreTimer");
|
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
break;
|
|
|
|
case "network:offline-status-changed":
|
|
|
|
// Whether online or offline, we'll reschedule syncs
|
|
|
|
this._log.trace("Network offline status change: " + data);
|
|
|
|
this.checkSyncStatus();
|
|
|
|
break;
|
|
|
|
case "weave:service:sync:start":
|
|
|
|
// Clear out any potentially pending syncs now that we're syncing
|
|
|
|
this.clearSyncTriggers();
|
|
|
|
|
|
|
|
// reset backoff info, if the server tells us to continue backing off,
|
|
|
|
// we'll handle that later
|
|
|
|
Status.resetBackoff();
|
|
|
|
|
|
|
|
this.globalScore = 0;
|
|
|
|
break;
|
|
|
|
case "weave:service:sync:finish":
|
2011-10-04 20:52:14 -07:00
|
|
|
this.nextSync = 0;
|
2011-06-27 06:24:33 -07:00
|
|
|
this.adjustSyncInterval();
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
if (Status.service == SYNC_FAILED_PARTIAL && this.requiresBackoff) {
|
|
|
|
this.requiresBackoff = false;
|
|
|
|
this.handleSyncError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-04 20:52:14 -07:00
|
|
|
let sync_interval;
|
2011-08-26 14:01:35 -07:00
|
|
|
this._syncErrors = 0;
|
2011-06-27 06:22:49 -07:00
|
|
|
if (Status.sync == NO_SYNC_NODE_FOUND) {
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.trace("Scheduling a sync at interval NO_SYNC_NODE_FOUND.");
|
2011-06-27 06:22:49 -07:00
|
|
|
sync_interval = NO_SYNC_NODE_INTERVAL;
|
|
|
|
}
|
|
|
|
this.scheduleNextSync(sync_interval);
|
|
|
|
break;
|
|
|
|
case "weave:engine:sync:finish":
|
2011-07-29 18:47:39 -07:00
|
|
|
if (data == "clients") {
|
2011-06-27 06:22:49 -07:00
|
|
|
// Update the client mode because it might change what we sync.
|
|
|
|
this.updateClientMode();
|
|
|
|
}
|
|
|
|
break;
|
2011-08-26 14:01:35 -07:00
|
|
|
case "weave:engine:sync:error":
|
2011-10-27 22:25:01 -07:00
|
|
|
// `subject` is the exception thrown by an engine's sync() method.
|
2011-08-26 14:01:35 -07:00
|
|
|
let exception = subject;
|
|
|
|
if (exception.status >= 500 && exception.status <= 504) {
|
|
|
|
this.requiresBackoff = true;
|
|
|
|
}
|
|
|
|
break;
|
2011-06-27 06:22:49 -07:00
|
|
|
case "weave:service:login:error":
|
|
|
|
this.clearSyncTriggers();
|
2011-08-26 14:01:35 -07:00
|
|
|
|
2011-06-29 20:12:16 -07:00
|
|
|
if (Status.login == MASTER_PASSWORD_LOCKED) {
|
2011-10-27 22:25:00 -07:00
|
|
|
// Try again later, just as if we threw an error... only without the
|
|
|
|
// error count.
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.debug("Couldn't log in: master password is locked.");
|
|
|
|
this._log.trace("Scheduling a sync at MASTER_PASSWORD_LOCKED_RETRY_INTERVAL");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.scheduleAtInterval(MASTER_PASSWORD_LOCKED_RETRY_INTERVAL);
|
2011-10-27 22:25:00 -07:00
|
|
|
} else if (this._fatalLoginStatus.indexOf(Status.login) == -1) {
|
|
|
|
// Not a fatal login error, just an intermittent network or server
|
|
|
|
// issue. Keep on syncin'.
|
|
|
|
this.checkSyncStatus();
|
2011-06-29 20:12:16 -07:00
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
break;
|
|
|
|
case "weave:service:logout:finish":
|
|
|
|
// Start or cancel the sync timer depending on if
|
|
|
|
// logged in or logged out
|
|
|
|
this.checkSyncStatus();
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
2011-06-27 06:22:49 -07:00
|
|
|
case "weave:service:sync:error":
|
2011-07-21 12:21:34 -07:00
|
|
|
// There may be multiple clients but if the sync fails, client mode
|
|
|
|
// should still be updated so that the next sync has a correct interval.
|
|
|
|
this.updateClientMode();
|
2011-06-27 06:24:33 -07:00
|
|
|
this.adjustSyncInterval();
|
2011-10-04 20:52:14 -07:00
|
|
|
this.nextSync = 0;
|
2011-06-27 06:22:49 -07:00
|
|
|
this.handleSyncError();
|
|
|
|
break;
|
|
|
|
case "weave:service:backoff:interval":
|
2011-10-03 22:52:07 -07:00
|
|
|
let requested_interval = subject * 1000;
|
|
|
|
// Leave up to 25% more time for the back off.
|
|
|
|
let interval = requested_interval * (1 + Math.random() * 0.25);
|
2011-06-27 06:22:49 -07:00
|
|
|
Status.backoffInterval = interval;
|
2011-10-03 22:52:07 -07:00
|
|
|
Status.minimumNextSync = Date.now() + requested_interval;
|
2011-06-27 06:22:49 -07:00
|
|
|
break;
|
2011-07-21 12:20:55 -07:00
|
|
|
case "weave:service:ready":
|
|
|
|
// Applications can specify this preference if they want autoconnect
|
|
|
|
// to happen after a fixed delay.
|
|
|
|
let delay = Svc.Prefs.get("autoconnectDelay");
|
|
|
|
if (delay) {
|
|
|
|
this.delayedAutoConnect(delay);
|
|
|
|
}
|
|
|
|
break;
|
2011-06-27 06:24:33 -07:00
|
|
|
case "weave:engine:sync:applied":
|
2012-03-06 14:27:56 -08:00
|
|
|
let numItems = subject.succeeded;
|
|
|
|
this._log.trace("Engine " + data + " successfully applied " + numItems +
|
|
|
|
" items.");
|
|
|
|
if (numItems) {
|
2011-06-27 06:24:33 -07:00
|
|
|
this.hasIncomingItems = true;
|
2012-03-06 14:27:56 -08:00
|
|
|
}
|
2011-06-27 06:24:33 -07:00
|
|
|
break;
|
2011-07-21 12:21:34 -07:00
|
|
|
case "weave:service:setup-complete":
|
|
|
|
Svc.Idle.addIdleObserver(this, Svc.Prefs.get("scheduler.idleTime"));
|
|
|
|
break;
|
|
|
|
case "weave:service:start-over":
|
|
|
|
SyncScheduler.setDefaults();
|
2011-09-22 15:44:06 -07:00
|
|
|
try {
|
|
|
|
Svc.Idle.removeIdleObserver(this, Svc.Prefs.get("scheduler.idleTime"));
|
|
|
|
} catch (ex if (ex.result == Cr.NS_ERROR_FAILURE)) {
|
|
|
|
// In all likelihood we didn't have an idle observer registered yet.
|
|
|
|
// It's all good.
|
|
|
|
}
|
2011-07-21 12:21:34 -07:00
|
|
|
break;
|
2011-06-27 06:24:33 -07:00
|
|
|
case "idle":
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.trace("We're idle.");
|
2011-06-27 06:24:33 -07:00
|
|
|
this.idle = true;
|
2011-06-28 18:48:55 -07:00
|
|
|
// Adjust the interval for future syncs. This won't actually have any
|
|
|
|
// effect until the next pending sync (which will happen soon since we
|
|
|
|
// were just active.)
|
|
|
|
this.adjustSyncInterval();
|
2011-06-27 06:24:33 -07:00
|
|
|
break;
|
|
|
|
case "back":
|
2011-10-04 20:04:13 -07:00
|
|
|
this._log.trace("Received notification that we're back from idle.");
|
2011-06-27 06:24:33 -07:00
|
|
|
this.idle = false;
|
2011-10-04 20:04:13 -07:00
|
|
|
Utils.namedTimer(function onBack() {
|
|
|
|
if (this.idle) {
|
|
|
|
this._log.trace("... and we're idle again. " +
|
|
|
|
"Ignoring spurious back notification.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._log.trace("Genuine return from idle. Syncing.");
|
|
|
|
// Trigger a sync if we have multiple clients.
|
|
|
|
if (this.numClients > 1) {
|
2011-10-04 20:52:14 -07:00
|
|
|
this.scheduleNextSync(0);
|
2011-10-04 20:04:13 -07:00
|
|
|
}
|
|
|
|
}, IDLE_OBSERVER_BACK_DELAY, this, "idleDebouncerTimer");
|
2011-06-27 06:24:33 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
adjustSyncInterval: function adjustSyncInterval() {
|
|
|
|
if (this.numClients <= 1) {
|
2011-06-29 20:12:24 -07:00
|
|
|
this._log.trace("Adjusting syncInterval to singleDeviceInterval.");
|
|
|
|
this.syncInterval = this.singleDeviceInterval;
|
2011-06-27 06:24:33 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Only MULTI_DEVICE clients will enter this if statement
|
|
|
|
// since SINGLE_USER clients will be handled above.
|
|
|
|
if (this.idle) {
|
2011-06-29 20:12:24 -07:00
|
|
|
this._log.trace("Adjusting syncInterval to idleInterval.");
|
|
|
|
this.syncInterval = this.idleInterval;
|
2011-06-27 06:24:33 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.hasIncomingItems) {
|
2011-06-29 20:12:24 -07:00
|
|
|
this._log.trace("Adjusting syncInterval to immediateInterval.");
|
2011-06-27 06:24:33 -07:00
|
|
|
this.hasIncomingItems = false;
|
2011-06-29 20:12:24 -07:00
|
|
|
this.syncInterval = this.immediateInterval;
|
2011-06-27 06:24:33 -07:00
|
|
|
} else {
|
2011-06-29 20:12:24 -07:00
|
|
|
this._log.trace("Adjusting syncInterval to activeInterval.");
|
|
|
|
this.syncInterval = this.activeInterval;
|
2011-06-27 06:24:33 -07:00
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
calculateScore: function calculateScore() {
|
2011-08-09 09:25:12 -07:00
|
|
|
let engines = [Clients].concat(Engines.getEnabled());
|
2011-06-27 06:22:49 -07:00
|
|
|
for (let i = 0;i < engines.length;i++) {
|
|
|
|
this._log.trace(engines[i].name + ": score: " + engines[i].score);
|
|
|
|
this.globalScore += engines[i].score;
|
|
|
|
engines[i]._tracker.resetScore();
|
|
|
|
}
|
|
|
|
|
|
|
|
this._log.trace("Global score updated: " + this.globalScore);
|
|
|
|
this.checkSyncStatus();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the locally stored clients list to figure out what mode to be in
|
|
|
|
*/
|
|
|
|
updateClientMode: function updateClientMode() {
|
|
|
|
// Nothing to do if it's the same amount
|
2011-08-26 14:01:35 -07:00
|
|
|
let numClients = Clients.stats.numClients;
|
2011-06-27 06:24:33 -07:00
|
|
|
if (this.numClients == numClients)
|
2011-06-27 06:22:49 -07:00
|
|
|
return;
|
|
|
|
|
2011-06-27 06:24:33 -07:00
|
|
|
this._log.debug("Client count: " + this.numClients + " -> " + numClients);
|
|
|
|
this.numClients = numClients;
|
2011-06-27 06:22:49 -07:00
|
|
|
|
2011-06-27 06:24:33 -07:00
|
|
|
if (numClients <= 1) {
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.trace("Adjusting syncThreshold to SINGLE_USER_THRESHOLD");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.syncThreshold = SINGLE_USER_THRESHOLD;
|
2011-06-29 20:12:16 -07:00
|
|
|
} else {
|
|
|
|
this._log.trace("Adjusting syncThreshold to MULTI_DEVICE_THRESHOLD");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.syncThreshold = MULTI_DEVICE_THRESHOLD;
|
|
|
|
}
|
2011-06-27 06:24:33 -07:00
|
|
|
this.adjustSyncInterval();
|
2011-06-27 06:22:49 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we should be syncing and schedule the next sync, if it's not scheduled
|
|
|
|
*/
|
|
|
|
checkSyncStatus: function checkSyncStatus() {
|
|
|
|
// Should we be syncing now, if not, cancel any sync timers and return
|
2011-07-13 15:20:07 -07:00
|
|
|
// if we're in backoff, we'll schedule the next sync.
|
|
|
|
let ignore = [kSyncBackoffNotMet, kSyncMasterPasswordLocked];
|
2011-06-27 06:22:49 -07:00
|
|
|
let skip = Weave.Service._checkSync(ignore);
|
|
|
|
this._log.trace("_checkSync returned \"" + skip + "\".");
|
|
|
|
if (skip) {
|
|
|
|
this.clearSyncTriggers();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only set the wait time to 0 if we need to sync right away
|
|
|
|
let wait;
|
|
|
|
if (this.globalScore > this.syncThreshold) {
|
|
|
|
this._log.debug("Global Score threshold hit, triggering sync.");
|
|
|
|
wait = 0;
|
|
|
|
}
|
|
|
|
this.scheduleNextSync(wait);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call sync() if Master Password is not locked.
|
2011-08-26 14:01:35 -07:00
|
|
|
*
|
2011-06-27 06:22:49 -07:00
|
|
|
* Otherwise, reschedule a sync for later.
|
|
|
|
*/
|
|
|
|
syncIfMPUnlocked: function syncIfMPUnlocked() {
|
|
|
|
// No point if we got kicked out by the master password dialog.
|
|
|
|
if (Status.login == MASTER_PASSWORD_LOCKED &&
|
|
|
|
Utils.mpLocked()) {
|
|
|
|
this._log.debug("Not initiating sync: Login status is " + Status.login);
|
|
|
|
|
|
|
|
// If we're not syncing now, we need to schedule the next one.
|
2011-06-29 20:12:16 -07:00
|
|
|
this._log.trace("Scheduling a sync at MASTER_PASSWORD_LOCKED_RETRY_INTERVAL");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.scheduleAtInterval(MASTER_PASSWORD_LOCKED_RETRY_INTERVAL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.nextTick(Weave.Service.sync, Weave.Service);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a timer for the next sync
|
|
|
|
*/
|
|
|
|
scheduleNextSync: function scheduleNextSync(interval) {
|
2011-10-04 20:52:14 -07:00
|
|
|
// If no interval was specified, use the current sync interval.
|
|
|
|
if (interval == null) {
|
|
|
|
interval = this.syncInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the interval is set to no less than the backoff.
|
|
|
|
if (Status.backoffInterval && interval < Status.backoffInterval) {
|
2011-10-13 17:58:44 -07:00
|
|
|
this._log.trace("Requested interval " + interval +
|
|
|
|
" ms is smaller than the backoff interval. " +
|
|
|
|
"Using backoff interval " +
|
|
|
|
Status.backoffInterval + " ms instead.");
|
2011-10-04 20:52:14 -07:00
|
|
|
interval = Status.backoffInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.nextSync != 0) {
|
2011-10-13 17:58:44 -07:00
|
|
|
// There's already a sync scheduled. Don't reschedule if there's already
|
|
|
|
// a timer scheduled for sooner than requested.
|
2011-10-04 20:52:14 -07:00
|
|
|
let currentInterval = this.nextSync - Date.now();
|
2011-10-13 17:58:44 -07:00
|
|
|
this._log.trace("There's already a sync scheduled in " +
|
|
|
|
currentInterval + " ms.");
|
|
|
|
if (currentInterval < interval && this.syncTimer) {
|
|
|
|
this._log.trace("Ignoring scheduling request for next sync in " +
|
|
|
|
interval + " ms.");
|
2011-10-04 20:52:14 -07:00
|
|
|
return;
|
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
}
|
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
// Start the sync right away if we're already late.
|
2011-06-27 06:22:49 -07:00
|
|
|
if (interval <= 0) {
|
2011-10-13 17:58:44 -07:00
|
|
|
this._log.trace("Requested sync should happen right away.");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.syncIfMPUnlocked();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
this._log.debug("Next sync in " + interval + " ms.");
|
2011-06-29 20:12:27 -07:00
|
|
|
Utils.namedTimer(this.syncIfMPUnlocked, interval, this, "syncTimer");
|
2011-06-27 06:22:49 -07:00
|
|
|
|
|
|
|
// Save the next sync time in-case sync is disabled (logout/offline/etc.)
|
|
|
|
this.nextSync = Date.now() + interval;
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Incorporates the backoff/retry logic used in error handling and elective
|
|
|
|
* non-syncing.
|
|
|
|
*/
|
|
|
|
scheduleAtInterval: function scheduleAtInterval(minimumInterval) {
|
2012-03-22 15:49:50 -07:00
|
|
|
let interval = Utils.calculateBackoff(this._syncErrors,
|
|
|
|
MINIMUM_BACKOFF_INTERVAL,
|
|
|
|
Status.backoffInterval);
|
2011-10-13 17:58:44 -07:00
|
|
|
if (minimumInterval) {
|
2011-06-27 06:22:49 -07:00
|
|
|
interval = Math.max(minimumInterval, interval);
|
2011-10-13 17:58:44 -07:00
|
|
|
}
|
2011-06-27 06:22:49 -07:00
|
|
|
|
2011-10-13 17:58:44 -07:00
|
|
|
this._log.debug("Starting client-initiated backoff. Next sync in " +
|
|
|
|
interval + " ms.");
|
2011-06-27 06:22:49 -07:00
|
|
|
this.scheduleNextSync(interval);
|
|
|
|
},
|
|
|
|
|
2011-07-21 12:20:55 -07:00
|
|
|
/**
|
|
|
|
* Automatically start syncing after the given delay (in seconds).
|
|
|
|
*
|
|
|
|
* Applications can define the `services.sync.autoconnectDelay` preference
|
|
|
|
* to have this called automatically during start-up with the pref value as
|
|
|
|
* the argument. Alternatively, they can call it themselves to control when
|
|
|
|
* Sync should first start to sync.
|
|
|
|
*/
|
|
|
|
delayedAutoConnect: function delayedAutoConnect(delay) {
|
|
|
|
if (Weave.Service._checkSetup() == STATUS_OK) {
|
|
|
|
Utils.namedTimer(this.autoConnect, delay * 1000, this, "_autoTimer");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
autoConnect: function autoConnect() {
|
|
|
|
if (Weave.Service._checkSetup() == STATUS_OK && !Weave.Service._checkSync()) {
|
2011-10-13 17:58:44 -07:00
|
|
|
// Schedule a sync based on when a previous sync was scheduled.
|
|
|
|
// scheduleNextSync() will do the right thing if that time lies in
|
|
|
|
// the past.
|
|
|
|
this.scheduleNextSync(this.nextSync - Date.now());
|
2011-07-21 12:20:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Once autoConnect is called we no longer need _autoTimer.
|
|
|
|
if (this._autoTimer) {
|
|
|
|
this._autoTimer.clear();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-06-27 06:22:49 -07:00
|
|
|
_syncErrors: 0,
|
|
|
|
/**
|
|
|
|
* Deal with sync errors appropriately
|
|
|
|
*/
|
|
|
|
handleSyncError: function handleSyncError() {
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("In handleSyncError. Error count: " + this._syncErrors);
|
2011-06-27 06:22:49 -07:00
|
|
|
this._syncErrors++;
|
|
|
|
|
|
|
|
// Do nothing on the first couple of failures, if we're not in
|
|
|
|
// backoff due to 5xx errors.
|
|
|
|
if (!Status.enforceBackoff) {
|
|
|
|
if (this._syncErrors < MAX_ERROR_COUNT_BEFORE_BACKOFF) {
|
|
|
|
this.scheduleNextSync();
|
|
|
|
return;
|
|
|
|
}
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.debug("Sync error count has exceeded " +
|
|
|
|
MAX_ERROR_COUNT_BEFORE_BACKOFF + "; enforcing backoff.");
|
2011-06-27 06:22:49 -07:00
|
|
|
Status.enforceBackoff = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.scheduleAtInterval();
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove any timers/observers that might trigger a sync
|
|
|
|
*/
|
|
|
|
clearSyncTriggers: function clearSyncTriggers() {
|
2011-11-01 11:41:47 -07:00
|
|
|
this._log.debug("Clearing sync triggers and the global score.");
|
|
|
|
this.globalScore = this.nextSync = 0;
|
2011-06-27 06:22:49 -07:00
|
|
|
|
|
|
|
// Clear out any scheduled syncs
|
2011-06-28 18:48:55 -07:00
|
|
|
if (this.syncTimer)
|
|
|
|
this.syncTimer.clear();
|
2011-06-27 06:22:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2011-08-26 14:01:35 -07:00
|
|
|
|
|
|
|
const LOG_PREFIX_SUCCESS = "success-";
|
|
|
|
const LOG_PREFIX_ERROR = "error-";
|
|
|
|
|
|
|
|
let ErrorHandler = {
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
/**
|
|
|
|
* Flag that turns on error reporting for all errors, incl. network errors.
|
|
|
|
*/
|
|
|
|
dontIgnoreErrors: false,
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
init: function init() {
|
2011-08-26 14:01:35 -07:00
|
|
|
Svc.Obs.add("weave:engine:sync:applied", this);
|
|
|
|
Svc.Obs.add("weave:engine:sync:error", this);
|
2011-08-26 14:01:35 -07:00
|
|
|
Svc.Obs.add("weave:service:login:error", this);
|
|
|
|
Svc.Obs.add("weave:service:sync:error", this);
|
|
|
|
Svc.Obs.add("weave:service:sync:finish", this);
|
|
|
|
|
|
|
|
this.initLogs();
|
|
|
|
},
|
|
|
|
|
|
|
|
initLogs: function initLogs() {
|
|
|
|
this._log = Log4Moz.repository.getLogger("Sync.ErrorHandler");
|
2011-08-26 14:01:35 -07:00
|
|
|
this._log.level = Log4Moz.Level[Svc.Prefs.get("log.logger.service.main")];
|
2011-09-08 16:52:07 -07:00
|
|
|
this._cleaningUpFileLogs = false;
|
2011-08-26 14:01:35 -07:00
|
|
|
|
|
|
|
let root = Log4Moz.repository.getLogger("Sync");
|
|
|
|
root.level = Log4Moz.Level[Svc.Prefs.get("log.rootLogger")];
|
|
|
|
|
|
|
|
let formatter = new Log4Moz.BasicFormatter();
|
|
|
|
let capp = new Log4Moz.ConsoleAppender(formatter);
|
|
|
|
capp.level = Log4Moz.Level[Svc.Prefs.get("log.appender.console")];
|
|
|
|
root.addAppender(capp);
|
|
|
|
|
|
|
|
let dapp = new Log4Moz.DumpAppender(formatter);
|
|
|
|
dapp.level = Log4Moz.Level[Svc.Prefs.get("log.appender.dump")];
|
|
|
|
root.addAppender(dapp);
|
|
|
|
|
|
|
|
let fapp = this._logAppender = new Log4Moz.StorageStreamAppender(formatter);
|
|
|
|
fapp.level = Log4Moz.Level[Svc.Prefs.get("log.appender.file.level")];
|
|
|
|
root.addAppender(fapp);
|
|
|
|
},
|
|
|
|
|
|
|
|
observe: function observe(subject, topic, data) {
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("Handling " + topic);
|
2011-08-26 14:01:35 -07:00
|
|
|
switch(topic) {
|
2011-08-26 14:01:35 -07:00
|
|
|
case "weave:engine:sync:applied":
|
|
|
|
if (subject.newFailed) {
|
|
|
|
// An engine isn't able to apply one or more incoming records.
|
|
|
|
// We don't fail hard on this, but it usually indicates a bug,
|
|
|
|
// so for now treat it as sync error (c.f. Service._syncEngine())
|
|
|
|
Status.engines = [data, ENGINE_APPLY_FAIL];
|
|
|
|
this._log.debug(data + " failed to apply some records.");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "weave:engine:sync:error":
|
|
|
|
let exception = subject; // exception thrown by engine's sync() method
|
|
|
|
let engine_name = data; // engine name that threw the exception
|
|
|
|
|
|
|
|
this.checkServerError(exception);
|
|
|
|
|
|
|
|
Status.engines = [engine_name, exception.failureCode || ENGINE_UNKNOWN_FAIL];
|
|
|
|
this._log.debug(engine_name + " failed: " + Utils.exceptionStr(exception));
|
|
|
|
break;
|
2011-08-26 14:01:35 -07:00
|
|
|
case "weave:service:login:error":
|
2011-10-11 08:24:26 -07:00
|
|
|
this.resetFileLog(Svc.Prefs.get("log.appender.file.logOnError"),
|
|
|
|
LOG_PREFIX_ERROR);
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
if (this.shouldReportError()) {
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:login:error");
|
2011-08-30 15:38:31 -07:00
|
|
|
} else {
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:clear-error");
|
2011-08-26 14:01:35 -07:00
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
|
|
|
|
this.dontIgnoreErrors = false;
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
case "weave:service:sync:error":
|
2011-08-26 14:01:35 -07:00
|
|
|
if (Status.sync == CREDENTIALS_CHANGED) {
|
|
|
|
Weave.Service.logout();
|
|
|
|
}
|
|
|
|
|
2011-10-11 08:24:26 -07:00
|
|
|
this.resetFileLog(Svc.Prefs.get("log.appender.file.logOnError"),
|
|
|
|
LOG_PREFIX_ERROR);
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
if (this.shouldReportError()) {
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:sync:error");
|
2011-08-26 14:01:35 -07:00
|
|
|
} else {
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:sync:finish");
|
2011-08-26 14:01:35 -07:00
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
|
|
|
|
this.dontIgnoreErrors = false;
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
case "weave:service:sync:finish":
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("Status.service is " + Status.service);
|
2011-10-27 22:25:01 -07:00
|
|
|
|
|
|
|
// Check both of these status codes: in the event of a failure in one
|
|
|
|
// engine, Status.service will be SYNC_FAILED_PARTIAL despite
|
|
|
|
// Status.sync being SYNC_SUCCEEDED.
|
|
|
|
// *facepalm*
|
|
|
|
if (Status.sync == SYNC_SUCCEEDED &&
|
|
|
|
Status.service == STATUS_OK) {
|
|
|
|
// Great. Let's clear our mid-sync 401 note.
|
|
|
|
this._log.trace("Clearing lastSyncReassigned.");
|
|
|
|
Svc.Prefs.reset("lastSyncReassigned");
|
|
|
|
}
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
if (Status.service == SYNC_FAILED_PARTIAL) {
|
|
|
|
this._log.debug("Some engines did not sync correctly.");
|
|
|
|
this.resetFileLog(Svc.Prefs.get("log.appender.file.logOnError"),
|
|
|
|
LOG_PREFIX_ERROR);
|
2011-08-26 14:01:35 -07:00
|
|
|
|
|
|
|
if (this.shouldReportError()) {
|
2011-08-26 16:45:08 -07:00
|
|
|
this.dontIgnoreErrors = false;
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:sync:error");
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
} else {
|
|
|
|
this.resetFileLog(Svc.Prefs.get("log.appender.file.logOnSuccess"),
|
|
|
|
LOG_PREFIX_SUCCESS);
|
|
|
|
}
|
2011-08-26 16:45:08 -07:00
|
|
|
this.dontIgnoreErrors = false;
|
2011-09-06 19:15:28 -07:00
|
|
|
this.notifyOnNextTick("weave:ui:sync:finish");
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-09-06 19:15:28 -07:00
|
|
|
notifyOnNextTick: function notifyOnNextTick(topic) {
|
2011-10-27 22:25:00 -07:00
|
|
|
Utils.nextTick(function() {
|
|
|
|
this._log.trace("Notifying " + topic +
|
|
|
|
". Status.login is " + Status.login +
|
|
|
|
". Status.sync is " + Status.sync);
|
|
|
|
Svc.Obs.notify(topic);
|
|
|
|
}, this);
|
2011-09-06 19:15:28 -07:00
|
|
|
},
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
/**
|
|
|
|
* Trigger a sync and don't muffle any errors, particularly network errors.
|
|
|
|
*/
|
|
|
|
syncAndReportErrors: function syncAndReportErrors() {
|
|
|
|
this._log.debug("Beginning user-triggered sync.");
|
|
|
|
|
|
|
|
this.dontIgnoreErrors = true;
|
|
|
|
Utils.nextTick(Weave.Service.sync, Weave.Service);
|
|
|
|
},
|
|
|
|
|
2011-09-08 16:52:07 -07:00
|
|
|
/**
|
|
|
|
* Finds all logs older than maxErrorAge and deletes them without tying up I/O.
|
|
|
|
*/
|
|
|
|
cleanupLogs: function cleanupLogs() {
|
|
|
|
let direntries = FileUtils.getDir("ProfD", ["weave", "logs"]).directoryEntries;
|
|
|
|
let oldLogs = [];
|
|
|
|
let index = 0;
|
|
|
|
let threshold = Date.now() - 1000 * Svc.Prefs.get("log.appender.file.maxErrorAge");
|
|
|
|
|
|
|
|
while (direntries.hasMoreElements()) {
|
|
|
|
let logFile = direntries.getNext().QueryInterface(Ci.nsIFile);
|
|
|
|
if (logFile.lastModifiedTime < threshold) {
|
|
|
|
oldLogs.push(logFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deletes a file from oldLogs each tick until there are none left.
|
|
|
|
function deleteFile() {
|
|
|
|
if (index >= oldLogs.length) {
|
|
|
|
ErrorHandler._cleaningUpFileLogs = false;
|
|
|
|
Svc.Obs.notify("weave:service:cleanup-logs");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
oldLogs[index].remove(false);
|
|
|
|
} catch (ex) {
|
|
|
|
ErrorHandler._log._debug("Encountered error trying to clean up old log file '"
|
|
|
|
+ oldLogs[index].leafName + "':"
|
|
|
|
+ Utils.exceptionStr(ex));
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
Utils.nextTick(deleteFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oldLogs.length > 0) {
|
|
|
|
ErrorHandler._cleaningUpFileLogs = true;
|
|
|
|
Utils.nextTick(deleteFile);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
/**
|
|
|
|
* Generate a log file for the sync that just completed
|
|
|
|
* and refresh the input & output streams.
|
2011-08-26 14:01:35 -07:00
|
|
|
*
|
2011-08-26 14:01:35 -07:00
|
|
|
* @param flushToFile
|
|
|
|
* the log file to be flushed/reset
|
|
|
|
*
|
|
|
|
* @param filenamePrefix
|
|
|
|
* a value of either LOG_PREFIX_SUCCESS or LOG_PREFIX_ERROR
|
|
|
|
* to be used as the log filename prefix
|
|
|
|
*/
|
|
|
|
resetFileLog: function resetFileLog(flushToFile, filenamePrefix) {
|
|
|
|
let inStream = this._logAppender.getInputStream();
|
|
|
|
this._logAppender.reset();
|
|
|
|
if (flushToFile && inStream) {
|
|
|
|
try {
|
|
|
|
let filename = filenamePrefix + Date.now() + ".txt";
|
|
|
|
let file = FileUtils.getFile("ProfD", ["weave", "logs", filename]);
|
|
|
|
let outStream = FileUtils.openFileOutputStream(file);
|
|
|
|
NetUtil.asyncCopy(inStream, outStream, function () {
|
|
|
|
Svc.Obs.notify("weave:service:reset-file-log");
|
2011-09-08 16:52:07 -07:00
|
|
|
if (filenamePrefix == LOG_PREFIX_ERROR
|
|
|
|
&& !ErrorHandler._cleaningUpFileLogs) {
|
|
|
|
Utils.nextTick(ErrorHandler.cleanupLogs, ErrorHandler);
|
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
});
|
|
|
|
} catch (ex) {
|
|
|
|
Svc.Obs.notify("weave:service:reset-file-log");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Svc.Obs.notify("weave:service:reset-file-log");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Translates server error codes to meaningful strings.
|
2011-08-26 14:01:35 -07:00
|
|
|
*
|
2011-08-26 14:01:35 -07:00
|
|
|
* @param code
|
|
|
|
* server error code as an integer
|
|
|
|
*/
|
|
|
|
errorStr: function errorStr(code) {
|
|
|
|
switch (code.toString()) {
|
|
|
|
case "1":
|
|
|
|
return "illegal-method";
|
|
|
|
case "2":
|
|
|
|
return "invalid-captcha";
|
|
|
|
case "3":
|
|
|
|
return "invalid-username";
|
|
|
|
case "4":
|
|
|
|
return "cannot-overwrite-resource";
|
|
|
|
case "5":
|
|
|
|
return "userid-mismatch";
|
|
|
|
case "6":
|
|
|
|
return "json-parse-failure";
|
|
|
|
case "7":
|
|
|
|
return "invalid-password";
|
|
|
|
case "8":
|
|
|
|
return "invalid-record";
|
|
|
|
case "9":
|
|
|
|
return "weak-password";
|
|
|
|
default:
|
|
|
|
return "generic-server-error";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
shouldReportError: function shouldReportError() {
|
|
|
|
if (Status.login == MASTER_PASSWORD_LOCKED) {
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("shouldReportError: false (master password locked).");
|
2011-08-26 14:01:35 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-08-26 16:45:08 -07:00
|
|
|
if (this.dontIgnoreErrors) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-26 14:01:35 -07:00
|
|
|
let lastSync = Svc.Prefs.get("lastSync");
|
|
|
|
if (lastSync && ((Date.now() - Date.parse(lastSync)) >
|
|
|
|
Svc.Prefs.get("errorhandler.networkFailureReportTimeout") * 1000)) {
|
|
|
|
Status.sync = PROLONGED_SYNC_FAILURE;
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.trace("shouldReportError: true (prolonged sync failure).");
|
2011-08-26 14:01:35 -07:00
|
|
|
return true;
|
|
|
|
}
|
2011-10-27 22:25:01 -07:00
|
|
|
|
|
|
|
// We got a 401 mid-sync. Wait for the next sync before actually handling
|
|
|
|
// an error. This assumes that we'll get a 401 again on a login fetch in
|
|
|
|
// order to report the error.
|
|
|
|
if (!Weave.Service.clusterURL) {
|
|
|
|
this._log.trace("shouldReportError: false (no cluster URL; " +
|
|
|
|
"possible node reassignment).");
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
|
2011-09-06 09:17:26 -07:00
|
|
|
return ([Status.login, Status.sync].indexOf(SERVER_MAINTENANCE) == -1 &&
|
2011-08-26 14:01:35 -07:00
|
|
|
[Status.login, Status.sync].indexOf(LOGIN_FAILED_NETWORK_ERROR) == -1);
|
2011-08-26 14:01:35 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle HTTP response results or exceptions and set the appropriate
|
|
|
|
* Status.* bits.
|
|
|
|
*/
|
|
|
|
checkServerError: function checkServerError(resp) {
|
|
|
|
switch (resp.status) {
|
|
|
|
case 400:
|
|
|
|
if (resp == RESPONSE_OVER_QUOTA) {
|
|
|
|
Status.sync = OVER_QUOTA;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 401:
|
|
|
|
Weave.Service.logout();
|
2011-10-27 22:25:01 -07:00
|
|
|
this._log.info("Got 401 response; resetting clusterURL.");
|
|
|
|
Svc.Prefs.reset("clusterURL");
|
|
|
|
|
|
|
|
let delay = 0;
|
|
|
|
if (Svc.Prefs.get("lastSyncReassigned")) {
|
|
|
|
// We got a 401 in the middle of the previous sync, and we just got
|
|
|
|
// another. Login must have succeeded in order for us to get here, so
|
|
|
|
// the password should be correct.
|
|
|
|
// This is likely to be an intermittent server issue, so back off and
|
|
|
|
// give it time to recover.
|
|
|
|
this._log.warn("Last sync also failed for 401. Delaying next sync.");
|
|
|
|
delay = MINIMUM_BACKOFF_INTERVAL;
|
|
|
|
} else {
|
|
|
|
this._log.debug("New mid-sync 401 failure. Making a note.");
|
|
|
|
Svc.Prefs.set("lastSyncReassigned", true);
|
|
|
|
}
|
|
|
|
this._log.info("Attempting to schedule another sync.");
|
|
|
|
SyncScheduler.scheduleNextSync(delay);
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 500:
|
|
|
|
case 502:
|
|
|
|
case 503:
|
|
|
|
case 504:
|
|
|
|
Status.enforceBackoff = true;
|
|
|
|
if (resp.status == 503 && resp.headers["retry-after"]) {
|
2011-09-06 09:17:26 -07:00
|
|
|
if (Weave.Service.isLoggedIn) {
|
|
|
|
Status.sync = SERVER_MAINTENANCE;
|
|
|
|
} else {
|
|
|
|
Status.login = SERVER_MAINTENANCE;
|
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
Svc.Obs.notify("weave:service:backoff:interval",
|
|
|
|
parseInt(resp.headers["retry-after"], 10));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (resp.result) {
|
|
|
|
case Cr.NS_ERROR_UNKNOWN_HOST:
|
|
|
|
case Cr.NS_ERROR_CONNECTION_REFUSED:
|
|
|
|
case Cr.NS_ERROR_NET_TIMEOUT:
|
|
|
|
case Cr.NS_ERROR_NET_RESET:
|
|
|
|
case Cr.NS_ERROR_NET_INTERRUPT:
|
|
|
|
case Cr.NS_ERROR_PROXY_CONNECTION_REFUSED:
|
|
|
|
// The constant says it's about login, but in fact it just
|
|
|
|
// indicates general network error.
|
2011-09-06 09:17:26 -07:00
|
|
|
if (Weave.Service.isLoggedIn) {
|
|
|
|
Status.sync = LOGIN_FAILED_NETWORK_ERROR;
|
|
|
|
} else {
|
|
|
|
Status.login = LOGIN_FAILED_NETWORK_ERROR;
|
|
|
|
}
|
2011-08-26 14:01:35 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
2011-10-02 01:16:22 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send credentials over an active J-PAKE channel.
|
|
|
|
*
|
|
|
|
* This object is designed to take over as the JPAKEClient controller,
|
|
|
|
* presumably replacing one that is UI-based which would either cause
|
|
|
|
* DOM objects to leak or the JPAKEClient to be GC'ed when the DOM
|
|
|
|
* context disappears. This object stays alive for the duration of the
|
|
|
|
* transfer by being strong-ref'ed as an nsIObserver.
|
|
|
|
*
|
|
|
|
* Credentials are sent after the first sync has been completed
|
|
|
|
* (successfully or not.)
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
*
|
|
|
|
* jpakeclient.controller = new SendCredentialsController(jpakeclient);
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function SendCredentialsController(jpakeclient) {
|
|
|
|
this._log = Log4Moz.repository.getLogger("Sync.SendCredentialsController");
|
|
|
|
this._log.level = Log4Moz.Level[Svc.Prefs.get("log.logger.service.main")];
|
|
|
|
|
|
|
|
this._log.trace("Loading.");
|
|
|
|
this.jpakeclient = jpakeclient;
|
|
|
|
|
|
|
|
// Register ourselves as observers the first Sync finishing (either
|
|
|
|
// successfully or unsuccessfully, we don't care) or for removing
|
|
|
|
// this device's sync configuration, in case that happens while we
|
|
|
|
// haven't finished the first sync yet.
|
|
|
|
Services.obs.addObserver(this, "weave:service:sync:finish", false);
|
|
|
|
Services.obs.addObserver(this, "weave:service:sync:error", false);
|
|
|
|
Services.obs.addObserver(this, "weave:service:start-over", false);
|
|
|
|
}
|
|
|
|
SendCredentialsController.prototype = {
|
|
|
|
|
|
|
|
unload: function unload() {
|
|
|
|
this._log.trace("Unloading.");
|
|
|
|
try {
|
|
|
|
Services.obs.removeObserver(this, "weave:service:sync:finish");
|
|
|
|
Services.obs.removeObserver(this, "weave:service:sync:error");
|
|
|
|
Services.obs.removeObserver(this, "weave:service:start-over");
|
|
|
|
} catch (ex) {
|
|
|
|
// Ignore.
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
observe: function observe(subject, topic, data) {
|
|
|
|
switch (topic) {
|
|
|
|
case "weave:service:sync:finish":
|
|
|
|
case "weave:service:sync:error":
|
|
|
|
Utils.nextTick(this.sendCredentials, this);
|
|
|
|
break;
|
|
|
|
case "weave:service:start-over":
|
|
|
|
// This will call onAbort which will call unload().
|
|
|
|
this.jpakeclient.abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
sendCredentials: function sendCredentials() {
|
|
|
|
this._log.trace("Sending credentials.");
|
2012-03-22 15:49:50 -07:00
|
|
|
let credentials = {account: Weave.Identity.account,
|
|
|
|
password: Weave.Identity.basicPassword,
|
|
|
|
synckey: Weave.Identity.syncKey,
|
2011-10-02 01:16:22 -07:00
|
|
|
serverURL: Weave.Service.serverURL};
|
|
|
|
this.jpakeclient.sendAndComplete(credentials);
|
|
|
|
},
|
|
|
|
|
|
|
|
// JPAKEClient controller API
|
|
|
|
|
|
|
|
onComplete: function onComplete() {
|
|
|
|
this._log.debug("Exchange was completed successfully!");
|
|
|
|
this.unload();
|
2011-10-02 01:18:27 -07:00
|
|
|
|
|
|
|
// Schedule a Sync for soonish to fetch the data uploaded by the
|
|
|
|
// device with which we just paired.
|
|
|
|
SyncScheduler.scheduleNextSync(SyncScheduler.activeInterval);
|
2011-10-02 01:16:22 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
onAbort: function onAbort(error) {
|
|
|
|
// It doesn't really matter why we aborted, but the channel is closed
|
|
|
|
// for sure, so we won't be able to do anything with it.
|
|
|
|
this._log.debug("Exchange was aborted with error: " + error);
|
|
|
|
this.unload();
|
|
|
|
},
|
|
|
|
|
|
|
|
// Irrelevant methods for this controller:
|
|
|
|
displayPIN: function displayPIN() {},
|
|
|
|
onPairingStart: function onPairingStart() {},
|
|
|
|
onPaired: function onPaired() {}
|
|
|
|
};
|