mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
168 lines
4.9 KiB
JavaScript
168 lines
4.9 KiB
JavaScript
/* 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/. */
|
|
|
|
"use strict";
|
|
|
|
/* static functions */
|
|
const DEBUG = false;
|
|
|
|
function debug(aStr) {
|
|
if (DEBUG)
|
|
dump("AlarmsManager: " + aStr + "\n");
|
|
}
|
|
|
|
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/DOMRequestHelper.jsm");
|
|
|
|
const ALARMSMANAGER_CONTRACTID = "@mozilla.org/alarmsManager;1";
|
|
const ALARMSMANAGER_CID = Components.ID("{fea1e884-9b05-11e1-9b64-87a7016c3860}");
|
|
const nsIDOMMozAlarmsManager = Ci.nsIDOMMozAlarmsManager;
|
|
const nsIClassInfo = Ci.nsIClassInfo;
|
|
|
|
function AlarmsManager()
|
|
{
|
|
debug("Constructor");
|
|
}
|
|
|
|
AlarmsManager.prototype = {
|
|
|
|
__proto__: DOMRequestIpcHelper.prototype,
|
|
|
|
classID : ALARMSMANAGER_CID,
|
|
|
|
QueryInterface : XPCOMUtils.generateQI([nsIDOMMozAlarmsManager, Ci.nsIDOMGlobalPropertyInitializer]),
|
|
|
|
classInfo : XPCOMUtils.generateCI({ classID: ALARMSMANAGER_CID,
|
|
contractID: ALARMSMANAGER_CONTRACTID,
|
|
classDescription: "AlarmsManager",
|
|
interfaces: [nsIDOMMozAlarmsManager],
|
|
flags: nsIClassInfo.DOM_OBJECT }),
|
|
|
|
add: function add(aDate, aRespectTimezone, aData) {
|
|
debug("add()");
|
|
|
|
let isIgnoreTimezone = true;
|
|
switch (aRespectTimezone) {
|
|
case "honorTimezone":
|
|
isIgnoreTimezone = false;
|
|
break;
|
|
|
|
case "ignoreTimezone":
|
|
isIgnoreTimezone = true;
|
|
break;
|
|
|
|
default:
|
|
throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
|
|
break;
|
|
}
|
|
|
|
let request = this.createRequest();
|
|
this._cpmm.sendAsyncMessage(
|
|
"AlarmsManager:Add",
|
|
{ requestId: this.getRequestId(request), date: aDate, ignoreTimezone: isIgnoreTimezone, data: aData, manifestURL: this._manifestURL }
|
|
);
|
|
return request;
|
|
},
|
|
|
|
remove: function remove(aId) {
|
|
debug("remove()");
|
|
|
|
return this._cpmm.sendSyncMessage(
|
|
"AlarmsManager:Remove",
|
|
{ id: aId }
|
|
);
|
|
},
|
|
|
|
getAll: function getAll() {
|
|
debug("getAll()");
|
|
|
|
let request = this.createRequest();
|
|
this._cpmm.sendAsyncMessage(
|
|
"AlarmsManager:GetAll",
|
|
{ requestId: this.getRequestId(request) }
|
|
);
|
|
return request;
|
|
},
|
|
|
|
receiveMessage: function receiveMessage(aMessage) {
|
|
debug("receiveMessage(): " + aMessage.name);
|
|
|
|
let json = aMessage.json;
|
|
let request = this.getRequest(json.requestId);
|
|
|
|
if (!request) {
|
|
debug("No request stored! " + json.requestId);
|
|
return;
|
|
}
|
|
|
|
switch (aMessage.name) {
|
|
case "AlarmsManager:Add:Return:OK":
|
|
Services.DOMRequest.fireSuccess(request, json.id);
|
|
break;
|
|
|
|
case "AlarmsManager:GetAll:Return:OK":
|
|
Services.DOMRequest.fireSuccess(request, json.alarms);
|
|
break;
|
|
|
|
case "AlarmsManager:Add:Return:KO":
|
|
Services.DOMRequest.fireError(request, json.errorMsg);
|
|
break;
|
|
|
|
case "AlarmsManager:GetAll:Return:KO":
|
|
Services.DOMRequest.fireError(request, json.errorMsg);
|
|
break;
|
|
|
|
default:
|
|
debug("Wrong message: " + aMessage.name);
|
|
break;
|
|
}
|
|
this.removeRequest(json.requestId);
|
|
},
|
|
|
|
// nsIDOMGlobalPropertyInitializer implementation
|
|
init: function init(aWindow) {
|
|
debug("init()");
|
|
|
|
// Set navigator.mozAlarms to null.
|
|
if (!Services.prefs.getBoolPref("dom.mozAlarms.enabled"))
|
|
return null;
|
|
|
|
let principal = aWindow.document.nodePrincipal;
|
|
let secMan = Cc["@mozilla.org/scriptsecuritymanager;1"].getService(Ci.nsIScriptSecurityManager);
|
|
|
|
let perm = principal == secMan.getSystemPrincipal() ?
|
|
Ci.nsIPermissionManager.ALLOW_ACTION : Services.perms.testExactPermission(principal.URI, "alarms");
|
|
|
|
// Only pages with perm set can use the alarms.
|
|
this.hasPrivileges = perm == Ci.nsIPermissionManager.ALLOW_ACTION;
|
|
|
|
if (!this.hasPrivileges)
|
|
return null;
|
|
|
|
this._cpmm = Cc["@mozilla.org/childprocessmessagemanager;1"].getService(Ci.nsISyncMessageSender);
|
|
|
|
// Add the valid messages to be listened.
|
|
this.initHelper(aWindow, ["AlarmsManager:Add:Return:OK", "AlarmsManager:Add:Return:KO",
|
|
"AlarmsManager:GetAll:Return:OK", "AlarmsManager:GetAll:Return:KO"]);
|
|
|
|
// Get the manifest URL if this is an installed app
|
|
this._manifestURL = null;
|
|
let utils = aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Components.interfaces.nsIDOMWindowUtils);
|
|
let app = utils.getApp();
|
|
if (app)
|
|
this._manifestURL = app.manifestURL;
|
|
},
|
|
|
|
// Called from DOMRequestIpcHelper.
|
|
uninit: function uninit() {
|
|
debug("uninit()");
|
|
},
|
|
}
|
|
|
|
const NSGetFactory = XPCOMUtils.generateNSGetFactory([AlarmsManager])
|