mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 13:43:44 +00:00
5c3e1ed7ef
- Bug 1255818. Switch from JS_ClearPendingException to AutoJSAPI::ClearException for cases when we have an AutoJSAPI around. r=bholley (e1e0413493) - Bug 1253591. HTMLAllCollection should be rooted at the document, not the root element, so it can find the root element. r=peterv (c5f2f253a9) - Bug 1257270 - Use std::nullptr_t instead of nullptr_t in WMFUtils.h. r=cpearce (539e705876) - Bug 1251881 - use UniquePtr instead of ScopedDeletePtr in mozglue/linker/; r=glandium (2fe329e32c) - Bug 1219068 - Compute size correctly when a character consists entirely of glue. r=karlt (80f2e23268) - Bug 1246132 - Improve register allocation speed on large functions, r=sunfish. (6e023c252b) - Bug 1150354: Make nsPluginDirServiceProvider build with MSVC 2015 CTP 6, r=jmathies (0113760730) - Bug 1197311 - Remove PR_snprintf calls in dom/ r=froydnj (6268400ef0) - Bug 1255099 - XHR CTOR doesn't need to use implicitJSContext, r=bz (72f08fbc36) - Bug 1255597 - Part 1: Remove redundent trailing spaces. r=khuey (7f2240cb05) - Bug 1255597 - Part 2: Follow spec to modify the content-type check conditions which determine parsing XHR body or not. r=khuey (ba6f7fc536) - Bug 1255597 - Part 3: Synchronize content-type hint of HttpChannelChild to HttpChannelParent. r=jduell (bb97478b01) - Bug 1255597 - Part 4: Remove 'expected fail' settings and expect test cases in responsexml-media-type.htm should be passed. r=khuey (772884b4fb) - Bug 1201170 - During message diversion must be possible to suspend them. r=jduell (abb2361b7f) - Bug 1201174 - For FTP - in case of divertToParent, it myst be possible to delay delivering of OnDataAv./OnStopR. r=jduell (9299ef81be) - Bug 1247393 - use arrays of UniquePtr in ChannelEventQueue; r=mcmanus (7621205b53) - Bug 1254730 - ChannelEventQueue must be thread-safe, r=michal (b8e01204e9) - Bug 1254859 part 2. Switch the AutoEntryScript in nsXULTemplateBuilder::InitHTMLTemplateRoot to take ownership of error reporting. r=bholley (f183ec692c) - Bug 1254859 part 1. Switch the AutoEntryScript in nsGlobalWindow::FireOnNewGlobalObject to take ownership of error reporting. r=bholley (b0cd891917) - Bug 1254860. Switch the AutoEntryScript TestShellCommandParent::RunCallback to taking ownership of error reporting. r=bholley (0c9697e60f) - Bug 1254857. Switch the AutoEntryScript in xpc::EvalInSandbox to take ownership of error reporting. r=bholley (93b6bfc87c) - Bug 1254847 part 3. Make AutoEntryScript always take ownership of error reporting. r=bholley (3c2929462f) - Bug 1256688 - Continue using getPropertyDescriptor for has in Sandbox창. r=peterv (be7e50b715) - Bug 1254730 - patch 2 - Better comments and a better management of lifetime of ChannelEvents, r=michal (8348911e35) - Bug 1163198 - Remove instances of #ifdef PR_LOGGING in dom/plugins. r=froydnj (ba13039dfa) - Bug 1253216 - clean up the atomic ops ifdef nest. r=jorendorff (6ca747d3cf) - Bug 1257055 - Use jit/arm64/Architecture-arm64.h on non-JIT aarch64. r=lth (4f3949cd19) - Bug 1253379 - Cache timings not send to HttpChannelChild r=mayhemer (395172278f) - align SetAllowStaleCacheContent to FF52, possible misspatch (9d29d27011)
297 lines
7.6 KiB
C++
297 lines
7.6 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 "IccCallback.h"
|
|
|
|
#include "mozilla/dom/ContactsBinding.h"
|
|
#include "mozilla/dom/IccCardLockError.h"
|
|
#include "mozilla/dom/MozIccBinding.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/ToJSValue.h"
|
|
#include "nsIIccContact.h"
|
|
#include "nsJSUtils.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace icc {
|
|
|
|
namespace {
|
|
|
|
static nsresult
|
|
IccContactToMozContact(JSContext* aCx, GlobalObject& aGlobal,
|
|
nsIIccContact* aIccContact,
|
|
mozContact** aMozContact)
|
|
{
|
|
*aMozContact = nullptr;
|
|
|
|
ContactProperties properties;
|
|
|
|
// Names
|
|
char16_t** rawStringArray = nullptr;
|
|
uint32_t count = 0;
|
|
nsresult rv = aIccContact->GetNames(&count, &rawStringArray);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (count > 0) {
|
|
Sequence<nsString>& nameSeq = properties.mName.Construct().SetValue();
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
nameSeq.AppendElement(
|
|
rawStringArray[i] ? nsDependentString(rawStringArray[i])
|
|
: EmptyString(),
|
|
fallible);
|
|
}
|
|
NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(count, rawStringArray);
|
|
}
|
|
|
|
// Numbers
|
|
rawStringArray = nullptr;
|
|
count = 0;
|
|
rv = aIccContact->GetNumbers(&count, &rawStringArray);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (count > 0) {
|
|
Sequence<ContactTelField>& numberSeq = properties.mTel.Construct().SetValue();
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
ContactTelField number;
|
|
number.mValue.Construct() =
|
|
rawStringArray[i] ? nsDependentString(rawStringArray[i])
|
|
: EmptyString();
|
|
numberSeq.AppendElement(number, fallible);
|
|
}
|
|
NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(count, rawStringArray);
|
|
}
|
|
|
|
// Emails
|
|
rawStringArray = nullptr;
|
|
count = 0;
|
|
rv = aIccContact->GetEmails(&count, &rawStringArray);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (count > 0) {
|
|
Sequence<ContactField>& emailSeq = properties.mEmail.Construct().SetValue();
|
|
for (uint32_t i = 0; i < count; i++) {
|
|
ContactField email;
|
|
email.mValue.Construct() =
|
|
rawStringArray[i] ? nsDependentString(rawStringArray[i])
|
|
: EmptyString();
|
|
emailSeq.AppendElement(email, fallible);
|
|
}
|
|
NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(count, rawStringArray);
|
|
}
|
|
|
|
ErrorResult er;
|
|
RefPtr<mozContact> contact
|
|
= mozContact::Constructor(aGlobal, aCx, properties, er);
|
|
rv = er.StealNSResult();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsAutoString contactId;
|
|
rv = aIccContact->GetId(contactId);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
contact->SetId(contactId, er);
|
|
rv = er.StealNSResult();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
contact.forget(aMozContact);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
static NS_IMETHODIMP
|
|
IccContactListToMozContactList(JSContext* aCx, GlobalObject& aGlobal,
|
|
nsIIccContact** aContacts, uint32_t aCount,
|
|
nsTArray<RefPtr<mozContact>>& aContactList)
|
|
{
|
|
aContactList.SetCapacity(aCount);
|
|
for (uint32_t i = 0; i < aCount ; i++) {
|
|
RefPtr<mozContact> contact;
|
|
nsresult rv =
|
|
IccContactToMozContact(aCx, aGlobal, aContacts[i], getter_AddRefs(contact));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
aContactList.AppendElement(contact);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
NS_IMPL_ISUPPORTS(IccCallback, nsIIccCallback)
|
|
|
|
IccCallback::IccCallback(nsPIDOMWindow* aWindow, DOMRequest* aRequest,
|
|
bool aIsCardLockEnabled)
|
|
: mWindow(aWindow)
|
|
, mRequest(aRequest)
|
|
, mIsCardLockEnabled(aIsCardLockEnabled)
|
|
{
|
|
}
|
|
|
|
IccCallback::IccCallback(nsPIDOMWindow* aWindow, Promise* aPromise)
|
|
: mWindow(aWindow)
|
|
, mPromise(aPromise)
|
|
{
|
|
}
|
|
|
|
nsresult
|
|
IccCallback::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);
|
|
}
|
|
|
|
nsresult
|
|
IccCallback::NotifyGetCardLockEnabled(bool aResult)
|
|
{
|
|
IccCardLockStatus result;
|
|
result.mEnabled.Construct(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, result, &jsResult)) {
|
|
jsapi.ClearException();
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifySuccess()
|
|
{
|
|
return NotifySuccess(JS::UndefinedHandleValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifySuccessWithBoolean(bool aResult)
|
|
{
|
|
if (mPromise) {
|
|
mPromise->MaybeResolve(aResult ? JS::TrueHandleValue : JS::FalseHandleValue);
|
|
return NS_OK;
|
|
}
|
|
|
|
return mIsCardLockEnabled
|
|
? NotifyGetCardLockEnabled(aResult)
|
|
: NotifySuccess(aResult ? JS::TrueHandleValue : JS::FalseHandleValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifyGetCardLockRetryCount(int32_t aCount)
|
|
{
|
|
// TODO: Bug 1125018 - Simplify The Result of GetCardLock and
|
|
// getCardLockRetryCount in MozIcc.webidl without a wrapper object.
|
|
IccCardLockRetryCount result;
|
|
result.mRetryCount.Construct(aCount);
|
|
|
|
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)) {
|
|
jsapi.ClearException();
|
|
return NS_ERROR_TYPE_ERR;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifyError(const nsAString & aErrorMsg)
|
|
{
|
|
if (mPromise) {
|
|
mPromise->MaybeRejectBrokenly(aErrorMsg);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsCOMPtr<nsIDOMRequestService> rs =
|
|
do_GetService(DOMREQUEST_SERVICE_CONTRACTID);
|
|
NS_ENSURE_TRUE(rs, NS_ERROR_FAILURE);
|
|
|
|
return rs->FireErrorAsync(mRequest, aErrorMsg);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifyCardLockError(const nsAString & aErrorMsg,
|
|
int32_t aRetryCount)
|
|
{
|
|
RefPtr<IccCardLockError> error =
|
|
new IccCardLockError(mWindow, aErrorMsg, aRetryCount);
|
|
mRequest->FireDetailedError(error);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifyRetrievedIccContacts(nsIIccContact** aContacts,
|
|
uint32_t aCount)
|
|
{
|
|
MOZ_ASSERT(aContacts);
|
|
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
nsCOMPtr<nsIGlobalObject> go = do_QueryInterface(mWindow);
|
|
GlobalObject global(cx, go->GetGlobalJSObject());
|
|
|
|
nsTArray<RefPtr<mozContact>> contactList;
|
|
|
|
nsresult rv =
|
|
IccContactListToMozContactList(cx, global, aContacts, aCount, contactList);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, contactList, &jsResult)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
IccCallback::NotifyUpdatedIccContact(nsIIccContact* aContact)
|
|
{
|
|
MOZ_ASSERT(aContact);
|
|
|
|
AutoJSAPI jsapi;
|
|
if (NS_WARN_IF(!jsapi.Init(mWindow))) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
nsCOMPtr<nsIGlobalObject> go = do_QueryInterface(mWindow);
|
|
GlobalObject global(cx, go->GetGlobalJSObject());
|
|
|
|
RefPtr<mozContact> mozContact;
|
|
nsresult rv =
|
|
IccContactToMozContact(cx, global, aContact, getter_AddRefs(mozContact));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
JS::Rooted<JS::Value> jsResult(cx);
|
|
|
|
if (!ToJSValue(cx, mozContact, &jsResult)) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return NotifySuccess(jsResult);
|
|
}
|
|
|
|
} // namespace icc
|
|
} // namespace dom
|
|
} // namespace mozilla
|