mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
862 lines
28 KiB
JavaScript
862 lines
28 KiB
JavaScript
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Bookmarks Sync.
|
|
*
|
|
* The Initial Developer of the Original Code is Mozilla.
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Dan Mills <thunder@mozilla.com>
|
|
* Myk Melez <myk@mozilla.org>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
const EXPORTED_SYMBOLS = ['Engines', 'NewEngine', 'Engine', 'SyncEngine', 'BlobEngine'];
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cr = Components.results;
|
|
const Cu = Components.utils;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://weave/log4moz.js");
|
|
Cu.import("resource://weave/constants.js");
|
|
Cu.import("resource://weave/util.js");
|
|
Cu.import("resource://weave/wrap.js");
|
|
Cu.import("resource://weave/crypto.js");
|
|
Cu.import("resource://weave/resource.js");
|
|
Cu.import("resource://weave/clientData.js");
|
|
Cu.import("resource://weave/identity.js");
|
|
Cu.import("resource://weave/stores.js");
|
|
Cu.import("resource://weave/syncCores.js");
|
|
Cu.import("resource://weave/trackers.js");
|
|
Cu.import("resource://weave/async.js");
|
|
|
|
Cu.import("resource://weave/base_records/wbo.js");
|
|
Cu.import("resource://weave/base_records/keys.js");
|
|
Cu.import("resource://weave/base_records/crypto.js");
|
|
Cu.import("resource://weave/base_records/collection.js");
|
|
|
|
Function.prototype.async = Async.sugar;
|
|
|
|
// Singleton service, holds registered engines
|
|
|
|
Utils.lazy(this, 'Engines', EngineManagerSvc);
|
|
|
|
function EngineManagerSvc() {
|
|
this._engines = {};
|
|
}
|
|
EngineManagerSvc.prototype = {
|
|
get: function EngMgr_get(name) {
|
|
return this._engines[name];
|
|
},
|
|
getAll: function EngMgr_getAll() {
|
|
let ret = [];
|
|
for (key in this._engines) {
|
|
ret.push(this._engines[key]);
|
|
}
|
|
return ret;
|
|
},
|
|
getEnabled: function EngMgr_getEnabled() {
|
|
let ret = [];
|
|
for (key in this._engines) {
|
|
if(this._engines[key].enabled)
|
|
ret.push(this._engines[key]);
|
|
}
|
|
return ret;
|
|
},
|
|
register: function EngMgr_register(engine) {
|
|
this._engines[engine.name] = engine;
|
|
},
|
|
unregister: function EngMgr_unregister(val) {
|
|
let name = val;
|
|
if (val instanceof Engine)
|
|
name = val.name;
|
|
delete this._engines[name];
|
|
}
|
|
};
|
|
|
|
function Engine() {}
|
|
Engine.prototype = {
|
|
_notify: Wrap.notify,
|
|
|
|
// "default-engine";
|
|
get name() { throw "name property must be overridden in subclasses"; },
|
|
|
|
// "Default";
|
|
get displayName() { throw "displayName property must be overriden in subclasses"; },
|
|
|
|
// "DefaultEngine";
|
|
get logName() { throw "logName property must be overridden in subclasses"; },
|
|
|
|
// "user-data/default-engine/";
|
|
get serverPrefix() { throw "serverPrefix property must be overridden in subclasses"; },
|
|
|
|
get enabled() {
|
|
return Utils.prefs.getBoolPref("engine." + this.name);
|
|
},
|
|
|
|
get _os() {
|
|
let os = Cc["@mozilla.org/observer-service;1"].
|
|
getService(Ci.nsIObserverService);
|
|
this.__defineGetter__("_os", function() os);
|
|
return os;
|
|
},
|
|
|
|
get _json() {
|
|
let json = Cc["@mozilla.org/dom/json;1"].
|
|
createInstance(Ci.nsIJSON);
|
|
this.__defineGetter__("_json", function() json);
|
|
return json;
|
|
},
|
|
|
|
// _core, _store and _tracker need to be overridden in subclasses
|
|
get _store() {
|
|
let store = new Store();
|
|
this.__defineGetter__("_store", function() store);
|
|
return store;
|
|
},
|
|
|
|
get _core() {
|
|
let core = new SyncCore(this._store);
|
|
this.__defineGetter__("_core", function() core);
|
|
return core;
|
|
},
|
|
|
|
get _tracker() {
|
|
let tracker = new tracker();
|
|
this.__defineGetter__("_tracker", function() tracker);
|
|
return tracker;
|
|
},
|
|
|
|
get engineId() {
|
|
let id = ID.get('Engine:' + this.name);
|
|
if (!id) {
|
|
// Copy the service login from WeaveID
|
|
let masterID = ID.get('WeaveID');
|
|
|
|
id = new Identity(this.logName, masterID.username, masterID.password);
|
|
ID.set('Engine:' + this.name, id);
|
|
}
|
|
return id;
|
|
},
|
|
|
|
_init: function Engine__init() {
|
|
let levelPref = "log.logger.service.engine." + this.name;
|
|
let level = "Debug";
|
|
try { level = Utils.prefs.getCharPref(levelPref); }
|
|
catch (e) { /* ignore unset prefs */ }
|
|
|
|
this._log = Log4Moz.repository.getLogger("Service." + this.logName);
|
|
this._log.level = Log4Moz.Level[level];
|
|
this._osPrefix = "weave:" + this.name + ":";
|
|
},
|
|
|
|
_serializeCommands: function Engine__serializeCommands(commands) {
|
|
let json = this._json.encode(commands);
|
|
//json = json.replace(/ {action/g, "\n {action");
|
|
return json;
|
|
},
|
|
|
|
_serializeConflicts: function Engine__serializeConflicts(conflicts) {
|
|
let json = this._json.encode(conflicts);
|
|
//json = json.replace(/ {action/g, "\n {action");
|
|
return json;
|
|
},
|
|
|
|
_resetServer: function Engine__resetServer() {
|
|
let self = yield;
|
|
throw "_resetServer needs to be subclassed";
|
|
},
|
|
|
|
_resetClient: function Engine__resetClient() {
|
|
let self = yield;
|
|
this._log.debug("Resetting client state");
|
|
this._store.wipe();
|
|
this._log.debug("Client reset completed successfully");
|
|
},
|
|
|
|
_sync: function Engine__sync() {
|
|
let self = yield;
|
|
throw "_sync needs to be subclassed";
|
|
},
|
|
|
|
_initialUpload: function Engine__initialUpload() {
|
|
let self = yield;
|
|
throw "_initialUpload needs to be subclassed";
|
|
},
|
|
|
|
_share: function Engine__share(guid, username) {
|
|
let self = yield;
|
|
/* This should be overridden by the engine subclass for each datatype.
|
|
Implementation should share the data node identified by guid,
|
|
and all its children, if any, with the user identified by username. */
|
|
self.done();
|
|
},
|
|
|
|
_stopSharing: function Engine__stopSharing(guid, username) {
|
|
let self = yield;
|
|
/* This should be overridden by the engine subclass for each datatype.
|
|
Stop sharing the data node identified by guid with the user identified
|
|
by username.*/
|
|
self.done();
|
|
},
|
|
|
|
sync: function Engine_sync(onComplete) {
|
|
return this._sync.async(this, onComplete);
|
|
},
|
|
|
|
share: function Engine_share(onComplete, guid, username) {
|
|
return this._share.async(this, onComplete, guid, username);
|
|
},
|
|
|
|
stopSharing: function Engine_share(onComplete, guid, username) {
|
|
return this._stopSharing.async(this, onComplete, guid, username);
|
|
},
|
|
|
|
resetServer: function Engimne_resetServer(onComplete) {
|
|
this._notify("reset-server", "", this._resetServer).async(this, onComplete);
|
|
},
|
|
|
|
resetClient: function Engine_resetClient(onComplete) {
|
|
this._notify("reset-client", "", this._resetClient).async(this, onComplete);
|
|
}
|
|
};
|
|
|
|
function NewEngine() {}
|
|
NewEngine.prototype = {
|
|
__proto__: Engine.prototype,
|
|
|
|
get _snapshot() {
|
|
let snap = new SnapshotStore(this.name);
|
|
this.__defineGetter__("_snapshot", function() snap);
|
|
return snap;
|
|
},
|
|
|
|
get lastSync() {
|
|
try {
|
|
return Utils.prefs.getCharPref(this.name + ".lastSync");
|
|
} catch (e) {
|
|
return 0;
|
|
}
|
|
},
|
|
set lastSync(value) {
|
|
Utils.prefs.setCharPref(this.name + ".lastSync", value);
|
|
},
|
|
|
|
_incoming: null,
|
|
get incoming() {
|
|
if (!this._incoming)
|
|
this._incoming = [];
|
|
return this._incoming;
|
|
},
|
|
|
|
_outgoing: null,
|
|
get outgoing() {
|
|
if (!this._outgoing)
|
|
this._outgoing = [];
|
|
return this._outgoing;
|
|
},
|
|
|
|
get baseURL() {
|
|
let url = Utils.prefs.getCharPref("serverURL");
|
|
if (url && url[url.length-1] != '/')
|
|
url = url + '/';
|
|
return url;
|
|
},
|
|
|
|
get engineURL() {
|
|
return this.baseURL + ID.get('WeaveID').username + '/' + this.name + '/';
|
|
},
|
|
|
|
get cryptoMetaURL() {
|
|
return this.baseURL + ID.get('WeaveID').username + '/crypto/' + this.name;
|
|
},
|
|
|
|
_remoteSetup: function NewEngine__remoteSetup() {
|
|
let self = yield;
|
|
|
|
let meta = yield CryptoMetas.get(self.cb, this.cryptoMetaURL);
|
|
if (!meta) {
|
|
let cryptoSvc = Cc["@labs.mozilla.com/Weave/Crypto;1"].
|
|
getService(Ci.IWeaveCrypto);
|
|
let symkey = cryptoSvc.generateRandomKey();
|
|
let pubkey = yield PubKeys.getDefaultKey(self.cb);
|
|
meta = new CryptoMeta(this.cryptoMetaURL);
|
|
meta.generateIV();
|
|
yield meta.addUnwrappedKey(self.cb, pubkey, symkey);
|
|
yield meta.put(self.cb);
|
|
}
|
|
},
|
|
|
|
_createRecord: function NewEngine__newCryptoWrapper(id, payload, encrypt) {
|
|
let self = yield;
|
|
|
|
let record = new CryptoWrapper();
|
|
record.uri = this.engineURL + id;
|
|
record.encryption = this.cryptoMetaURL;
|
|
record.cleartext = payload;
|
|
if (payload.parentGUID) // FIXME: should be parentid
|
|
record.parentid = payload.parentGUID;
|
|
if (encrypt || encrypt == undefined)
|
|
yield record.encrypt(self.cb, ID.get('WeaveCryptoID').password);
|
|
|
|
self.done(record);
|
|
},
|
|
|
|
_recDepth: function NewEngine__recDepth(rec) {
|
|
// we've calculated depth for this record already
|
|
if (rec.depth)
|
|
return rec.depth;
|
|
|
|
// record has no parent
|
|
if (!rec.parentid)
|
|
return 0;
|
|
|
|
// search for the record's parent and calculate its depth, then add one
|
|
for each (let inc in this.incoming) {
|
|
if (inc.id == rec.parentid) {
|
|
rec.depth = this._recDepth(inc) + 1;
|
|
return rec.depth;
|
|
}
|
|
}
|
|
|
|
// we couldn't find the record's parent, so it's an orphan
|
|
return 0;
|
|
},
|
|
|
|
_recordLike: function NewEngine__recordLike(a, b) {
|
|
// Check that all other properties are the same
|
|
if (!Utils.deepEquals(a.parentid, b.parentid))
|
|
return false;
|
|
for (let key in a.cleartext) {
|
|
if (key == "parentGUID")
|
|
continue; // FIXME: bookmarks-specific
|
|
if (!Utils.deepEquals(a.cleartext[key], b.cleartext[key]))
|
|
return false;
|
|
}
|
|
for (key in b.cleartext) {
|
|
if (key == "parentGUID")
|
|
continue; // FIXME: bookmarks-specific
|
|
if (!Utils.deepEquals(a.cleartext[key], b.cleartext[key]))
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
|
|
_changeRecordRefs: function NewEngine__changeRecordRefs(oldID, newID) {
|
|
let self = yield;
|
|
for each (let rec in this.outgoing) {
|
|
if (rec.parentid == oldID)
|
|
rec.parentid = newID;
|
|
}
|
|
},
|
|
|
|
_changeRecordID: function NewEngine__changeRecordID(oldID, newID) {
|
|
let self = yield;
|
|
throw "_changeRecordID must be overridden in a subclass";
|
|
},
|
|
|
|
_sync: function NewEngine__sync() {
|
|
let self = yield;
|
|
|
|
// STEP 0: Get our crypto records in order
|
|
this._log.debug("Ensuring server crypto records are there");
|
|
|
|
yield this._remoteSetup.async(this, self.cb);
|
|
|
|
// STEP 1: Generate outgoing items
|
|
this._log.debug("Calculating client changes");
|
|
|
|
if (!this.lastSync) {
|
|
// first sync: upload all items
|
|
let all = this._store.wrap();
|
|
for (let key in all) {
|
|
let record = yield this._createRecord.async(this, self.cb, key, all[key]);
|
|
this.outgoing.push(record);
|
|
}
|
|
} else {
|
|
// we've synced before: use snapshot to upload changes only
|
|
this._snapshot.load();
|
|
let newsnap = this._store.wrap();
|
|
let updates = yield this._core.detectUpdates(self.cb,
|
|
this._snapshot.data, newsnap);
|
|
for each (let cmd in updates) {
|
|
let data = "";
|
|
if (cmd.action == "create" || cmd.action == "edit")
|
|
data = newsnap[cmd.GUID];
|
|
let record = yield this._createRecord.async(this, self.cb, cmd.GUID, data);
|
|
this.outgoing.push(record);
|
|
}
|
|
}
|
|
|
|
// STEP 2.1: Find new items from server, place into incoming queue
|
|
this._log.debug("Downloading server changes");
|
|
|
|
let newitems = new Collection(this.engineURL);
|
|
newitems.modified = this.lastSync;
|
|
newitems.full = true;
|
|
yield newitems.get(self.cb);
|
|
|
|
let item;
|
|
while ((item = yield newitems.iter.next(self.cb))) {
|
|
this.incoming.push(item);
|
|
}
|
|
|
|
// STEP 2.2: Decrypt items, then analyze incoming records and sort them
|
|
for each (let inc in this.incoming) {
|
|
yield inc.decrypt(self.cb, ID.get('WeaveCryptoID').password);
|
|
this._recDepth(inc); // note: doesn't need access to payload
|
|
}
|
|
this.incoming.sort(function(a, b) {
|
|
if ((typeof(a.depth) == "number" && typeof(b.depth) == "undefined") ||
|
|
(typeof(a.depth) == "number" && b.depth == null) ||
|
|
(a.depth > b.depth))
|
|
return 1;
|
|
if ((typeof(a.depth) == "undefined" && typeof(b.depth) == "number") ||
|
|
(a.depth == null && typeof(b.depth) == "number") ||
|
|
(a.depth < b.depth))
|
|
return -1;
|
|
if (a.cleartext.index > b.cleartext.index)
|
|
return 1;
|
|
if (a.cleartext.index < b.cleartext.index)
|
|
return -1;
|
|
return 0;
|
|
});
|
|
|
|
// STEP 3: Reconcile
|
|
this._log.debug("Reconciling server/client changes");
|
|
|
|
// STEP 3.1: Check for the same item (same ID) on both incoming & outgoing
|
|
// queues. Client one wins in this case.
|
|
let conflicts = [];
|
|
for (let i = 0; i < this.incoming.length; i++) {
|
|
for each (let out in this.outgoing) {
|
|
if (this.incoming[i].id == out.id) {
|
|
conflicts.push({in: this.incoming[i], out: out});
|
|
delete this.incoming[i];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
this._incoming = this.incoming.filter(function(i) i); // removes any holes
|
|
if (conflicts.length)
|
|
this._log.debug("Conflicts found. Conflicting server changes discarded");
|
|
|
|
// STEP 3.2: Check if any incoming & outgoing items are really the same but
|
|
// with different IDs
|
|
for (let i = 0; i < this.incoming.length; i++) {
|
|
for (let o = 0; o < this.outgoing.length; o++) {
|
|
if (this._recordLike(this.incoming[i], this.outgoing[o])) {
|
|
// change refs in outgoing queue
|
|
yield this._changeRecordRefs.async(this, self.cb,
|
|
this.outgoing[o].id,
|
|
this.incoming[i].id);
|
|
// change actual id of item
|
|
yield this._changeRecordID.async(this, self.cb,
|
|
this.outgoing[o].id,
|
|
this.incoming[i].id);
|
|
delete this.incoming[i];
|
|
delete this.outgoing[o];
|
|
break;
|
|
}
|
|
}
|
|
this._outgoing = this.outgoing.filter(function(i) i); // removes any holes
|
|
}
|
|
this._incoming = this.incoming.filter(function(i) i); // removes any holes
|
|
|
|
// STEP 4: Apply incoming items
|
|
if (this.incoming.length) {
|
|
this._log.debug("Applying server changes");
|
|
let inc;
|
|
while ((inc = this.incoming.shift())) {
|
|
yield this._store.applyIncoming(self.cb, inc);
|
|
if (inc.modified > this.lastSync)
|
|
this.lastSync = inc.modified;
|
|
}
|
|
}
|
|
|
|
// STEP 5: Upload outgoing items
|
|
if (this.outgoing.length) {
|
|
this._log.debug("Uploading client changes");
|
|
let up = new Collection(this.engineURL);
|
|
let out;
|
|
while ((out = this.outgoing.pop())) {
|
|
yield up.pushRecord(self.cb, out);
|
|
}
|
|
yield up.post(self.cb);
|
|
if (up.data.modified > this.lastSync)
|
|
this.lastSync = up.data.modified;
|
|
}
|
|
|
|
// STEP 6: Save the current snapshot so as to calculate changes at next sync
|
|
this._log.debug("Saving snapshot for next sync");
|
|
this._snapshot.data = this._store.wrap();
|
|
this._snapshot.save();
|
|
|
|
self.done();
|
|
},
|
|
|
|
_resetServer: function NewEngine__resetServer() {
|
|
let self = yield;
|
|
let all = new Resource(this.engineURL);
|
|
yield all.delete(self.cb);
|
|
}
|
|
};
|
|
|
|
function SyncEngine() {}
|
|
SyncEngine.prototype = {
|
|
__proto__: new Engine(),
|
|
|
|
get _remote() {
|
|
let remote = new RemoteStore(this);
|
|
this.__defineGetter__("_remote", function() remote);
|
|
return remote;
|
|
},
|
|
|
|
get _snapshot() {
|
|
let snap = new SnapshotStore(this.name);
|
|
this.__defineGetter__("_snapshot", function() snap);
|
|
return snap;
|
|
},
|
|
|
|
_resetServer: function SyncEngine__resetServer() {
|
|
let self = yield;
|
|
yield this._remote.wipe(self.cb);
|
|
},
|
|
|
|
_resetClient: function SyncEngine__resetClient() {
|
|
let self = yield;
|
|
this._log.debug("Resetting client state");
|
|
this._snapshot.wipe();
|
|
this._store.wipe();
|
|
this._log.debug("Client reset completed successfully");
|
|
},
|
|
|
|
_initialUpload: function Engine__initialUpload() {
|
|
let self = yield;
|
|
this._log.info("Initial upload to server");
|
|
this._snapshot.data = this._store.wrap();
|
|
this._snapshot.version = 0;
|
|
this._snapshot.GUID = null; // in case there are other snapshots out there
|
|
yield this._remote.initialize(self.cb, this._snapshot);
|
|
this._snapshot.save();
|
|
},
|
|
|
|
// original
|
|
// / \
|
|
// A / \ B
|
|
// / \
|
|
// client --C-> server
|
|
// \ /
|
|
// D \ / C
|
|
// \ /
|
|
// final
|
|
|
|
// If we have a saved snapshot, original == snapshot. Otherwise,
|
|
// it's the empty set {}.
|
|
|
|
// C is really the diff between server -> final, so if we determine
|
|
// D we can calculate C from that. In the case where A and B have
|
|
// no conflicts, C == A and D == B.
|
|
|
|
// Sync flow:
|
|
// 1) Fetch server deltas
|
|
// 1.1) Construct current server status from snapshot + server deltas
|
|
// 1.2) Generate single delta from snapshot -> current server status ("B")
|
|
// 2) Generate local deltas from snapshot -> current client status ("A")
|
|
// 3) Reconcile client/server deltas and generate new deltas for them.
|
|
// Reconciliation won't generate C directly, we will simply diff
|
|
// server->final after step 3.1.
|
|
// 3.1) Apply local delta with server changes ("D")
|
|
// 3.2) Append server delta to the delta file and upload ("C")
|
|
|
|
_sync: function SyncEngine__sync() {
|
|
let self = yield;
|
|
|
|
this._log.info("Beginning sync");
|
|
this._os.notifyObservers(null, "weave:service:sync:engine:start", this.displayName);
|
|
|
|
this._snapshot.load();
|
|
|
|
try {
|
|
this._remote.status.data; // FIXME - otherwise we get an error...
|
|
yield this._remote.openSession(self.cb, this._snapshot);
|
|
|
|
} catch (e if e.status == 404) {
|
|
yield this._initialUpload.async(this, self.cb);
|
|
return;
|
|
}
|
|
|
|
// 1) Fetch server deltas
|
|
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.downloading-deltas");
|
|
let serverSnap = yield this._remote.wrap(self.cb);
|
|
let serverUpdates = yield this._core.detectUpdates(self.cb,
|
|
this._snapshot.data, serverSnap);
|
|
|
|
// 2) Generate local deltas from snapshot -> current client status
|
|
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.calculating-differences");
|
|
let localSnap = new SnapshotStore();
|
|
localSnap.data = this._store.wrap();
|
|
this._core.detectUpdates(self.cb, this._snapshot.data, localSnap.data);
|
|
let localUpdates = yield;
|
|
|
|
this._log.trace("local json:\n" + localSnap.serialize());
|
|
this._log.trace("Local updates: " + this._serializeCommands(localUpdates));
|
|
this._log.trace("Server updates: " + this._serializeCommands(serverUpdates));
|
|
|
|
if (serverUpdates.length == 0 && localUpdates.length == 0) {
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.no-changes-required");
|
|
this._log.info("Sync complete: no changes needed on client or server");
|
|
this._snapshot.version = this._remote.status.data.maxVersion;
|
|
this._snapshot.save();
|
|
self.done(true);
|
|
return;
|
|
}
|
|
|
|
// 3) Reconcile client/server deltas and generate new deltas for them.
|
|
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.reconciling-updates");
|
|
this._log.info("Reconciling client/server updates");
|
|
let ret = yield this._core.reconcile(self.cb, localUpdates, serverUpdates);
|
|
|
|
let clientChanges = ret.propagations[0];
|
|
let serverChanges = ret.propagations[1];
|
|
let clientConflicts = ret.conflicts[0];
|
|
let serverConflicts = ret.conflicts[1];
|
|
|
|
this._log.info("Changes for client: " + clientChanges.length);
|
|
this._log.info("Predicted changes for server: " + serverChanges.length);
|
|
this._log.info("Client conflicts: " + clientConflicts.length);
|
|
this._log.info("Server conflicts: " + serverConflicts.length);
|
|
this._log.trace("Changes for client: " + this._serializeCommands(clientChanges));
|
|
this._log.trace("Predicted changes for server: " + this._serializeCommands(serverChanges));
|
|
this._log.trace("Client conflicts: " + this._serializeConflicts(clientConflicts));
|
|
this._log.trace("Server conflicts: " + this._serializeConflicts(serverConflicts));
|
|
|
|
if (!(clientChanges.length || serverChanges.length ||
|
|
clientConflicts.length || serverConflicts.length)) {
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.no-changes-required");
|
|
this._log.info("Sync complete: no changes needed on client or server");
|
|
this._snapshot.data = localSnap.data;
|
|
this._snapshot.version = this._remote.status.data.maxVersion;
|
|
this._snapshot.save();
|
|
self.done(true);
|
|
return;
|
|
}
|
|
|
|
if (clientConflicts.length || serverConflicts.length)
|
|
this._log.warn("Conflicts found! Discarding server changes");
|
|
|
|
// 3.1) Apply server changes to local store
|
|
|
|
if (clientChanges.length) {
|
|
this._log.info("Applying changes locally");
|
|
this._os.notifyObservers(null, "weave:service:sync:status", "status.applying-changes");
|
|
|
|
// apply to real store
|
|
yield this._store.applyCommands.async(this._store, self.cb, clientChanges);
|
|
|
|
// get the current state
|
|
let newSnap = new SnapshotStore();
|
|
newSnap.data = this._store.wrap();
|
|
|
|
// apply to the snapshot we got in step 1, and compare with current state
|
|
yield localSnap.applyCommands.async(localSnap, self.cb, clientChanges);
|
|
let diff = yield this._core.detectUpdates(self.cb,
|
|
localSnap.data, newSnap.data);
|
|
if (diff.length != 0) {
|
|
this._log.warn("Commands did not apply correctly");
|
|
this._log.trace("Diff from snapshot+commands -> " +
|
|
"new snapshot after commands:\n" +
|
|
this._serializeCommands(diff));
|
|
}
|
|
|
|
// update the local snap to the current state, we'll use it below
|
|
localSnap.data = newSnap.data;
|
|
localSnap.version = this._remote.status.data.maxVersion;
|
|
}
|
|
|
|
// 3.2) Append server delta to the delta file and upload
|
|
|
|
// Generate a new diff, from the current server snapshot to the
|
|
// current client snapshot. In the case where there are no
|
|
// conflicts, it should be the same as what the resolver returned
|
|
|
|
this._os.notifyObservers(null, "weave:service:sync:status",
|
|
"status.calculating-differences");
|
|
let serverDelta = yield this._core.detectUpdates(self.cb,
|
|
serverSnap, localSnap.data);
|
|
|
|
// Log an error if not the same
|
|
if (!(serverConflicts.length ||
|
|
Utils.deepEquals(serverChanges, serverDelta)))
|
|
this._log.warn("Predicted server changes differ from " +
|
|
"actual server->client diff (can be ignored in many cases)");
|
|
|
|
this._log.info("Actual changes for server: " + serverDelta.length);
|
|
this._log.trace("Actual changes for server: " +
|
|
this._serializeCommands(serverDelta));
|
|
|
|
if (serverDelta.length) {
|
|
this._log.info("Uploading changes to server");
|
|
this._os.notifyObservers(null, "weave:service:sync:status",
|
|
"status.uploading-deltas");
|
|
|
|
yield this._remote.appendDelta(self.cb, localSnap, serverDelta,
|
|
{maxVersion: this._snapshot.version,
|
|
deltasEncryption: Crypto.defaultAlgorithm});
|
|
localSnap.version = this._remote.status.data.maxVersion;
|
|
|
|
this._log.info("Successfully updated deltas and status on server");
|
|
}
|
|
|
|
this._snapshot.data = localSnap.data;
|
|
this._snapshot.version = localSnap.version;
|
|
this._snapshot.save();
|
|
|
|
this._log.info("Sync complete");
|
|
self.done(true);
|
|
}
|
|
};
|
|
|
|
function BlobEngine() {
|
|
// subclasses should call _init
|
|
// we don't call it here because it requires serverPrefix to be set
|
|
}
|
|
BlobEngine.prototype = {
|
|
__proto__: Engine.prototype,
|
|
|
|
get _profileID() {
|
|
return ClientData.GUID;
|
|
},
|
|
|
|
_init: function BlobEngine__init() {
|
|
// FIXME meep?
|
|
this.__proto__.__proto__.__proto__.__proto__._init.call(this);
|
|
this._keys = new Keychain(this.serverPrefix);
|
|
this._file = new Resource(this.serverPrefix + "data");
|
|
this._file.pushFilter(new JsonFilter());
|
|
this._file.pushFilter(new CryptoFilter(this.engineId));
|
|
},
|
|
|
|
_initialUpload: function BlobEngine__initialUpload() {
|
|
let self = yield;
|
|
this._log.info("Initial upload to server");
|
|
yield this._keys.initialize(self.cb, this.engineId);
|
|
this._file.data = {};
|
|
yield this._merge.async(this, self.cb);
|
|
yield this._file.put(self.cb);
|
|
},
|
|
|
|
// NOTE: Assumes this._file has latest server data
|
|
// this method is separate from _sync so it's easy to override in subclasses
|
|
_merge: function BlobEngine__merge() {
|
|
let self = yield;
|
|
this._file.data[this._profileID] = this._store.wrap();
|
|
},
|
|
|
|
// This engine is very simple:
|
|
// 1) Get the latest server data
|
|
// 2) Merge with our local data store
|
|
// 3) Upload new merged data
|
|
// NOTE: a version file will be needed in the future to optimize the case
|
|
// where there are no changes
|
|
_sync: function BlobEngine__sync() {
|
|
let self = yield;
|
|
|
|
this._log.info("Beginning sync");
|
|
this._os.notifyObservers(null, "weave:service:sync:engine:start", this.name);
|
|
|
|
// FIXME
|
|
//if (!(yield DAV.MKCOL(this.serverPrefix, self.cb)))
|
|
// throw "Could not create remote folder";
|
|
|
|
try {
|
|
if ("none" != Utils.prefs.getCharPref("encryption"))
|
|
yield this._keys.getKeyAndIV(self.cb, this.engineId);
|
|
yield this._file.get(self.cb);
|
|
yield this._merge.async(this, self.cb);
|
|
yield this._file.put(self.cb);
|
|
|
|
} catch (e if e.status == 404) {
|
|
yield this._initialUpload.async(this, self.cb);
|
|
}
|
|
|
|
this._log.info("Sync complete");
|
|
this._os.notifyObservers(null, "weave:service:sync:engine:success", this.name);
|
|
self.done(true);
|
|
}
|
|
};
|
|
|
|
function HeuristicEngine() {
|
|
}
|
|
HeuristicEngine.prototype = {
|
|
__proto__: new Engine(),
|
|
|
|
get _remote() {
|
|
let remote = new RemoteStore(this);
|
|
this.__defineGetter__("_remote", function() remote);
|
|
return remote;
|
|
},
|
|
|
|
get _snapshot() {
|
|
let snap = new SnapshotStore(this.name);
|
|
this.__defineGetter__("_snapshot", function() snap);
|
|
return snap;
|
|
},
|
|
|
|
_resetServer: function SyncEngine__resetServer() {
|
|
let self = yield;
|
|
yield this._remote.wipe(self.cb);
|
|
},
|
|
|
|
_resetClient: function SyncEngine__resetClient() {
|
|
let self = yield;
|
|
this._log.debug("Resetting client state");
|
|
this._snapshot.wipe();
|
|
this._store.wipe();
|
|
this._log.debug("Client reset completed successfully");
|
|
},
|
|
|
|
_initialUpload: function HeuristicEngine__initialUpload() {
|
|
let self = yield;
|
|
this._log.info("Initial upload to server");
|
|
this._snapshot.data = this._store.wrap();
|
|
this._snapshot.version = 0;
|
|
this._snapshot.GUID = null; // in case there are other snapshots out there
|
|
yield this._remote.initialize(self.cb, this._snapshot);
|
|
this._snapshot.save();
|
|
},
|
|
|
|
_sync: function HeuristicEngine__sync() {
|
|
let self = yield;
|
|
}
|
|
};
|