зеркало из https://github.com/mozilla/gecko-dev.git
111 строки
3.0 KiB
JavaScript
111 строки
3.0 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";
|
|
|
|
this.EXPORTED_SYMBOLS = ["TelephonyUtils"];
|
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Promise.jsm");
|
|
|
|
/* global TelephonyService */
|
|
XPCOMUtils.defineLazyServiceGetter(this,
|
|
"TelephonyService",
|
|
"@mozilla.org/telephony/telephonyservice;1",
|
|
"nsITelephonyService");
|
|
|
|
function getCurrentCalls(aFilter) {
|
|
if (aFilter === undefined) {
|
|
aFilter = call => true;
|
|
}
|
|
|
|
let calls = [];
|
|
|
|
// nsITelephonyService.enumerateCalls is synchronous.
|
|
TelephonyService.enumerateCalls({
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsITelephonyListener]),
|
|
enumerateCallStateComplete: function() {},
|
|
enumerateCallState: function(call) {
|
|
if (aFilter(call)) {
|
|
calls.push(call);
|
|
}
|
|
},
|
|
});
|
|
|
|
return calls;
|
|
}
|
|
|
|
this.TelephonyUtils = {
|
|
/**
|
|
* Check whether there are any calls.
|
|
*
|
|
* @param aClientId [optional] If provided, only check on aClientId
|
|
* @return boolean
|
|
*/
|
|
hasAnyCalls: function(aClientId) {
|
|
let calls = getCurrentCalls(call => {
|
|
if (aClientId !== undefined && call.clientId !== aClientId) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
return calls.length !== 0;
|
|
},
|
|
|
|
/**
|
|
* Check whether there are any connected calls.
|
|
*
|
|
* @param aClientId [optional] If provided, only check on aClientId
|
|
* @return boolean
|
|
*/
|
|
hasConnectedCalls: function(aClientId) {
|
|
let calls = getCurrentCalls(call => {
|
|
if (aClientId !== undefined && call.clientId !== aClientId) {
|
|
return false;
|
|
}
|
|
return call.callState === Ci.nsITelephonyService.CALL_STATE_CONNECTED;
|
|
});
|
|
|
|
return calls.length !== 0;
|
|
},
|
|
|
|
/**
|
|
* Return a promise which will be resolved when there are no calls.
|
|
*
|
|
* @param aClientId [optional] only check on aClientId if provided
|
|
* @return Promise
|
|
*/
|
|
waitForNoCalls: function(aClientId) {
|
|
if (!this.hasAnyCalls(aClientId)) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
let self = this;
|
|
return new Promise(resolve => {
|
|
let listener = {
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsITelephonyListener]),
|
|
|
|
enumerateCallStateComplete: function() {},
|
|
enumerateCallState: function() {},
|
|
callStateChanged: function() {
|
|
if (!self.hasAnyCalls(aClientId)) {
|
|
TelephonyService.unregisterListener(this);
|
|
resolve();
|
|
}
|
|
},
|
|
conferenceCallStateChanged: function() {},
|
|
supplementaryServiceNotification: function() {},
|
|
notifyError: function() {},
|
|
notifyCdmaCallWaiting: function() {},
|
|
notifyConferenceError: function() {}
|
|
};
|
|
|
|
TelephonyService.registerListener(listener);
|
|
});
|
|
}
|
|
};
|