mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 706545 - Implement a sync engine for apps exposed by navigator.mozApps : Part 2: sync engine [r=philikon]
This commit is contained in:
parent
d99a225489
commit
2ac8ece288
@ -108,6 +108,7 @@ DEFAULT_STORE_BATCH_SIZE: 1,
|
||||
HISTORY_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
FORMS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
PASSWORDS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
APPS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
|
||||
// score thresholds for early syncs
|
||||
SINGLE_USER_THRESHOLD: 1000,
|
||||
|
161
services/sync/modules/engines/apps.js
Normal file
161
services/sync/modules/engines/apps.js
Normal file
@ -0,0 +1,161 @@
|
||||
/* ***** 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 Apps Sync.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Mozilla.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2011
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Fabrice Desré <fabrice@mozilla.com>
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
"use strict";
|
||||
|
||||
const EXPORTED_SYMBOLS = ['AppsEngine', 'AppRec'];
|
||||
|
||||
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
|
||||
|
||||
Cu.import("resource://services-sync/util.js");
|
||||
Cu.import("resource://services-sync/record.js");
|
||||
Cu.import("resource://services-sync/engines.js");
|
||||
Cu.import("resource://services-sync/constants.js");
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
Cu.import("resource://gre/modules/Webapps.jsm");
|
||||
|
||||
function AppRec(collection, id) {
|
||||
CryptoWrapper.call(this, collection, id);
|
||||
}
|
||||
|
||||
AppRec.prototype = {
|
||||
__proto__: CryptoWrapper.prototype,
|
||||
_logName: "Sync.Record.App"
|
||||
}
|
||||
|
||||
Utils.deferGetSet(AppRec, "cleartext", ["value"]);
|
||||
|
||||
function AppStore(name) {
|
||||
Store.call(this, name);
|
||||
}
|
||||
|
||||
AppStore.prototype = {
|
||||
__proto__: Store.prototype,
|
||||
|
||||
getAllIDs: function getAllIDs() {
|
||||
let apps = DOMApplicationRegistry.getAllIDs();
|
||||
return apps;
|
||||
},
|
||||
|
||||
changeItemID: function changeItemID(oldID, newID) {
|
||||
this._log.trace("AppsStore does not support changeItemID");
|
||||
},
|
||||
|
||||
itemExists: function itemExists(guid) {
|
||||
return DOMApplicationRegistry.itemExists(guid);
|
||||
},
|
||||
|
||||
createRecord: function createRecord(guid, collection) {
|
||||
let record = new AppRec(collection, guid);
|
||||
let app = DOMApplicationRegistry.getAppById(guid);
|
||||
|
||||
if (app) {
|
||||
app.syncId = guid;
|
||||
let callback = Async.makeSyncCallback();
|
||||
DOMApplicationRegistry.getManifestFor(app.origin, function(aManifest) {
|
||||
app.manifest = aManifest;
|
||||
callback();
|
||||
});
|
||||
Async.waitForSyncCallback(callback);
|
||||
record.value = app;
|
||||
} else {
|
||||
record.deleted = true;
|
||||
}
|
||||
|
||||
return record;
|
||||
},
|
||||
|
||||
applyIncomingBatch: function applyIncomingBatch(aRecords) {
|
||||
let callback = Async.makeSyncCallback();
|
||||
DOMApplicationRegistry.updateApps(aRecords, callback);
|
||||
Async.waitForSyncCallback(callback);
|
||||
return [];
|
||||
},
|
||||
|
||||
wipe: function wipe(record) {
|
||||
let callback = Async.makeSyncCallback();
|
||||
DOMApplicationRegistry.wipe(callback);
|
||||
Async.waitForSyncCallback(callback);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function AppTracker(name) {
|
||||
Tracker.call(this, name);
|
||||
Svc.Obs.add("weave:engine:start-tracking", this);
|
||||
Svc.Obs.add("weave:engine:stop-tracking", this);
|
||||
}
|
||||
|
||||
AppTracker.prototype = {
|
||||
__proto__: Tracker.prototype,
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver]),
|
||||
|
||||
_enabled: false,
|
||||
|
||||
observe: function(aSubject, aTopic, aData) {
|
||||
switch (aTopic) {
|
||||
case "webapps-sync-install":
|
||||
case "webapps-sync-uninstall":
|
||||
// ask for immediate sync. not sure if we really need this or
|
||||
// if a lower score increment would be enough
|
||||
this.score += SCORE_INCREMENT_XLARGE;
|
||||
this.addChangedID(aData);
|
||||
break;
|
||||
case "weave:engine:start-tracking":
|
||||
this._enabled = true;
|
||||
Svc.Obs.add("webapps-sync-install", this);
|
||||
Svc.Obs.add("webapps-sync-uninstall", this);
|
||||
break;
|
||||
case "weave:engine:stop-tracking":
|
||||
this._enabled = false;
|
||||
Svc.Obs.remove("webapps-sync-install", this);
|
||||
Svc.Obs.remove("webapps-sync-uninstall", this);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function AppsEngine() {
|
||||
SyncEngine.call(this, "Apps");
|
||||
}
|
||||
|
||||
AppsEngine.prototype = {
|
||||
__proto__: SyncEngine.prototype,
|
||||
_storeObj: AppStore,
|
||||
_trackerObj: AppTracker,
|
||||
_recordObj: AppRec,
|
||||
applyIncomingBatchSize: APPS_STORE_BATCH_SIZE
|
||||
}
|
@ -49,6 +49,7 @@ let lazies = {
|
||||
"engines/prefs.js": ["PrefsEngine"],
|
||||
"engines/passwords.js": ["PasswordEngine"],
|
||||
"engines/tabs.js": ["TabEngine"],
|
||||
"engines/apps.js": ["AppsEngine"],
|
||||
"identity.js": ["Identity", "ID"],
|
||||
"jpakeclient.js": ["JPAKEClient"],
|
||||
"notifications.js": ["Notifications", "Notification", "NotificationButton"],
|
||||
|
@ -22,6 +22,7 @@ pref("services.sync.engine.history", true);
|
||||
pref("services.sync.engine.passwords", true);
|
||||
pref("services.sync.engine.prefs", true);
|
||||
pref("services.sync.engine.tabs", true);
|
||||
pref("services.sync.engine.apps", false);
|
||||
pref("services.sync.engine.tabs.filteredUrls", "^(about:.*|chrome://weave/.*|wyciwyg:.*|file:.*)$");
|
||||
|
||||
pref("services.sync.jpake.serverURL", "https://setup.services.mozilla.com/");
|
||||
@ -49,4 +50,5 @@ pref("services.sync.log.logger.engine.history", "Debug");
|
||||
pref("services.sync.log.logger.engine.passwords", "Debug");
|
||||
pref("services.sync.log.logger.engine.prefs", "Debug");
|
||||
pref("services.sync.log.logger.engine.tabs", "Debug");
|
||||
pref("services.sync.log.logger.engine.apps", "Debug");
|
||||
pref("services.sync.log.cryptoDebug", false);
|
||||
|
Loading…
Reference in New Issue
Block a user