mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
386 lines
11 KiB
C++
386 lines
11 KiB
C++
/* 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/. */
|
|
|
|
#include "MobileConnectionCallback.h"
|
|
|
|
#include "mozilla/dom/DOMMMIError.h"
|
|
#include "mozilla/dom/MobileNetworkInfo.h"
|
|
#include "mozilla/dom/MozMobileConnectionBinding.h"
|
|
#include "mozilla/dom/ToJSValue.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace mobileconnection {
|
|
|
|
NS_IMPL_ISUPPORTS(MobileConnectionCallback, nsIMobileConnectionCallback)
|
|
|
|
MobileConnectionCallback::MobileConnectionCallback(nsPIDOMWindow* aWindow,
|
|
DOMRequest* aRequest)
|
|
: mWindow(aWindow)
|
|
, mRequest(aRequest)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Notify Success for Send/CancelMmi.
|
|
*/
|
|
nsresult
|
|
MobileConnectionCallback::NotifySendCancelMmiSuccess(const MozMMIResult& aResult)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, aResult, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
/**
|
|
* Notify Success.
|
|
*/
|
|
nsresult
|
|
MobileConnectionCallback::NotifySuccess(JS::Handle<JS::Value> aResult)
|
|
{
|
|
nsCOMPtr<nsIDOMRequestService> rs = do_GetService(DOMREQUEST_SERVICE_CONTRACTID);
|
|
NS_ENSURE_TRUE(rs, NS_ERROR_FAILURE);
|
|
|
|
return rs->FireSuccessAsync(mRequest, aResult);
|
|
}
|
|
|
|
// nsIMobileConnectionCallback
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifySuccess()
|
|
{
|
|
return NotifySuccess(JS::UndefinedHandleValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifySuccessWithString(const nsAString& aResult)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, aResult, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifySuccessWithBoolean(bool aResult)
|
|
{
|
|
return aResult ? NotifySuccess(JS::TrueHandleValue)
|
|
: NotifySuccess(JS::FalseHandleValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifyGetNetworksSuccess(uint32_t aCount,
|
|
nsIMobileNetworkInfo** aNetworks)
|
|
{
|
|
nsTArray<nsRefPtr<MobileNetworkInfo>> results;
|
|
for (uint32_t i = 0; i < aCount; i++)
|
|
{
|
|
nsRefPtr<MobileNetworkInfo> networkInfo = new MobileNetworkInfo(mWindow);
|
|
networkInfo->Update(aNetworks[i]);
|
|
results.AppendElement(networkInfo);
|
|
}
|
|
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, results, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
nsresult
|
|
MobileConnectionCallback::NotifySendCancelMmiSuccess(const nsAString& aServiceCode,
|
|
const nsAString& aStatusMessage)
|
|
{
|
|
MozMMIResult result;
|
|
result.mServiceCode.Assign(aServiceCode);
|
|
result.mStatusMessage.Assign(aStatusMessage);
|
|
|
|
return NotifySendCancelMmiSuccess(result);
|
|
}
|
|
|
|
nsresult
|
|
MobileConnectionCallback::NotifySendCancelMmiSuccessWithInteger(const nsAString& aServiceCode,
|
|
const nsAString& aStatusMessage,
|
|
uint16_t aAdditionalInformation)
|
|
{
|
|
MozMMIResult result;
|
|
result.mServiceCode.Assign(aServiceCode);
|
|
result.mStatusMessage.Assign(aStatusMessage);
|
|
result.mAdditionalInformation.Construct().SetAsUnsignedShort() = aAdditionalInformation;
|
|
|
|
return NotifySendCancelMmiSuccess(result);
|
|
}
|
|
|
|
nsresult
|
|
MobileConnectionCallback::NotifySendCancelMmiSuccessWithStrings(const nsAString& aServiceCode,
|
|
const nsAString& aStatusMessage,
|
|
uint32_t aCount,
|
|
const char16_t** aAdditionalInformation)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
RootedDictionary<MozMMIResult> result(cx);
|
|
|
|
result.mServiceCode.Assign(aServiceCode);
|
|
result.mStatusMessage.Assign(aStatusMessage);
|
|
|
|
nsTArray<nsString> additionalInformation;
|
|
for (uint32_t i = 0; i < aCount; i++) {
|
|
additionalInformation.AppendElement(nsDependentString(aAdditionalInformation[i]));
|
|
}
|
|
|
|
JS::Rooted<JS::Value> jsAdditionalInformation(cx);
|
|
if (!ToJSValue(cx, additionalInformation, &jsAdditionalInformation)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
result.mAdditionalInformation.Construct().SetAsObject() =
|
|
&jsAdditionalInformation.toObject();
|
|
|
|
return NotifySendCancelMmiSuccess(result);
|
|
}
|
|
|
|
nsresult
|
|
MobileConnectionCallback::NotifySendCancelMmiSuccessWithCallForwardingOptions(
|
|
const nsAString& aServiceCode,
|
|
const nsAString& aStatusMessage,
|
|
uint32_t aCount,
|
|
nsIMobileCallForwardingOptions** aResults)
|
|
{
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
RootedDictionary<MozMMIResult> result(cx);
|
|
|
|
result.mServiceCode.Assign(aServiceCode);
|
|
result.mStatusMessage.Assign(aStatusMessage);
|
|
|
|
nsTArray<MozCallForwardingOptions> additionalInformation;
|
|
for (uint32_t i = 0; i < aCount; i++)
|
|
{
|
|
MozCallForwardingOptions options;
|
|
int16_t pShort;
|
|
nsString pString;
|
|
bool pBool;
|
|
|
|
aResults[i]->GetActive(&pBool);
|
|
options.mActive.Construct(pBool);
|
|
|
|
aResults[i]->GetAction(&pShort);
|
|
if (pShort != nsIMobileConnection::CALL_FORWARD_ACTION_UNKNOWN) {
|
|
options.mAction.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetReason(&pShort);
|
|
if (pShort != nsIMobileConnection::CALL_FORWARD_REASON_UNKNOWN) {
|
|
options.mReason.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetNumber(pString);
|
|
options.mNumber.Construct(pString.get());
|
|
|
|
aResults[i]->GetTimeSeconds(&pShort);
|
|
if (pShort >= 0) {
|
|
options.mTimeSeconds.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetServiceClass(&pShort);
|
|
if (pShort != nsIMobileConnection::ICC_SERVICE_CLASS_NONE) {
|
|
options.mServiceClass.Construct(pShort);
|
|
}
|
|
|
|
additionalInformation.AppendElement(options);
|
|
}
|
|
|
|
JS::Rooted<JS::Value> jsAdditionalInformation(cx);
|
|
if (!ToJSValue(cx, additionalInformation, &jsAdditionalInformation)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
result.mAdditionalInformation.Construct().SetAsObject() =
|
|
&jsAdditionalInformation.toObject();
|
|
|
|
return NotifySendCancelMmiSuccess(result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifyGetCallForwardingSuccess(uint32_t aCount,
|
|
nsIMobileCallForwardingOptions** aResults)
|
|
{
|
|
nsTArray<MozCallForwardingOptions> results;
|
|
for (uint32_t i = 0; i < aCount; i++)
|
|
{
|
|
MozCallForwardingOptions result;
|
|
int16_t pShort;
|
|
nsString pString;
|
|
bool pBool;
|
|
|
|
aResults[i]->GetActive(&pBool);
|
|
result.mActive.Construct(pBool);
|
|
|
|
aResults[i]->GetAction(&pShort);
|
|
if (pShort != nsIMobileConnection::CALL_FORWARD_ACTION_UNKNOWN) {
|
|
result.mAction.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetReason(&pShort);
|
|
if (pShort != nsIMobileConnection::CALL_FORWARD_REASON_UNKNOWN) {
|
|
result.mReason.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetNumber(pString);
|
|
result.mNumber.Construct(pString.get());
|
|
|
|
aResults[i]->GetTimeSeconds(&pShort);
|
|
if (pShort >= 0) {
|
|
result.mTimeSeconds.Construct(pShort);
|
|
}
|
|
|
|
aResults[i]->GetServiceClass(&pShort);
|
|
if (pShort != nsIMobileConnection::ICC_SERVICE_CLASS_NONE) {
|
|
result.mServiceClass.Construct(pShort);
|
|
}
|
|
|
|
results.AppendElement(result);
|
|
}
|
|
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, results, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifyGetCallBarringSuccess(uint16_t aProgram,
|
|
bool aEnabled,
|
|
uint16_t aServiceClass)
|
|
{
|
|
MozCallBarringOptions result;
|
|
result.mProgram.Construct().SetValue(aProgram);
|
|
result.mEnabled.Construct().SetValue(aEnabled);
|
|
result.mServiceClass.Construct().SetValue(aServiceClass);
|
|
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
if (!ToJSValue(cx, result, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifyGetClirStatusSuccess(uint16_t aN, uint16_t aM)
|
|
{
|
|
MozClirStatus result;
|
|
result.mN.Construct(aN);
|
|
result.mM.Construct(aM);
|
|
|
|
AutoJSAPI jsapi;
|
|
if (!NS_WARN_IF(jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
if (!ToJSValue(cx, result, &jsResult)) {
|
|
JS_ClearPendingException(cx);
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
};
|
|
|
|
NS_IMETHODIMP
|
|
MobileConnectionCallback::NotifyError(const nsAString& aName,
|
|
const nsAString& aMessage,
|
|
const nsAString& aServiceCode,
|
|
uint16_t aInfo,
|
|
uint8_t aArgc)
|
|
{
|
|
nsCOMPtr<nsIDOMRequestService> rs = do_GetService(DOMREQUEST_SERVICE_CONTRACTID);
|
|
NS_ENSURE_TRUE(rs, NS_ERROR_FAILURE);
|
|
|
|
nsRefPtr<DOMError> error;
|
|
switch (aArgc) {
|
|
case 0:
|
|
return rs->FireErrorAsync(mRequest, aName);
|
|
case 1:
|
|
error = new DOMMMIError(mWindow, aName, aMessage, EmptyString(),
|
|
Nullable<int16_t>());
|
|
return rs->FireDetailedError(mRequest, error);
|
|
case 2:
|
|
error = new DOMMMIError(mWindow, aName, aMessage, aServiceCode,
|
|
Nullable<int16_t>());
|
|
return rs->FireDetailedError(mRequest, error);
|
|
case 3:
|
|
error = new DOMMMIError(mWindow, aName, aMessage, aServiceCode,
|
|
Nullable<int16_t>(int16_t(aInfo)));
|
|
return rs->FireDetailedError(mRequest, error);
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
} // namespace mobileconnection
|
|
} // namespace dom
|
|
} // namespace mozilla
|