2012-04-19 14:33:25 -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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
2012-04-11 21:01:49 -07:00
|
|
|
Cu.import("resource://gre/modules/DOMRequestHelper.jsm");
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
var RIL = {};
|
|
|
|
Cu.import("resource://gre/modules/ril_consts.js", RIL);
|
|
|
|
|
2012-06-19 15:52:06 -07:00
|
|
|
// set to true to in ril_consts.js to see debug messages
|
|
|
|
const DEBUG = RIL.DEBUG_CONTENT_HELPER;
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
const RILCONTENTHELPER_CID =
|
|
|
|
Components.ID("{472816e1-1fd6-4405-996c-806f9ea68174}");
|
|
|
|
const MOBILECONNECTIONINFO_CID =
|
|
|
|
Components.ID("{a35cfd39-2d93-4489-ac7d-396475dacb27}");
|
2012-06-12 14:05:50 -07:00
|
|
|
const MOBILENETWORKINFO_CID =
|
2012-06-01 14:10:39 -07:00
|
|
|
Components.ID("{a6c8416c-09b4-46d1-bf29-6520d677d085}");
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
const RIL_IPC_MSG_NAMES = [
|
|
|
|
"RIL:CardStateChanged",
|
|
|
|
"RIL:VoiceInfoChanged",
|
|
|
|
"RIL:DataInfoChanged",
|
2012-04-24 08:44:42 -07:00
|
|
|
"RIL:EnumerateCalls",
|
2012-06-01 14:10:39 -07:00
|
|
|
"RIL:GetAvailableNetworks",
|
2012-06-19 15:52:06 -07:00
|
|
|
"RIL:NetworkSelectionModeChanged",
|
|
|
|
"RIL:SelectNetwork",
|
|
|
|
"RIL:SelectNetworkAuto",
|
2012-04-24 08:44:42 -07:00
|
|
|
"RIL:CallStateChanged",
|
2012-05-14 21:13:06 -07:00
|
|
|
"RIL:CallError",
|
2012-04-11 21:01:49 -07:00
|
|
|
"RIL:GetCardLock:Return:OK",
|
|
|
|
"RIL:GetCardLock:Return:KO",
|
|
|
|
"RIL:SetCardLock:Return:OK",
|
|
|
|
"RIL:SetCardLock:Return:KO",
|
|
|
|
"RIL:UnlockCardLock:Return:OK",
|
|
|
|
"RIL:UnlockCardLock:Return:KO",
|
2012-06-09 14:07:18 -07:00
|
|
|
"RIL:UssdReceived",
|
|
|
|
"RIL:SendUssd:Return:OK",
|
|
|
|
"RIL:SendUssd:Return:KO",
|
|
|
|
"RIL:CancelUssd:Return:OK",
|
|
|
|
"RIL:CancelUssd:Return:KO"
|
2012-04-19 14:33:25 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
const kVoiceChangedTopic = "mobile-connection-voice-changed";
|
|
|
|
const kDataChangedTopic = "mobile-connection-data-changed";
|
|
|
|
const kCardStateChangedTopic = "mobile-connection-cardstate-changed";
|
2012-06-09 14:07:18 -07:00
|
|
|
const kUssdReceivedTopic = "mobile-connection-ussd-received";
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "cpmm",
|
|
|
|
"@mozilla.org/childprocessmessagemanager;1",
|
|
|
|
"nsIFrameMessageManager");
|
|
|
|
|
|
|
|
function MobileConnectionInfo() {}
|
|
|
|
MobileConnectionInfo.prototype = {
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIDOMMozMobileConnectionInfo]),
|
|
|
|
classID: MOBILECONNECTIONINFO_CID,
|
|
|
|
classInfo: XPCOMUtils.generateCI({
|
|
|
|
classID: MOBILECONNECTIONINFO_CID,
|
|
|
|
classDescription: "MobileConnectionInfo",
|
|
|
|
flags: Ci.nsIClassInfo.DOM_OBJECT,
|
|
|
|
interfaces: [Ci.nsIDOMMozMobileConnectionInfo]
|
|
|
|
}),
|
|
|
|
|
|
|
|
// nsIDOMMozMobileConnectionInfo
|
|
|
|
|
|
|
|
connected: false,
|
|
|
|
emergencyCallsOnly: false,
|
|
|
|
roaming: false,
|
2012-06-12 14:05:50 -07:00
|
|
|
network: null,
|
2012-04-19 14:33:25 -07:00
|
|
|
type: null,
|
|
|
|
signalStrength: null,
|
|
|
|
relSignalStrength: null
|
|
|
|
};
|
|
|
|
|
2012-06-12 14:05:50 -07:00
|
|
|
function MobileNetworkInfo() {}
|
|
|
|
MobileNetworkInfo.prototype = {
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIDOMMozMobileNetworkInfo]),
|
|
|
|
classID: MOBILENETWORKINFO_CID,
|
2012-06-01 14:10:39 -07:00
|
|
|
classInfo: XPCOMUtils.generateCI({
|
2012-06-12 14:05:50 -07:00
|
|
|
classID: MOBILENETWORKINFO_CID,
|
|
|
|
classDescription: "MobileNetworkInfo",
|
2012-06-01 14:10:39 -07:00
|
|
|
flags: Ci.nsIClassInfo.DOM_OBJECT,
|
2012-06-12 14:05:50 -07:00
|
|
|
interfaces: [Ci.nsIDOMMozMobileNetworkInfo]
|
2012-06-01 14:10:39 -07:00
|
|
|
}),
|
|
|
|
|
2012-06-12 14:05:50 -07:00
|
|
|
// nsIDOMMozMobileNetworkInfo
|
2012-06-01 14:10:39 -07:00
|
|
|
|
|
|
|
shortName: null,
|
|
|
|
longName: null,
|
|
|
|
mcc: 0,
|
|
|
|
mnc: 0,
|
|
|
|
state: null
|
|
|
|
};
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
function RILContentHelper() {
|
|
|
|
this.voiceConnectionInfo = new MobileConnectionInfo();
|
|
|
|
this.dataConnectionInfo = new MobileConnectionInfo();
|
|
|
|
|
2012-04-11 21:01:49 -07:00
|
|
|
this.initRequests();
|
|
|
|
this.initMessageListener(RIL_IPC_MSG_NAMES);
|
2012-04-19 14:33:25 -07:00
|
|
|
Services.obs.addObserver(this, "xpcom-shutdown", false);
|
|
|
|
|
|
|
|
// Request initial state.
|
|
|
|
let radioState = cpmm.QueryInterface(Ci.nsISyncMessageSender)
|
|
|
|
.sendSyncMessage("RIL:GetRadioState")[0];
|
2012-06-12 14:05:50 -07:00
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
if (!radioState) {
|
|
|
|
debug("Received null radioState from chrome process.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.cardState = radioState.cardState;
|
2012-06-12 14:05:50 -07:00
|
|
|
this.updateConnectionInfo(radioState.voice, this.voiceConnectionInfo);
|
|
|
|
this.updateConnectionInfo(radioState.data, this.dataConnectionInfo);
|
2012-04-19 14:33:25 -07:00
|
|
|
}
|
2012-06-12 14:05:50 -07:00
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
RILContentHelper.prototype = {
|
2012-04-11 21:01:49 -07:00
|
|
|
__proto__: DOMRequestIpcHelper.prototype,
|
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIMobileConnectionProvider,
|
|
|
|
Ci.nsIRILContentHelper,
|
|
|
|
Ci.nsIObserver]),
|
|
|
|
classID: RILCONTENTHELPER_CID,
|
|
|
|
classInfo: XPCOMUtils.generateCI({classID: RILCONTENTHELPER_CID,
|
|
|
|
classDescription: "RILContentHelper",
|
|
|
|
interfaces: [Ci.nsIMobileConnectionProvider,
|
|
|
|
Ci.nsIRILContentHelper]}),
|
|
|
|
|
2012-06-12 14:05:50 -07:00
|
|
|
updateConnectionInfo: function updateConnectionInfo(srcInfo, destInfo) {
|
|
|
|
for (let key in srcInfo) {
|
|
|
|
if (key != "network") {
|
|
|
|
destInfo[key] = srcInfo[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let srcNetwork = srcInfo.network;
|
|
|
|
if (!srcNetwork) {
|
|
|
|
destInfo.network= null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let network = destInfo.network;
|
|
|
|
if (!network) {
|
|
|
|
network = destInfo.network = new MobileNetworkInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
network.longName = srcNetwork.longName;
|
|
|
|
network.shortName = srcNetwork.shortName;
|
|
|
|
network.mnc = srcNetwork.mnc;
|
|
|
|
network.mcc = srcNetwork.mcc;
|
|
|
|
},
|
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
// nsIRILContentHelper
|
|
|
|
|
|
|
|
cardState: RIL.GECKO_CARDSTATE_UNAVAILABLE,
|
|
|
|
voiceConnectionInfo: null,
|
|
|
|
dataConnectionInfo: null,
|
2012-06-19 15:52:06 -07:00
|
|
|
networkSelectionMode: RIL.GECKO_NETWORK_SELECTION_UNKNOWN,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The network that is currently trying to be selected (or "automatic").
|
|
|
|
* This helps ensure that only one network is selected at a time.
|
|
|
|
*/
|
|
|
|
_selectingNetwork: null,
|
2012-04-19 14:33:25 -07:00
|
|
|
|
|
|
|
getNetworks: function getNetworks(window) {
|
2012-06-01 14:10:39 -07:00
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
|
|
|
|
cpmm.sendAsyncMessage("RIL:GetAvailableNetworks", requestId);
|
|
|
|
return request;
|
2012-04-19 14:33:25 -07:00
|
|
|
},
|
|
|
|
|
2012-06-19 15:52:06 -07:00
|
|
|
selectNetwork: function selectNetwork(window, network) {
|
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._selectingNetwork) {
|
|
|
|
throw new Error("Already selecting a network: " + this._selectingNetwork);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!network) {
|
|
|
|
throw new Error("Invalid network provided: " + network);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mnc = network.mnc;
|
|
|
|
if (!mnc) {
|
|
|
|
throw new Error("Invalid network MNC: " + mnc);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mcc = network.mcc;
|
|
|
|
if (!mcc) {
|
|
|
|
throw new Error("Invalid network MCC: " + mcc);
|
|
|
|
}
|
|
|
|
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
|
|
|
|
if (this.networkSelectionMode == RIL.GECKO_NETWORK_SELECTION_MANUAL
|
|
|
|
&& this.voiceConnectionInfo.network === network) {
|
|
|
|
|
|
|
|
// Already manually selected this network, so schedule
|
|
|
|
// onsuccess to be fired on the next tick
|
|
|
|
this.dispatchFireRequestSuccess(requestId, null);
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._selectingNetwork = network;
|
|
|
|
|
|
|
|
cpmm.sendAsyncMessage("RIL:SelectNetwork", {
|
|
|
|
requestId: requestId,
|
|
|
|
mnc: mnc,
|
|
|
|
mcc: mcc
|
|
|
|
});
|
|
|
|
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
|
|
|
selectNetworkAutomatically: function selectNetworkAutomatically(window) {
|
|
|
|
|
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._selectingNetwork) {
|
|
|
|
throw new Error("Already selecting a network: " + this._selectingNetwork);
|
|
|
|
}
|
|
|
|
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
|
|
|
|
if (this.networkSelectionMode == RIL.GECKO_NETWORK_SELECTION_AUTOMATIC) {
|
|
|
|
// Already using automatic selection mode, so schedule
|
|
|
|
// onsuccess to be be fired on the next tick
|
|
|
|
this.dispatchFireRequestSuccess(requestId, null);
|
|
|
|
return request;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._selectingNetwork = "automatic";
|
|
|
|
cpmm.sendAsyncMessage("RIL:SelectNetworkAuto", requestId);
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
2012-04-11 21:01:49 -07:00
|
|
|
getCardLock: function getCardLock(window, lockType) {
|
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
cpmm.sendAsyncMessage("RIL:GetCardLock", {lockType: lockType, requestId: requestId});
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
|
|
|
unlockCardLock: function unlockCardLock(window, info) {
|
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
info.requestId = this.getRequestId(request);
|
|
|
|
cpmm.sendAsyncMessage("RIL:UnlockCardLock", info);
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCardLock: function setCardLock(window, info) {
|
|
|
|
if (window == null) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
info.requestId = this.getRequestId(request);
|
|
|
|
cpmm.sendAsyncMessage("RIL:SetCardLock", info);
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
2012-06-09 14:07:18 -07:00
|
|
|
sendUSSD: function sendUSSD(window, ussd) {
|
|
|
|
debug("Sending USSD " + ussd);
|
|
|
|
if (!window) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_EXPECTED);
|
|
|
|
}
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
cpmm.sendAsyncMessage("RIL:SendUSSD", {ussd: ussd, requestId: requestId});
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelUSSD: function cancelUSSD(window) {
|
|
|
|
debug("Cancel USSD");
|
|
|
|
if (!window) {
|
|
|
|
throw Components.Exception("Can't get window object",
|
|
|
|
Cr.NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
let request = Services.DOMRequest.createRequest(window);
|
|
|
|
let requestId = this.getRequestId(request);
|
|
|
|
cpmm.sendAsyncMessage("RIL:CancelUSSD", {requestId: requestId});
|
|
|
|
return request;
|
|
|
|
},
|
|
|
|
|
2012-04-24 08:44:42 -07:00
|
|
|
_telephonyCallbacks: null,
|
|
|
|
_enumerationTelephonyCallbacks: null,
|
|
|
|
|
|
|
|
registerTelephonyCallback: function registerTelephonyCallback(callback) {
|
|
|
|
if (this._telephonyCallbacks) {
|
|
|
|
if (this._telephonyCallbacks.indexOf(callback) != -1) {
|
|
|
|
throw new Error("Already registered this callback!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this._telephonyCallbacks = [];
|
|
|
|
}
|
|
|
|
this._telephonyCallbacks.push(callback);
|
|
|
|
debug("Registered telephony callback: " + callback);
|
|
|
|
},
|
|
|
|
|
|
|
|
unregisterTelephonyCallback: function unregisterTelephonyCallback(callback) {
|
|
|
|
if (!this._telephonyCallbacks) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let index = this._telephonyCallbacks.indexOf(callback);
|
|
|
|
if (index != -1) {
|
|
|
|
this._telephonyCallbacks.splice(index, 1);
|
|
|
|
debug("Unregistered telephony callback: " + callback);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
enumerateCalls: function enumerateCalls(callback) {
|
|
|
|
debug("Requesting enumeration of calls for callback: " + callback);
|
|
|
|
cpmm.sendAsyncMessage("RIL:EnumerateCalls");
|
|
|
|
if (!this._enumerationTelephonyCallbacks) {
|
|
|
|
this._enumerationTelephonyCallbacks = [];
|
|
|
|
}
|
|
|
|
this._enumerationTelephonyCallbacks.push(callback);
|
|
|
|
},
|
|
|
|
|
|
|
|
startTone: function startTone(dtmfChar) {
|
|
|
|
debug("Sending Tone for " + dtmfChar);
|
|
|
|
cpmm.sendAsyncMessage("RIL:StartTone", dtmfChar);
|
|
|
|
},
|
|
|
|
|
|
|
|
stopTone: function stopTone() {
|
|
|
|
debug("Stopping Tone");
|
|
|
|
cpmm.sendAsyncMessage("RIL:StopTone");
|
|
|
|
},
|
|
|
|
|
|
|
|
dial: function dial(number) {
|
|
|
|
debug("Dialing " + number);
|
|
|
|
cpmm.sendAsyncMessage("RIL:Dial", number);
|
|
|
|
},
|
|
|
|
|
|
|
|
hangUp: function hangUp(callIndex) {
|
|
|
|
debug("Hanging up call no. " + callIndex);
|
|
|
|
cpmm.sendAsyncMessage("RIL:HangUp", callIndex);
|
|
|
|
},
|
|
|
|
|
|
|
|
answerCall: function answerCall(callIndex) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:AnswerCall", callIndex);
|
|
|
|
},
|
|
|
|
|
|
|
|
rejectCall: function rejectCall(callIndex) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:RejectCall", callIndex);
|
|
|
|
},
|
|
|
|
|
|
|
|
holdCall: function holdCall(callIndex) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:HoldCall", callIndex);
|
|
|
|
},
|
|
|
|
|
|
|
|
resumeCall: function resumeCall(callIndex) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:ResumeCall", callIndex);
|
|
|
|
},
|
|
|
|
|
|
|
|
get microphoneMuted() {
|
|
|
|
return cpmm.sendSyncMessage("RIL:GetMicrophoneMuted")[0];
|
|
|
|
},
|
|
|
|
|
|
|
|
set microphoneMuted(value) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:SetMicrophoneMuted", value);
|
|
|
|
},
|
|
|
|
|
|
|
|
get speakerEnabled() {
|
|
|
|
return cpmm.sendSyncMessage("RIL:GetSpeakerEnabled")[0];
|
|
|
|
},
|
|
|
|
|
|
|
|
set speakerEnabled(value) {
|
|
|
|
cpmm.sendAsyncMessage("RIL:SetSpeakerEnabled", value);
|
|
|
|
},
|
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
// nsIObserver
|
|
|
|
|
|
|
|
observe: function observe(subject, topic, data) {
|
|
|
|
if (topic == "xpcom-shutdown") {
|
2012-04-11 21:01:49 -07:00
|
|
|
this.removeMessageListener();
|
2012-04-19 14:33:25 -07:00
|
|
|
Services.obs.removeObserver(this, "xpcom-shutdown");
|
|
|
|
cpmm = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// nsIFrameMessageListener
|
|
|
|
|
2012-06-12 14:05:50 -07:00
|
|
|
fireRequestSuccess: function fireRequestSuccess(requestId, result) {
|
|
|
|
let request = this.takeRequest(requestId);
|
|
|
|
if (!request) {
|
|
|
|
if (DEBUG) {
|
2012-06-19 15:52:06 -07:00
|
|
|
debug("not firing success for id: " + requestId +
|
|
|
|
", result: " + JSON.stringify(result));
|
2012-06-12 14:05:50 -07:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DEBUG) {
|
2012-06-19 15:52:06 -07:00
|
|
|
debug("fire request success, id: " + requestId +
|
|
|
|
", result: " + JSON.stringify(result));
|
2012-06-12 14:05:50 -07:00
|
|
|
}
|
|
|
|
Services.DOMRequest.fireSuccess(request, result);
|
|
|
|
},
|
|
|
|
|
2012-06-19 15:52:06 -07:00
|
|
|
dispatchFireRequestSuccess: function dispatchFireRequestSuccess(requestId, result) {
|
|
|
|
let currentThread = Services.tm.currentThread;
|
|
|
|
|
|
|
|
currentThread.dispatch(this.fireRequestSuccess.bind(this, requestId, result),
|
|
|
|
Ci.nsIThread.DISPATCH_NORMAL);
|
|
|
|
},
|
|
|
|
|
2012-06-12 14:05:50 -07:00
|
|
|
fireRequestError: function fireRequestError(requestId, error) {
|
|
|
|
let request = this.takeRequest(requestId);
|
|
|
|
if (!request) {
|
|
|
|
if (DEBUG) {
|
2012-06-19 15:52:06 -07:00
|
|
|
debug("not firing error for id: " + requestId +
|
|
|
|
", error: " + JSON.stringify(error));
|
2012-06-12 14:05:50 -07:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DEBUG) {
|
2012-06-19 15:52:06 -07:00
|
|
|
debug("fire request error, id: " + requestId +
|
|
|
|
", result: " + JSON.stringify(error));
|
2012-06-12 14:05:50 -07:00
|
|
|
}
|
|
|
|
Services.DOMRequest.fireError(request, error);
|
|
|
|
},
|
|
|
|
|
2012-04-19 14:33:25 -07:00
|
|
|
receiveMessage: function receiveMessage(msg) {
|
2012-04-11 21:01:49 -07:00
|
|
|
let request;
|
2012-04-19 14:33:25 -07:00
|
|
|
debug("Received message '" + msg.name + "': " + JSON.stringify(msg.json));
|
|
|
|
switch (msg.name) {
|
|
|
|
case "RIL:CardStateChanged":
|
|
|
|
if (this.cardState != msg.json.cardState) {
|
|
|
|
this.cardState = msg.json.cardState;
|
|
|
|
Services.obs.notifyObservers(null, kCardStateChangedTopic, null);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "RIL:VoiceInfoChanged":
|
2012-06-12 14:05:50 -07:00
|
|
|
this.updateConnectionInfo(msg.json, this.voiceConnectionInfo);
|
2012-04-19 14:33:25 -07:00
|
|
|
Services.obs.notifyObservers(null, kVoiceChangedTopic, null);
|
|
|
|
break;
|
|
|
|
case "RIL:DataInfoChanged":
|
2012-06-12 14:05:50 -07:00
|
|
|
this.updateConnectionInfo(msg.json, this.dataConnectionInfo);
|
2012-04-19 14:33:25 -07:00
|
|
|
Services.obs.notifyObservers(null, kDataChangedTopic, null);
|
|
|
|
break;
|
2012-04-24 08:44:42 -07:00
|
|
|
case "RIL:EnumerateCalls":
|
|
|
|
this.handleEnumerateCalls(msg.json);
|
|
|
|
break;
|
2012-06-01 14:10:39 -07:00
|
|
|
case "RIL:GetAvailableNetworks":
|
|
|
|
this.handleGetAvailableNetworks(msg.json);
|
|
|
|
break;
|
2012-06-19 15:52:06 -07:00
|
|
|
case "RIL:NetworkSelectionModeChanged":
|
|
|
|
this.networkSelectionMode = msg.json.mode;
|
|
|
|
break;
|
|
|
|
case "RIL:SelectNetwork":
|
|
|
|
this.handleSelectNetwork(msg.json,
|
|
|
|
RIL.GECKO_NETWORK_SELECTION_MANUAL);
|
|
|
|
break;
|
|
|
|
case "RIL:SelectNetworkAuto":
|
|
|
|
this.handleSelectNetwork(msg.json,
|
|
|
|
RIL.GECKO_NETWORK_SELECTION_AUTOMATIC);
|
|
|
|
break;
|
2012-04-24 08:44:42 -07:00
|
|
|
case "RIL:CallStateChanged":
|
|
|
|
this._deliverTelephonyCallback("callStateChanged",
|
|
|
|
[msg.json.callIndex, msg.json.state,
|
2012-05-14 21:13:06 -07:00
|
|
|
msg.json.number, msg.json.isActive]);
|
2012-05-14 21:13:06 -07:00
|
|
|
break;
|
|
|
|
case "RIL:CallError":
|
|
|
|
this._deliverTelephonyCallback("notifyError",
|
2012-06-01 14:10:39 -07:00
|
|
|
[msg.json.callIndex,
|
|
|
|
msg.json.error]);
|
|
|
|
break;
|
2012-04-11 21:01:49 -07:00
|
|
|
case "RIL:GetCardLock:Return:OK":
|
|
|
|
case "RIL:SetCardLock:Return:OK":
|
|
|
|
case "RIL:UnlockCardLock:Return:OK":
|
2012-06-12 14:05:50 -07:00
|
|
|
this.fireRequestSuccess(msg.json.requestId, msg.json);
|
2012-04-11 21:01:49 -07:00
|
|
|
break;
|
|
|
|
case "RIL:GetCardLock:Return:KO":
|
|
|
|
case "RIL:SetCardLock:Return:KO":
|
|
|
|
case "RIL:UnlockCardLock:Return:KO":
|
2012-06-12 14:05:50 -07:00
|
|
|
this.fireRequestError(msg.json.requestId, msg.json.errorMsg);
|
2012-04-11 21:01:49 -07:00
|
|
|
break;
|
2012-06-09 14:07:18 -07:00
|
|
|
case "RIL:UssdReceived":
|
|
|
|
Services.obs.notifyObservers(null, kUssdReceivedTopic,
|
|
|
|
msg.json.message);
|
|
|
|
break;
|
|
|
|
case "RIL:SendUssd:Return:OK":
|
|
|
|
case "RIL:CancelUssd:Return:OK":
|
|
|
|
request = this.takeRequest(msg.json.requestId);
|
|
|
|
if (request) {
|
|
|
|
Services.DOMRequest.fireSuccess(request, msg.json);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "RIL:SendUssd:Return:KO":
|
|
|
|
case "RIL:CancelUssd:Return:KO":
|
|
|
|
request = this.takeRequest(msg.json.requestId);
|
|
|
|
if (request) {
|
|
|
|
Services.DOMRequest.fireError(request, msg.json.errorMsg);
|
|
|
|
}
|
|
|
|
break;
|
2012-04-24 08:44:42 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-05-14 21:13:06 -07:00
|
|
|
handleEnumerateCalls: function handleEnumerateCalls(calls) {
|
|
|
|
debug("handleEnumerateCalls: " + JSON.stringify(calls));
|
2012-04-24 08:44:42 -07:00
|
|
|
let callback = this._enumerationTelephonyCallbacks.shift();
|
|
|
|
for (let i in calls) {
|
|
|
|
let call = calls[i];
|
|
|
|
let keepGoing;
|
|
|
|
try {
|
|
|
|
keepGoing =
|
|
|
|
callback.enumerateCallState(call.callIndex, call.state, call.number,
|
2012-05-14 21:13:06 -07:00
|
|
|
call.isActive);
|
2012-04-24 08:44:42 -07:00
|
|
|
} catch (e) {
|
|
|
|
debug("callback handler for 'enumerateCallState' threw an " +
|
|
|
|
" exception: " + e);
|
|
|
|
keepGoing = true;
|
|
|
|
}
|
|
|
|
if (!keepGoing) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-06-01 14:10:39 -07:00
|
|
|
handleGetAvailableNetworks: function handleGetAvailableNetworks(message) {
|
|
|
|
debug("handleGetAvailableNetworks: " + JSON.stringify(message));
|
|
|
|
|
|
|
|
let requestId = message.requestId;
|
|
|
|
let request = this.takeRequest(requestId);
|
|
|
|
if (!request) {
|
|
|
|
debug("no DOMRequest found with request ID: " + requestId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.error) {
|
|
|
|
debug("Received error from getAvailableNetworks: " + message.error);
|
|
|
|
Services.DOMRequest.fireError(request, message.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let networks = message.networks;
|
|
|
|
for (let i = 0; i < networks.length; i++) {
|
|
|
|
let network = networks[i];
|
2012-06-12 14:05:50 -07:00
|
|
|
let info = new MobileNetworkInfo();
|
2012-06-01 14:10:39 -07:00
|
|
|
|
|
|
|
for (let key in network) {
|
|
|
|
info[key] = network[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
networks[i] = info;
|
|
|
|
}
|
|
|
|
|
|
|
|
Services.DOMRequest.fireSuccess(request, networks);
|
|
|
|
},
|
|
|
|
|
2012-06-19 15:52:06 -07:00
|
|
|
handleSelectNetwork: function handleSelectNetwork(message, mode) {
|
|
|
|
this._selectingNetwork = null;
|
|
|
|
this.networkSelectionMode = mode;
|
|
|
|
|
|
|
|
if (message.error) {
|
|
|
|
this.fireRequestError(message.requestId, message.error);
|
|
|
|
} else {
|
|
|
|
this.fireRequestSuccess(message.requestId, null);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-04-24 08:44:42 -07:00
|
|
|
_deliverTelephonyCallback: function _deliverTelephonyCallback(name, args) {
|
|
|
|
if (!this._telephonyCallbacks) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let callbacks = this._telephonyCallbacks.slice();
|
|
|
|
for each (let callback in callbacks) {
|
|
|
|
if (this._telephonyCallbacks.indexOf(callback) == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let handler = callback[name];
|
|
|
|
if (typeof handler != "function") {
|
|
|
|
throw new Error("No handler for " + name);
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
handler.apply(callback, args);
|
|
|
|
} catch (e) {
|
|
|
|
debug("callback handler for " + name + " threw an exception: " + e);
|
|
|
|
}
|
2012-04-19 14:33:25 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const NSGetFactory = XPCOMUtils.generateNSGetFactory([RILContentHelper]);
|
|
|
|
|
|
|
|
let debug;
|
|
|
|
if (DEBUG) {
|
|
|
|
debug = function (s) {
|
|
|
|
dump("-*- RILContentHelper: " + s + "\n");
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
debug = function (s) {};
|
|
|
|
}
|