2015-05-03 12:32:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-06-11 18:41:21 -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/. */
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
#include "mozilla/dom/Promise.h"
|
2013-08-28 21:30:06 -07:00
|
|
|
|
2014-11-17 01:42:00 -08:00
|
|
|
#include "js/Debug.h"
|
2015-08-06 05:45:21 -07:00
|
|
|
|
|
|
|
#include "mozilla/Atomics.h"
|
|
|
|
#include "mozilla/CycleCollectedJSRuntime.h"
|
|
|
|
#include "mozilla/OwningNonNull.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
2014-07-18 18:31:11 -07:00
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
2014-06-03 08:38:38 -07:00
|
|
|
#include "mozilla/dom/DOMError.h"
|
2015-08-06 05:45:21 -07:00
|
|
|
#include "mozilla/dom/MediaStreamError.h"
|
2013-07-11 13:40:36 -07:00
|
|
|
#include "mozilla/dom/PromiseBinding.h"
|
2014-07-18 18:31:11 -07:00
|
|
|
#include "mozilla/dom/ScriptSettings.h"
|
2015-08-06 05:45:21 -07:00
|
|
|
|
|
|
|
#include "jsfriendapi.h"
|
2015-09-02 09:20:30 -07:00
|
|
|
#include "js/StructuredClone.h"
|
2015-08-06 05:45:21 -07:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
|
|
|
#include "nsJSEnvironment.h"
|
|
|
|
#include "nsJSPrincipals.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
2013-07-11 13:40:36 -07:00
|
|
|
#include "PromiseCallback.h"
|
2015-04-10 08:27:57 -07:00
|
|
|
#include "PromiseDebugging.h"
|
2013-11-19 10:43:51 -08:00
|
|
|
#include "PromiseNativeHandler.h"
|
2014-02-24 05:56:54 -08:00
|
|
|
#include "PromiseWorkerProxy.h"
|
2013-08-07 14:40:20 -07:00
|
|
|
#include "WorkerPrivate.h"
|
2013-10-23 06:16:49 -07:00
|
|
|
#include "WorkerRunnable.h"
|
2014-07-03 22:24:59 -07:00
|
|
|
#include "xpcpublic.h"
|
2015-09-08 18:23:55 -07:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
#include "nsExceptionHandler.h"
|
|
|
|
#endif
|
2013-06-11 18:41:21 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
namespace {
|
|
|
|
// Generator used by Promise::GetID.
|
|
|
|
Atomic<uintptr_t> gIDGenerator(0);
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace
|
2015-04-10 08:27:57 -07:00
|
|
|
|
2013-11-24 11:26:07 -08:00
|
|
|
using namespace workers;
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
// This class processes the promise's callbacks with promise's result.
|
2015-08-06 08:18:30 -07:00
|
|
|
class PromiseReactionJob final : public nsRunnable
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
|
|
|
public:
|
2015-08-06 08:18:30 -07:00
|
|
|
PromiseReactionJob(Promise* aPromise,
|
|
|
|
PromiseCallback* aCallback,
|
|
|
|
const JS::Value& aValue)
|
2013-07-11 13:40:36 -07:00
|
|
|
: mPromise(aPromise)
|
2014-10-28 05:08:19 -07:00
|
|
|
, mCallback(aCallback)
|
|
|
|
, mValue(CycleCollectedJSRuntime::Get()->Runtime(), aValue)
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2013-07-11 13:40:36 -07:00
|
|
|
MOZ_ASSERT(aPromise);
|
2014-10-28 05:08:19 -07:00
|
|
|
MOZ_ASSERT(aCallback);
|
2015-08-06 08:18:30 -07:00
|
|
|
MOZ_COUNT_CTOR(PromiseReactionJob);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
virtual
|
2015-08-06 08:18:30 -07:00
|
|
|
~PromiseReactionJob()
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(PromiseReactionJob);
|
|
|
|
MOZ_COUNT_DTOR(PromiseReactionJob);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
protected:
|
2014-08-19 03:39:56 -07:00
|
|
|
NS_IMETHOD
|
2015-03-21 09:28:04 -07:00
|
|
|
Run() override
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(PromiseReactionJob);
|
2014-10-28 05:08:19 -07:00
|
|
|
ThreadsafeAutoJSContext cx;
|
|
|
|
JS::Rooted<JSObject*> wrapper(cx, mPromise->GetWrapper());
|
|
|
|
MOZ_ASSERT(wrapper); // It was preserved!
|
|
|
|
JSAutoCompartment ac(cx, wrapper);
|
2013-06-11 18:41:21 -07:00
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
JS::Rooted<JS::Value> value(cx, mValue);
|
|
|
|
if (!MaybeWrapValue(cx, &value)) {
|
|
|
|
NS_WARNING("Failed to wrap value into the right compartment.");
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2013-09-11 09:03:04 -07:00
|
|
|
|
2015-03-09 05:36:29 -07:00
|
|
|
JS::Rooted<JSObject*> asyncStack(cx, mPromise->mAllocationStack);
|
|
|
|
JS::Rooted<JSString*> asyncCause(cx, JS_NewStringCopyZ(cx, "Promise"));
|
|
|
|
if (!asyncCause) {
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Maybe<JS::AutoSetAsyncStackForNewCalls> sas;
|
|
|
|
if (asyncStack) {
|
|
|
|
sas.emplace(cx, asyncStack, asyncCause);
|
|
|
|
}
|
|
|
|
mCallback->Call(cx, value);
|
|
|
|
}
|
2013-09-11 09:03:04 -07:00
|
|
|
|
2014-08-19 03:39:56 -07:00
|
|
|
return NS_OK;
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> mPromise;
|
|
|
|
RefPtr<PromiseCallback> mCallback;
|
2014-04-16 01:47:53 -07:00
|
|
|
JS::PersistentRooted<JS::Value> mValue;
|
2013-11-24 11:26:07 -08:00
|
|
|
NS_DECL_OWNINGTHREAD;
|
|
|
|
};
|
|
|
|
|
2014-05-20 14:21:13 -07:00
|
|
|
enum {
|
|
|
|
SLOT_PROMISE = 0,
|
|
|
|
SLOT_DATA
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Utilities for thenable callbacks.
|
|
|
|
*
|
|
|
|
* A thenable is a { then: function(resolve, reject) { } }.
|
|
|
|
* `then` is called with a resolve and reject callback pair.
|
|
|
|
* Since only one of these should be called at most once (first call wins), the
|
|
|
|
* two keep a reference to each other in SLOT_DATA. When either of them is
|
|
|
|
* called, the references are cleared. Further calls are ignored.
|
|
|
|
*/
|
|
|
|
namespace {
|
|
|
|
void
|
|
|
|
LinkThenableCallables(JSContext* aCx, JS::Handle<JSObject*> aResolveFunc,
|
|
|
|
JS::Handle<JSObject*> aRejectFunc)
|
|
|
|
{
|
|
|
|
js::SetFunctionNativeReserved(aResolveFunc, SLOT_DATA,
|
|
|
|
JS::ObjectValue(*aRejectFunc));
|
|
|
|
js::SetFunctionNativeReserved(aRejectFunc, SLOT_DATA,
|
|
|
|
JS::ObjectValue(*aResolveFunc));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns false if callback was already called before, otherwise breaks the
|
|
|
|
* links and returns true.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
MarkAsCalledIfNotCalledBefore(JSContext* aCx, JS::Handle<JSObject*> aFunc)
|
|
|
|
{
|
|
|
|
JS::Value otherFuncVal = js::GetFunctionNativeReserved(aFunc, SLOT_DATA);
|
|
|
|
|
|
|
|
if (!otherFuncVal.isObject()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* otherFuncObj = &otherFuncVal.toObject();
|
|
|
|
MOZ_ASSERT(js::GetFunctionNativeReserved(otherFuncObj, SLOT_DATA).isObject());
|
|
|
|
|
|
|
|
// Break both references.
|
|
|
|
js::SetFunctionNativeReserved(aFunc, SLOT_DATA, JS::UndefinedValue());
|
|
|
|
js::SetFunctionNativeReserved(otherFuncObj, SLOT_DATA, JS::UndefinedValue());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Promise*
|
|
|
|
GetPromise(JSContext* aCx, JS::Handle<JSObject*> aFunc)
|
|
|
|
{
|
|
|
|
JS::Value promiseVal = js::GetFunctionNativeReserved(aFunc, SLOT_PROMISE);
|
|
|
|
|
|
|
|
MOZ_ASSERT(promiseVal.isObject());
|
|
|
|
|
|
|
|
Promise* promise;
|
|
|
|
UNWRAP_OBJECT(Promise, &promiseVal.toObject(), promise);
|
|
|
|
return promise;
|
|
|
|
}
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace
|
2014-05-20 14:21:13 -07:00
|
|
|
|
2015-04-17 19:01:02 -07:00
|
|
|
// Runnable to resolve thenables.
|
2014-05-20 14:21:13 -07:00
|
|
|
// Equivalent to the specification's ResolvePromiseViaThenableTask.
|
2015-08-03 09:48:34 -07:00
|
|
|
class PromiseResolveThenableJob final : public nsRunnable
|
2014-05-20 14:21:13 -07:00
|
|
|
{
|
|
|
|
public:
|
2015-08-03 09:48:34 -07:00
|
|
|
PromiseResolveThenableJob(Promise* aPromise,
|
|
|
|
JS::Handle<JSObject*> aThenable,
|
|
|
|
PromiseInit* aThen)
|
2014-05-20 14:21:13 -07:00
|
|
|
: mPromise(aPromise)
|
|
|
|
, mThenable(CycleCollectedJSRuntime::Get()->Runtime(), aThenable)
|
|
|
|
, mThen(aThen)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aPromise);
|
2015-08-03 09:48:34 -07:00
|
|
|
MOZ_COUNT_CTOR(PromiseResolveThenableJob);
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
|
2014-08-19 03:39:56 -07:00
|
|
|
virtual
|
2015-08-03 09:48:34 -07:00
|
|
|
~PromiseResolveThenableJob()
|
2014-05-20 14:21:13 -07:00
|
|
|
{
|
2015-08-03 09:48:34 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(PromiseResolveThenableJob);
|
|
|
|
MOZ_COUNT_DTOR(PromiseResolveThenableJob);
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-08-19 03:39:56 -07:00
|
|
|
NS_IMETHOD
|
2015-03-21 09:28:04 -07:00
|
|
|
Run() override
|
2014-05-20 14:21:13 -07:00
|
|
|
{
|
2015-08-03 09:48:34 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(PromiseResolveThenableJob);
|
2014-05-20 14:21:13 -07:00
|
|
|
ThreadsafeAutoJSContext cx;
|
2014-07-18 18:31:11 -07:00
|
|
|
JS::Rooted<JSObject*> wrapper(cx, mPromise->GetWrapper());
|
|
|
|
MOZ_ASSERT(wrapper); // It was preserved!
|
2015-04-17 19:01:02 -07:00
|
|
|
// If we ever change which compartment we're working in here, make sure to
|
|
|
|
// fix the fast-path for resolved-with-a-Promise in ResolveInternal.
|
2014-05-20 14:21:13 -07:00
|
|
|
JSAutoCompartment ac(cx, wrapper);
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> resolveFunc(cx,
|
|
|
|
mPromise->CreateThenableFunction(cx, mPromise, PromiseCallback::Resolve));
|
|
|
|
|
|
|
|
if (!resolveFunc) {
|
|
|
|
mPromise->HandleException(cx);
|
2014-08-19 03:39:56 -07:00
|
|
|
return NS_OK;
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> rejectFunc(cx,
|
|
|
|
mPromise->CreateThenableFunction(cx, mPromise, PromiseCallback::Reject));
|
|
|
|
if (!rejectFunc) {
|
|
|
|
mPromise->HandleException(cx);
|
2014-08-19 03:39:56 -07:00
|
|
|
return NS_OK;
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
LinkThenableCallables(cx, resolveFunc, rejectFunc);
|
|
|
|
|
|
|
|
ErrorResult rv;
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> rootedThenable(cx, mThenable);
|
|
|
|
|
|
|
|
mThen->Call(rootedThenable, resolveFunc, rejectFunc, rv,
|
2015-04-08 18:23:48 -07:00
|
|
|
"promise thenable", CallbackObject::eRethrowExceptions,
|
2015-01-15 14:39:02 -08:00
|
|
|
mPromise->Compartment());
|
2014-05-20 14:21:13 -07:00
|
|
|
|
|
|
|
rv.WouldReportJSException();
|
2015-01-15 14:39:02 -08:00
|
|
|
if (rv.Failed()) {
|
2014-05-20 14:21:13 -07:00
|
|
|
JS::Rooted<JS::Value> exn(cx);
|
2015-11-20 13:29:41 -08:00
|
|
|
{ // Scope for JSAutoCompartment
|
|
|
|
|
2015-01-15 14:39:02 -08:00
|
|
|
// Convert the ErrorResult to a JS exception object that we can reject
|
|
|
|
// ourselves with. This will be exactly the exception that would get
|
|
|
|
// thrown from a binding method whose ErrorResult ended up with
|
|
|
|
// whatever is on "rv" right now.
|
|
|
|
JSAutoCompartment ac(cx, mPromise->GlobalJSObject());
|
|
|
|
DebugOnly<bool> conversionResult = ToJSValue(cx, rv, &exn);
|
|
|
|
MOZ_ASSERT(conversionResult);
|
|
|
|
}
|
2014-05-20 14:21:13 -07:00
|
|
|
|
|
|
|
bool couldMarkAsCalled = MarkAsCalledIfNotCalledBefore(cx, resolveFunc);
|
|
|
|
|
|
|
|
// If we could mark as called, neither of the callbacks had been called
|
|
|
|
// when the exception was thrown. So we can reject the Promise.
|
|
|
|
if (couldMarkAsCalled) {
|
|
|
|
bool ok = JS_WrapValue(cx, &exn);
|
|
|
|
MOZ_ASSERT(ok);
|
|
|
|
if (!ok) {
|
|
|
|
NS_WARNING("Failed to wrap value into the right compartment.");
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
mPromise->RejectInternal(cx, exn);
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
// At least one of resolveFunc or rejectFunc have been called, so ignore
|
|
|
|
// the exception. FIXME(nsm): This should be reported to the error
|
|
|
|
// console though, for debugging.
|
|
|
|
}
|
2014-08-19 03:39:56 -07:00
|
|
|
|
2015-04-27 12:00:41 -07:00
|
|
|
return rv.StealNSResult();
|
2014-05-20 14:21:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> mPromise;
|
2014-05-20 14:21:13 -07:00
|
|
|
JS::PersistentRooted<JSObject*> mThenable;
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseInit> mThen;
|
2014-05-20 14:21:13 -07:00
|
|
|
NS_DECL_OWNINGTHREAD;
|
|
|
|
};
|
|
|
|
|
2015-08-03 09:48:34 -07:00
|
|
|
// Fast version of PromiseResolveThenableJob for use in the cases when we know we're
|
2015-04-17 19:01:02 -07:00
|
|
|
// calling the canonical Promise.prototype.then on an actual DOM Promise. In
|
|
|
|
// that case we can just bypass the jumping into and out of JS and call
|
|
|
|
// AppendCallbacks on that promise directly.
|
2015-08-03 09:48:34 -07:00
|
|
|
class FastPromiseResolveThenableJob final : public nsRunnable
|
2015-04-17 19:01:02 -07:00
|
|
|
{
|
|
|
|
public:
|
2015-08-03 09:48:34 -07:00
|
|
|
FastPromiseResolveThenableJob(PromiseCallback* aResolveCallback,
|
|
|
|
PromiseCallback* aRejectCallback,
|
|
|
|
Promise* aNextPromise)
|
2015-04-17 19:01:02 -07:00
|
|
|
: mResolveCallback(aResolveCallback)
|
|
|
|
, mRejectCallback(aRejectCallback)
|
|
|
|
, mNextPromise(aNextPromise)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aResolveCallback);
|
|
|
|
MOZ_ASSERT(aRejectCallback);
|
|
|
|
MOZ_ASSERT(aNextPromise);
|
2015-08-03 09:48:34 -07:00
|
|
|
MOZ_COUNT_CTOR(FastPromiseResolveThenableJob);
|
2015-04-17 19:01:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual
|
2015-08-03 09:48:34 -07:00
|
|
|
~FastPromiseResolveThenableJob()
|
2015-04-17 19:01:02 -07:00
|
|
|
{
|
2015-08-03 09:48:34 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(FastPromiseResolveThenableJob);
|
|
|
|
MOZ_COUNT_DTOR(FastPromiseResolveThenableJob);
|
2015-04-17 19:01:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
NS_IMETHOD
|
|
|
|
Run() override
|
|
|
|
{
|
2015-08-03 09:48:34 -07:00
|
|
|
NS_ASSERT_OWNINGTHREAD(FastPromiseResolveThenableJob);
|
2015-04-17 19:01:02 -07:00
|
|
|
mNextPromise->AppendCallbacks(mResolveCallback, mRejectCallback);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> mResolveCallback;
|
|
|
|
RefPtr<PromiseCallback> mRejectCallback;
|
|
|
|
RefPtr<Promise> mNextPromise;
|
2015-04-17 19:01:02 -07:00
|
|
|
};
|
|
|
|
|
2015-11-25 12:48:08 -08:00
|
|
|
// A struct implementing
|
|
|
|
// <http://www.ecma-international.org/ecma-262/6.0/#sec-promisecapability-records>.
|
|
|
|
// While the spec holds on to these in some places, in practice those places
|
|
|
|
// don't actually need everything from this struct, so we explicitly grab
|
|
|
|
// members from it as needed in those situations. That allows us to make this a
|
|
|
|
// stack-only struct and keep the rooting simple.
|
|
|
|
//
|
|
|
|
// We also add an optimization for the (common) case when we discover that the
|
|
|
|
// Promise constructor we're supposed to use is in fact the canonical Promise
|
|
|
|
// constructor. In that case we will just set mNativePromise in our
|
|
|
|
// PromiseCapability and not set mPromise/mResolve/mReject; the correct
|
|
|
|
// callbacks will be the standard Promise ones, and we don't really want to
|
|
|
|
// synthesize JSFunctions for them in that situation.
|
|
|
|
struct MOZ_STACK_CLASS Promise::PromiseCapability
|
|
|
|
{
|
|
|
|
explicit PromiseCapability(JSContext* aCx)
|
|
|
|
: mPromise(aCx)
|
|
|
|
, mResolve(aCx)
|
|
|
|
, mReject(aCx)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// Take an exception on aCx and try to convert it into a promise rejection.
|
|
|
|
// Note that this can result in a new exception being thrown on aCx, or an
|
|
|
|
// exception getting thrown on aRv. On entry to this method, aRv is assumed
|
|
|
|
// to not be a failure. This should only be called if NewPromiseCapability
|
|
|
|
// succeeded on this PromiseCapability.
|
|
|
|
void RejectWithException(JSContext* aCx, ErrorResult& aRv);
|
|
|
|
|
|
|
|
// Return a JS::Value representing the promise. This should only be called if
|
|
|
|
// NewPromiseCapability succeeded on this PromiseCapability. It makes no
|
|
|
|
// guarantees about compartments (e.g. in the mNativePromise case it's in the
|
|
|
|
// compartment of the reflector, but in the mPromise case it might be in the
|
|
|
|
// compartment of some cross-compartment wrapper for a reflector).
|
|
|
|
JS::Value PromiseValue() const;
|
|
|
|
|
|
|
|
// All the JS::Value fields of this struct are actually objects, but for our
|
|
|
|
// purposes it's simpler to store them as JS::Value.
|
|
|
|
|
|
|
|
// [[Promise]].
|
|
|
|
JS::Rooted<JS::Value> mPromise;
|
|
|
|
// [[Resolve]]. Value in the context compartment.
|
|
|
|
JS::Rooted<JS::Value> mResolve;
|
|
|
|
// [[Reject]]. Value in the context compartment.
|
|
|
|
JS::Rooted<JS::Value> mReject;
|
|
|
|
// If mNativePromise is non-null, we should use it, not mPromise.
|
|
|
|
RefPtr<Promise> mNativePromise;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// We don't want to allow creation of temporaries of this type, ever.
|
|
|
|
PromiseCapability(const PromiseCapability&) = delete;
|
|
|
|
PromiseCapability(PromiseCapability&&) = delete;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
Promise::PromiseCapability::RejectWithException(JSContext* aCx,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
// This method basically implements
|
|
|
|
// http://www.ecma-international.org/ecma-262/6.0/#sec-ifabruptrejectpromise
|
|
|
|
// or at least the parts of it that happen if we have an abrupt completion.
|
|
|
|
|
|
|
|
MOZ_ASSERT(!aRv.Failed());
|
|
|
|
MOZ_ASSERT(mNativePromise || !mPromise.isUndefined(),
|
|
|
|
"NewPromiseCapability didn't succeed");
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> exn(aCx);
|
|
|
|
if (!JS_GetPendingException(aCx, &exn)) {
|
|
|
|
// This is an uncatchable exception, so can't be converted into a rejection.
|
|
|
|
// Just rethrow that on aRv.
|
|
|
|
aRv.ThrowUncatchableException();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
|
|
|
|
// If we have a native promise, just reject it without trying to call out into
|
|
|
|
// JS.
|
|
|
|
if (mNativePromise) {
|
|
|
|
mNativePromise->MaybeRejectInternal(aCx, exn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> ignored(aCx);
|
|
|
|
if (!JS::Call(aCx, JS::UndefinedHandleValue, mReject, JS::HandleValueArray(exn),
|
|
|
|
&ignored)) {
|
|
|
|
aRv.NoteJSContextException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Value
|
|
|
|
Promise::PromiseCapability::PromiseValue() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mNativePromise || !mPromise.isUndefined(),
|
|
|
|
"NewPromiseCapability didn't succeed");
|
|
|
|
|
|
|
|
if (mNativePromise) {
|
|
|
|
return JS::ObjectValue(*mNativePromise->GetWrapper());
|
|
|
|
}
|
|
|
|
|
|
|
|
return mPromise;
|
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
// Promise
|
2013-06-11 18:41:21 -07:00
|
|
|
|
2013-08-01 18:29:05 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(Promise)
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(Promise)
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
tmp->MaybeReportRejectedOnce();
|
2015-04-10 08:27:57 -07:00
|
|
|
#else
|
|
|
|
tmp->mResult = JS::UndefinedValue();
|
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-02-25 13:34:55 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mGlobal)
|
2014-04-09 01:30:24 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mResolveCallbacks)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mRejectCallbacks)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(Promise)
|
2014-02-25 13:34:55 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mGlobal)
|
2014-04-09 01:30:24 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mResolveCallbacks)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mRejectCallbacks)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(Promise)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JSVAL_MEMBER_CALLBACK(mResult)
|
2014-10-19 19:27:12 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mAllocationStack)
|
2014-10-19 19:27:12 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mRejectionStack)
|
2014-10-19 19:27:12 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mFullfillmentStack)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2015-02-24 14:24:45 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_BEGIN(Promise)
|
|
|
|
if (tmp->IsBlack()) {
|
2015-10-09 13:48:10 -07:00
|
|
|
JS::ExposeValueToActiveJS(tmp->mResult);
|
2015-02-24 14:24:45 -08:00
|
|
|
if (tmp->mAllocationStack) {
|
|
|
|
JS::ExposeObjectToActiveJS(tmp->mAllocationStack);
|
|
|
|
}
|
|
|
|
if (tmp->mRejectionStack) {
|
|
|
|
JS::ExposeObjectToActiveJS(tmp->mRejectionStack);
|
|
|
|
}
|
|
|
|
if (tmp->mFullfillmentStack) {
|
|
|
|
JS::ExposeObjectToActiveJS(tmp->mFullfillmentStack);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_BEGIN(Promise)
|
|
|
|
return tmp->IsBlackAndDoesNotNeedTracing(tmp);
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_BEGIN(Promise)
|
|
|
|
return tmp->IsBlack();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_END
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(Promise)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(Promise)
|
2013-06-11 18:41:21 -07:00
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(Promise)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
2014-12-25 18:11:20 -08:00
|
|
|
NS_INTERFACE_MAP_ENTRY(Promise)
|
2013-06-11 18:41:21 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2014-02-25 13:34:55 -08:00
|
|
|
Promise::Promise(nsIGlobalObject* aGlobal)
|
|
|
|
: mGlobal(aGlobal)
|
2013-06-11 18:41:21 -07:00
|
|
|
, mResult(JS::UndefinedValue())
|
2014-10-19 19:27:12 -07:00
|
|
|
, mAllocationStack(nullptr)
|
2014-10-19 19:27:12 -07:00
|
|
|
, mRejectionStack(nullptr)
|
2014-10-19 19:27:12 -07:00
|
|
|
, mFullfillmentStack(nullptr)
|
2013-06-11 18:41:21 -07:00
|
|
|
, mState(Pending)
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2013-08-28 21:30:06 -07:00
|
|
|
, mHadRejectCallback(false)
|
2015-04-10 08:27:57 -07:00
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
|
|
|
, mTaskPending(false)
|
2013-09-11 09:03:04 -07:00
|
|
|
, mResolvePending(false)
|
2015-04-10 08:27:57 -07:00
|
|
|
, mIsLastInChain(true)
|
|
|
|
, mWasNotifiedAsUncaught(false)
|
|
|
|
, mID(0)
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2014-02-25 13:34:55 -08:00
|
|
|
MOZ_ASSERT(mGlobal);
|
|
|
|
|
2013-08-16 13:10:17 -07:00
|
|
|
mozilla::HoldJSObjects(this);
|
2014-10-20 10:02:21 -07:00
|
|
|
|
|
|
|
mCreationTimestamp = TimeStamp::Now();
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
Promise::~Promise()
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
MaybeReportRejectedOnce();
|
2015-04-10 08:27:57 -07:00
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2013-08-16 13:10:17 -07:00
|
|
|
mozilla::DropJSObjects(this);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 07:13:33 -07:00
|
|
|
Promise::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 07:13:33 -07:00
|
|
|
return PromiseBinding::Wrap(aCx, this, aGivenProto);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2014-07-18 18:31:11 -07:00
|
|
|
already_AddRefed<Promise>
|
2015-07-31 10:30:55 -07:00
|
|
|
Promise::Create(nsIGlobalObject* aGlobal, ErrorResult& aRv,
|
|
|
|
JS::Handle<JSObject*> aDesiredProto)
|
2014-09-11 19:18:49 -07:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> p = new Promise(aGlobal);
|
2015-07-31 10:30:55 -07:00
|
|
|
p->CreateWrapper(aDesiredProto, aRv);
|
2014-09-11 19:18:49 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return p.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-07-31 10:30:55 -07:00
|
|
|
Promise::CreateWrapper(JS::Handle<JSObject*> aDesiredProto, ErrorResult& aRv)
|
2014-02-25 13:34:55 -08:00
|
|
|
{
|
2014-07-18 18:31:11 -07:00
|
|
|
AutoJSAPI jsapi;
|
2014-09-11 19:18:49 -07:00
|
|
|
if (!jsapi.Init(mGlobal)) {
|
2014-07-18 18:31:11 -07:00
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
2014-09-11 19:18:49 -07:00
|
|
|
return;
|
2014-02-25 13:34:55 -08:00
|
|
|
}
|
2014-07-18 18:31:11 -07:00
|
|
|
JSContext* cx = jsapi.cx();
|
2014-02-25 13:34:55 -08:00
|
|
|
|
2014-11-17 01:42:00 -08:00
|
|
|
JS::Rooted<JS::Value> wrapper(cx);
|
2015-07-31 10:30:55 -07:00
|
|
|
if (!GetOrCreateDOMReflector(cx, this, &wrapper, aDesiredProto)) {
|
2014-07-18 18:31:11 -07:00
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
2014-09-11 19:18:49 -07:00
|
|
|
return;
|
2014-02-25 13:34:55 -08:00
|
|
|
}
|
|
|
|
|
2014-09-11 19:18:49 -07:00
|
|
|
dom::PreserveWrapper(this);
|
2014-10-19 19:27:12 -07:00
|
|
|
|
|
|
|
// Now grab our allocation stack
|
|
|
|
if (!CaptureStack(cx, mAllocationStack)) {
|
|
|
|
JS_ClearPendingException(cx);
|
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return;
|
|
|
|
}
|
2014-11-17 01:42:00 -08:00
|
|
|
|
|
|
|
JS::RootedObject obj(cx, &wrapper.toObject());
|
|
|
|
JS::dbg::onNewPromise(cx, obj);
|
2014-02-25 13:34:55 -08:00
|
|
|
}
|
|
|
|
|
2013-09-26 11:09:16 -07:00
|
|
|
void
|
|
|
|
Promise::MaybeResolve(JSContext* aCx,
|
2013-11-19 10:39:51 -08:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-26 11:09:16 -07:00
|
|
|
{
|
|
|
|
MaybeResolveInternal(aCx, aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Promise::MaybeReject(JSContext* aCx,
|
2013-11-19 10:39:51 -08:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-26 11:09:16 -07:00
|
|
|
{
|
|
|
|
MaybeRejectInternal(aCx, aValue);
|
|
|
|
}
|
|
|
|
|
2014-09-19 23:20:41 -07:00
|
|
|
void
|
2015-10-17 22:24:48 -07:00
|
|
|
Promise::MaybeReject(const RefPtr<MediaStreamError>& aArg) {
|
2014-09-19 23:20:41 -07:00
|
|
|
MaybeSomething(aArg, &Promise::MaybeReject);
|
|
|
|
}
|
|
|
|
|
2014-11-11 05:47:28 -08:00
|
|
|
bool
|
2014-10-28 05:08:19 -07:00
|
|
|
Promise::PerformMicroTaskCheckpoint()
|
|
|
|
{
|
|
|
|
CycleCollectedJSRuntime* runtime = CycleCollectedJSRuntime::Get();
|
2015-05-01 19:33:01 -07:00
|
|
|
std::queue<nsCOMPtr<nsIRunnable>>& microtaskQueue =
|
2014-10-28 05:08:19 -07:00
|
|
|
runtime->GetPromiseMicroTaskQueue();
|
|
|
|
|
2015-05-01 19:33:01 -07:00
|
|
|
if (microtaskQueue.empty()) {
|
2014-11-11 05:47:28 -08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-27 12:00:41 -07:00
|
|
|
Maybe<AutoSafeJSContext> cx;
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
cx.emplace();
|
|
|
|
}
|
|
|
|
|
2014-11-11 05:47:28 -08:00
|
|
|
do {
|
2015-05-01 19:33:01 -07:00
|
|
|
nsCOMPtr<nsIRunnable> runnable = microtaskQueue.front();
|
2014-10-28 05:08:19 -07:00
|
|
|
MOZ_ASSERT(runnable);
|
|
|
|
|
|
|
|
// This function can re-enter, so we remove the element before calling.
|
2015-05-01 19:33:01 -07:00
|
|
|
microtaskQueue.pop();
|
2015-04-27 12:00:41 -07:00
|
|
|
nsresult rv = runnable->Run();
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (cx.isSome()) {
|
|
|
|
JS_CheckForInterrupt(cx.ref());
|
|
|
|
}
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 06:10:46 -07:00
|
|
|
runtime->AfterProcessMicrotask();
|
2015-05-01 19:33:01 -07:00
|
|
|
} while (!microtaskQueue.empty());
|
2014-11-11 05:47:28 -08:00
|
|
|
|
|
|
|
return true;
|
2014-10-28 05:08:19 -07:00
|
|
|
}
|
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
/* static */ bool
|
2014-01-23 10:47:29 -08:00
|
|
|
Promise::JSCallback(JSContext* aCx, unsigned aArgc, JS::Value* aVp)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
JS::CallArgs args = CallArgsFromVp(aArgc, aVp);
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> v(aCx,
|
|
|
|
js::GetFunctionNativeReserved(&args.callee(),
|
|
|
|
SLOT_PROMISE));
|
|
|
|
MOZ_ASSERT(v.isObject());
|
|
|
|
|
|
|
|
Promise* promise;
|
2013-11-21 04:51:16 -08:00
|
|
|
if (NS_FAILED(UNWRAP_OBJECT(Promise, &v.toObject(), promise))) {
|
2013-09-11 09:03:04 -07:00
|
|
|
return Throw(aCx, NS_ERROR_UNEXPECTED);
|
|
|
|
}
|
|
|
|
|
2014-01-23 10:47:29 -08:00
|
|
|
v = js::GetFunctionNativeReserved(&args.callee(), SLOT_DATA);
|
2013-09-11 09:03:04 -07:00
|
|
|
PromiseCallback::Task task = static_cast<PromiseCallback::Task>(v.toInt32());
|
|
|
|
|
|
|
|
if (task == PromiseCallback::Resolve) {
|
2014-10-19 19:27:12 -07:00
|
|
|
if (!promise->CaptureStack(aCx, promise->mFullfillmentStack)) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-08 18:23:55 -07:00
|
|
|
promise->MaybeResolveInternal(aCx, args.get(0));
|
2013-09-11 09:03:04 -07:00
|
|
|
} else {
|
2013-11-19 10:39:51 -08:00
|
|
|
promise->MaybeRejectInternal(aCx, args.get(0));
|
2014-10-19 19:27:12 -07:00
|
|
|
if (!promise->CaptureStack(aCx, promise->mRejectionStack)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
2015-01-12 19:35:33 -08:00
|
|
|
args.rval().setUndefined();
|
2013-09-11 09:03:04 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-23 10:47:29 -08:00
|
|
|
/*
|
|
|
|
* Common bits of (JSCallbackThenableResolver/JSCallbackThenableRejecter).
|
|
|
|
* Resolves/rejects the Promise if it is ok to do so, based on whether either of
|
|
|
|
* the callbacks have been called before or not.
|
|
|
|
*/
|
|
|
|
/* static */ bool
|
|
|
|
Promise::ThenableResolverCommon(JSContext* aCx, uint32_t aTask,
|
|
|
|
unsigned aArgc, JS::Value* aVp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = CallArgsFromVp(aArgc, aVp);
|
|
|
|
JS::Rooted<JSObject*> thisFunc(aCx, &args.callee());
|
|
|
|
if (!MarkAsCalledIfNotCalledBefore(aCx, thisFunc)) {
|
|
|
|
// A function from this pair has been called before.
|
2015-01-12 19:35:33 -08:00
|
|
|
args.rval().setUndefined();
|
2014-01-23 10:47:29 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Promise* promise = GetPromise(aCx, thisFunc);
|
|
|
|
MOZ_ASSERT(promise);
|
|
|
|
|
|
|
|
if (aTask == PromiseCallback::Resolve) {
|
2014-05-20 14:55:36 -07:00
|
|
|
promise->ResolveInternal(aCx, args.get(0));
|
2014-01-23 10:47:29 -08:00
|
|
|
} else {
|
2014-05-20 14:55:36 -07:00
|
|
|
promise->RejectInternal(aCx, args.get(0));
|
2014-01-23 10:47:29 -08:00
|
|
|
}
|
2015-01-12 19:35:33 -08:00
|
|
|
|
|
|
|
args.rval().setUndefined();
|
2014-01-23 10:47:29 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
Promise::JSCallbackThenableResolver(JSContext* aCx,
|
|
|
|
unsigned aArgc, JS::Value* aVp)
|
|
|
|
{
|
|
|
|
return ThenableResolverCommon(aCx, PromiseCallback::Resolve, aArgc, aVp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
Promise::JSCallbackThenableRejecter(JSContext* aCx,
|
|
|
|
unsigned aArgc, JS::Value* aVp)
|
|
|
|
{
|
|
|
|
return ThenableResolverCommon(aCx, PromiseCallback::Reject, aArgc, aVp);
|
|
|
|
}
|
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
/* static */ JSObject*
|
2015-03-09 09:50:07 -07:00
|
|
|
Promise::CreateFunction(JSContext* aCx, Promise* aPromise, int32_t aTask)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
JSFunction* func = js::NewFunctionWithReserved(aCx, JSCallback,
|
|
|
|
1 /* nargs */, 0 /* flags */,
|
2015-03-09 09:50:07 -07:00
|
|
|
nullptr);
|
2013-09-11 09:03:04 -07:00
|
|
|
if (!func) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> obj(aCx, JS_GetFunctionObject(func));
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> promiseObj(aCx);
|
2014-11-26 11:25:20 -08:00
|
|
|
if (!dom::GetOrCreateDOMReflector(aCx, aPromise, &promiseObj)) {
|
2013-09-11 09:03:04 -07:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-09 13:48:10 -07:00
|
|
|
JS::ExposeValueToActiveJS(promiseObj);
|
2013-09-11 09:03:04 -07:00
|
|
|
js::SetFunctionNativeReserved(obj, SLOT_PROMISE, promiseObj);
|
2014-01-23 10:47:29 -08:00
|
|
|
js::SetFunctionNativeReserved(obj, SLOT_DATA, JS::Int32Value(aTask));
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ JSObject*
|
|
|
|
Promise::CreateThenableFunction(JSContext* aCx, Promise* aPromise, uint32_t aTask)
|
|
|
|
{
|
|
|
|
JSNative whichFunc =
|
|
|
|
aTask == PromiseCallback::Resolve ? JSCallbackThenableResolver :
|
|
|
|
JSCallbackThenableRejecter ;
|
|
|
|
|
|
|
|
JSFunction* func = js::NewFunctionWithReserved(aCx, whichFunc,
|
|
|
|
1 /* nargs */, 0 /* flags */,
|
2015-03-09 09:50:07 -07:00
|
|
|
nullptr);
|
2014-01-23 10:47:29 -08:00
|
|
|
if (!func) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> obj(aCx, JS_GetFunctionObject(func));
|
|
|
|
|
|
|
|
JS::Rooted<JS::Value> promiseObj(aCx);
|
2014-11-26 11:25:20 -08:00
|
|
|
if (!dom::GetOrCreateDOMReflector(aCx, aPromise, &promiseObj)) {
|
2014-01-23 10:47:29 -08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-09 13:48:10 -07:00
|
|
|
JS::ExposeValueToActiveJS(promiseObj);
|
2014-01-23 10:47:29 -08:00
|
|
|
js::SetFunctionNativeReserved(obj, SLOT_PROMISE, promiseObj);
|
2013-09-11 09:03:04 -07:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
/* static */ already_AddRefed<Promise>
|
2015-07-31 10:30:55 -07:00
|
|
|
Promise::Constructor(const GlobalObject& aGlobal, PromiseInit& aInit,
|
|
|
|
ErrorResult& aRv, JS::Handle<JSObject*> aDesiredProto)
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2014-02-25 13:34:55 -08:00
|
|
|
nsCOMPtr<nsIGlobalObject> global;
|
|
|
|
global = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!global) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(global, aRv, aDesiredProto);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-06-11 18:41:21 -07:00
|
|
|
|
2014-09-11 19:18:49 -07:00
|
|
|
promise->CallInitFunction(aGlobal, aInit, aRv);
|
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Promise::CallInitFunction(const GlobalObject& aGlobal,
|
|
|
|
PromiseInit& aInit, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
JSContext* cx = aGlobal.Context();
|
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
JS::Rooted<JSObject*> resolveFunc(cx,
|
2015-03-09 09:50:07 -07:00
|
|
|
CreateFunction(cx, this,
|
2013-09-11 09:03:04 -07:00
|
|
|
PromiseCallback::Resolve));
|
|
|
|
if (!resolveFunc) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
2014-09-11 19:18:49 -07:00
|
|
|
return;
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> rejectFunc(cx,
|
2015-03-09 09:50:07 -07:00
|
|
|
CreateFunction(cx, this,
|
2013-09-11 09:03:04 -07:00
|
|
|
PromiseCallback::Reject));
|
|
|
|
if (!rejectFunc) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
2014-09-11 19:18:49 -07:00
|
|
|
return;
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
2015-04-08 18:23:48 -07:00
|
|
|
aInit.Call(resolveFunc, rejectFunc, aRv, "promise initializer",
|
|
|
|
CallbackObject::eRethrowExceptions, Compartment());
|
2013-06-11 18:41:21 -07:00
|
|
|
aRv.WouldReportJSException();
|
|
|
|
|
2015-11-20 13:29:41 -08:00
|
|
|
if (aRv.Failed()) {
|
2015-11-25 12:48:08 -08:00
|
|
|
// There are two possibilities here. Either we've got a rethrown exception,
|
|
|
|
// or we reported that already and synthesized a generic NS_ERROR_FAILURE on
|
|
|
|
// the ErrorResult. In the former case, it doesn't much matter how we get
|
|
|
|
// the exception JS::Value from the ErrorResult to us, since we'll just end
|
|
|
|
// up wrapping it into the right compartment as needed if we hand it to
|
|
|
|
// someone. But in the latter case we have to ensure that the new exception
|
|
|
|
// object we create is created in our reflector compartment, not in our
|
|
|
|
// current compartment, because in the case when we're a Promise constructor
|
|
|
|
// called over Xrays creating it in the current compartment would mean
|
|
|
|
// rejecting with a value that can't be accessed by code that can call
|
|
|
|
// then() on this Promise.
|
2015-11-20 13:29:41 -08:00
|
|
|
//
|
2015-11-25 12:48:08 -08:00
|
|
|
// Luckily, MaybeReject(aRv) does exactly what we want here: it enters our
|
|
|
|
// reflector compartment before trying to produce a JS::Value from the
|
|
|
|
// ErrorResult.
|
|
|
|
MaybeReject(aRv);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
/* static */ already_AddRefed<Promise>
|
2015-11-25 12:48:08 -08:00
|
|
|
Promise::Resolve(const GlobalObject& aGlobal, JS::Handle<JS::Value> aThisv,
|
2014-02-19 07:13:38 -08:00
|
|
|
JS::Handle<JS::Value> aValue, ErrorResult& aRv)
|
2013-06-11 18:41:22 -07:00
|
|
|
{
|
2014-02-10 09:27:02 -08:00
|
|
|
// If a Promise was passed, just return it.
|
2014-02-19 07:13:38 -08:00
|
|
|
if (aValue.isObject()) {
|
2014-06-16 09:52:00 -07:00
|
|
|
JS::Rooted<JSObject*> valueObj(aGlobal.Context(), &aValue.toObject());
|
2014-02-10 09:27:02 -08:00
|
|
|
Promise* nextPromise;
|
|
|
|
nsresult rv = UNWRAP_OBJECT(Promise, valueObj, nextPromise);
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> addRefed = nextPromise;
|
2014-02-10 09:27:02 -08:00
|
|
|
return addRefed.forget();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 13:34:55 -08:00
|
|
|
nsCOMPtr<nsIGlobalObject> global =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!global) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> p = Resolve(global, aGlobal.Context(), aValue, aRv);
|
2014-10-19 19:27:12 -07:00
|
|
|
if (p) {
|
|
|
|
p->mFullfillmentStack = p->mAllocationStack;
|
|
|
|
}
|
|
|
|
return p.forget();
|
2014-01-13 14:36:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Promise>
|
2014-02-25 13:34:55 -08:00
|
|
|
Promise::Resolve(nsIGlobalObject* aGlobal, JSContext* aCx,
|
2014-02-10 09:27:02 -08:00
|
|
|
JS::Handle<JS::Value> aValue, ErrorResult& aRv)
|
2014-01-13 14:36:03 -08:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(aGlobal, aRv);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-06-11 18:41:22 -07:00
|
|
|
|
2014-01-13 14:36:03 -08:00
|
|
|
promise->MaybeResolveInternal(aCx, aValue);
|
2013-07-11 13:40:36 -07:00
|
|
|
return promise.forget();
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
/* static */ already_AddRefed<Promise>
|
2015-11-25 12:48:08 -08:00
|
|
|
Promise::Reject(const GlobalObject& aGlobal, JS::Handle<JS::Value> aThisv,
|
2014-02-19 07:13:38 -08:00
|
|
|
JS::Handle<JS::Value> aValue, ErrorResult& aRv)
|
2013-06-11 18:41:22 -07:00
|
|
|
{
|
2014-02-25 13:34:55 -08:00
|
|
|
nsCOMPtr<nsIGlobalObject> global =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!global) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> p = Reject(global, aGlobal.Context(), aValue, aRv);
|
2014-10-19 19:27:12 -07:00
|
|
|
if (p) {
|
|
|
|
p->mRejectionStack = p->mAllocationStack;
|
|
|
|
}
|
|
|
|
return p.forget();
|
2014-01-13 14:36:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Promise>
|
2014-02-25 13:34:55 -08:00
|
|
|
Promise::Reject(nsIGlobalObject* aGlobal, JSContext* aCx,
|
2014-01-13 14:36:03 -08:00
|
|
|
JS::Handle<JS::Value> aValue, ErrorResult& aRv)
|
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(aGlobal, aRv);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-06-11 18:41:22 -07:00
|
|
|
|
2014-01-13 14:36:03 -08:00
|
|
|
promise->MaybeRejectInternal(aCx, aValue);
|
2013-07-11 13:40:36 -07:00
|
|
|
return promise.forget();
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
already_AddRefed<Promise>
|
2014-04-09 01:30:24 -07:00
|
|
|
Promise::Then(JSContext* aCx, AnyCallback* aResolveCallback,
|
2014-07-18 18:31:11 -07:00
|
|
|
AnyCallback* aRejectCallback, ErrorResult& aRv)
|
2013-06-11 18:41:22 -07:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(GetParentObject(), aRv);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-06-11 18:41:22 -07:00
|
|
|
|
2014-04-09 01:30:24 -07:00
|
|
|
JS::Rooted<JSObject*> global(aCx, JS::CurrentGlobalOrNull(aCx));
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> resolveCb =
|
2014-04-09 01:30:24 -07:00
|
|
|
PromiseCallback::Factory(promise, global, aResolveCallback,
|
|
|
|
PromiseCallback::Resolve);
|
2013-06-11 18:41:22 -07:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> rejectCb =
|
2014-04-09 01:30:24 -07:00
|
|
|
PromiseCallback::Factory(promise, global, aRejectCallback,
|
|
|
|
PromiseCallback::Reject);
|
2013-06-11 18:41:22 -07:00
|
|
|
|
|
|
|
AppendCallbacks(resolveCb, rejectCb);
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
return promise.forget();
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
|
|
|
|
2013-07-11 13:40:36 -07:00
|
|
|
already_AddRefed<Promise>
|
2014-07-18 18:31:11 -07:00
|
|
|
Promise::Catch(JSContext* aCx, AnyCallback* aRejectCallback, ErrorResult& aRv)
|
2013-06-11 18:41:22 -07:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<AnyCallback> resolveCb;
|
2014-07-18 18:31:11 -07:00
|
|
|
return Then(aCx, resolveCb, aRejectCallback, aRv);
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
|
2013-11-19 13:53:00 -08:00
|
|
|
/**
|
|
|
|
* The CountdownHolder class encapsulates Promise.all countdown functions and
|
|
|
|
* the countdown holder parts of the Promises spec. It maintains the result
|
2015-08-06 08:18:30 -07:00
|
|
|
* array and AllResolveElementFunctions use SetValue() to set the array indices.
|
2013-11-19 13:53:00 -08:00
|
|
|
*/
|
2015-03-21 09:28:04 -07:00
|
|
|
class CountdownHolder final : public nsISupports
|
2013-11-19 13:53:00 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(CountdownHolder)
|
|
|
|
|
2014-04-09 01:30:24 -07:00
|
|
|
CountdownHolder(const GlobalObject& aGlobal, Promise* aPromise,
|
|
|
|
uint32_t aCountdown)
|
2013-11-19 13:53:00 -08:00
|
|
|
: mPromise(aPromise), mCountdown(aCountdown)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aCountdown != 0);
|
2014-06-16 11:08:00 -07:00
|
|
|
JSContext* cx = aGlobal.Context();
|
2014-04-09 01:30:24 -07:00
|
|
|
|
2014-06-16 11:08:00 -07:00
|
|
|
// The only time aGlobal.Context() and aGlobal.Get() are not
|
2014-04-09 01:30:24 -07:00
|
|
|
// same-compartment is when we're called via Xrays, and in that situation we
|
|
|
|
// in fact want to create the array in the callee compartment
|
|
|
|
|
2013-11-19 13:53:00 -08:00
|
|
|
JSAutoCompartment ac(cx, aGlobal.Get());
|
2014-02-12 02:50:46 -08:00
|
|
|
mValues = JS_NewArrayObject(cx, aCountdown);
|
2013-11-19 13:53:00 -08:00
|
|
|
mozilla::HoldJSObjects(this);
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:56:07 -07:00
|
|
|
private:
|
2013-11-19 13:53:00 -08:00
|
|
|
~CountdownHolder()
|
|
|
|
{
|
|
|
|
mozilla::DropJSObjects(this);
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:56:07 -07:00
|
|
|
public:
|
2013-11-19 13:53:00 -08:00
|
|
|
void SetValue(uint32_t index, const JS::Handle<JS::Value> aValue)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mCountdown > 0);
|
|
|
|
|
2014-03-04 10:05:08 -08:00
|
|
|
ThreadsafeAutoSafeJSContext cx;
|
2013-11-19 13:53:00 -08:00
|
|
|
JSAutoCompartment ac(cx, mValues);
|
2014-04-09 01:08:39 -07:00
|
|
|
{
|
2014-04-09 01:30:24 -07:00
|
|
|
|
2013-11-19 13:53:00 -08:00
|
|
|
AutoDontReportUncaught silenceReporting(cx);
|
2014-04-09 01:30:24 -07:00
|
|
|
JS::Rooted<JS::Value> value(cx, aValue);
|
2014-04-30 02:10:33 -07:00
|
|
|
JS::Rooted<JSObject*> values(cx, mValues);
|
2014-04-09 01:30:24 -07:00
|
|
|
if (!JS_WrapValue(cx, &value) ||
|
2014-04-30 02:10:33 -07:00
|
|
|
!JS_DefineElement(cx, values, index, value, JSPROP_ENUMERATE)) {
|
2013-11-19 13:53:00 -08:00
|
|
|
MOZ_ASSERT(JS_IsExceptionPending(cx));
|
|
|
|
JS::Rooted<JS::Value> exn(cx);
|
|
|
|
JS_GetPendingException(cx, &exn);
|
|
|
|
|
|
|
|
mPromise->MaybeReject(cx, exn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--mCountdown;
|
|
|
|
if (mCountdown == 0) {
|
|
|
|
JS::Rooted<JS::Value> result(cx, JS::ObjectValue(*mValues));
|
|
|
|
mPromise->MaybeResolve(cx, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> mPromise;
|
2013-11-19 13:53:00 -08:00
|
|
|
uint32_t mCountdown;
|
|
|
|
JS::Heap<JSObject*> mValues;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(CountdownHolder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(CountdownHolder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CountdownHolder)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(CountdownHolder)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(CountdownHolder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mValues)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(CountdownHolder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPromise)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(CountdownHolder)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPromise)
|
|
|
|
tmp->mValues = nullptr;
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
/**
|
2015-08-06 08:18:30 -07:00
|
|
|
* An AllResolveElementFunction is the per-promise
|
|
|
|
* part of the Promise.all() algorithm.
|
2013-11-19 13:53:00 -08:00
|
|
|
* Every Promise in the handler is handed an instance of this as a resolution
|
|
|
|
* handler and it sets the relevant index in the CountdownHolder.
|
|
|
|
*/
|
2015-08-06 08:18:30 -07:00
|
|
|
class AllResolveElementFunction final : public PromiseNativeHandler
|
2013-11-19 13:53:00 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(AllResolveElementFunction)
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2015-08-06 08:18:30 -07:00
|
|
|
AllResolveElementFunction(CountdownHolder* aHolder, uint32_t aIndex)
|
2013-11-19 13:53:00 -08:00
|
|
|
: mCountdownHolder(aHolder), mIndex(aIndex)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aHolder);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-21 09:28:04 -07:00
|
|
|
ResolvedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) override
|
2013-11-19 13:53:00 -08:00
|
|
|
{
|
|
|
|
mCountdownHolder->SetValue(mIndex, aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-21 09:28:04 -07:00
|
|
|
RejectedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) override
|
2013-11-19 13:53:00 -08:00
|
|
|
{
|
|
|
|
// Should never be attached to Promise as a reject handler.
|
2015-08-06 08:18:30 -07:00
|
|
|
MOZ_CRASH("AllResolveElementFunction should never be attached to a Promise's reject handler!");
|
2013-11-19 13:53:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-08-06 08:18:30 -07:00
|
|
|
~AllResolveElementFunction()
|
2014-06-23 12:56:07 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<CountdownHolder> mCountdownHolder;
|
2013-11-19 13:53:00 -08:00
|
|
|
uint32_t mIndex;
|
|
|
|
};
|
|
|
|
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(AllResolveElementFunction)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(AllResolveElementFunction)
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(AllResolveElementFunction)
|
2015-07-08 23:56:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2015-08-06 08:18:30 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION(AllResolveElementFunction, mCountdownHolder)
|
2013-11-19 13:53:00 -08:00
|
|
|
|
|
|
|
/* static */ already_AddRefed<Promise>
|
2015-11-25 12:48:08 -08:00
|
|
|
Promise::All(const GlobalObject& aGlobal, JS::Handle<JS::Value> aThisv,
|
2013-11-19 13:53:00 -08:00
|
|
|
const Sequence<JS::Value>& aIterable, ErrorResult& aRv)
|
2015-04-29 08:59:43 -07:00
|
|
|
{
|
|
|
|
JSContext* cx = aGlobal.Context();
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
nsTArray<RefPtr<Promise>> promiseList;
|
2015-04-29 08:59:43 -07:00
|
|
|
|
|
|
|
for (uint32_t i = 0; i < aIterable.Length(); ++i) {
|
|
|
|
JS::Rooted<JS::Value> value(cx, aIterable.ElementAt(i));
|
2015-11-25 12:48:08 -08:00
|
|
|
RefPtr<Promise> nextPromise = Promise::Resolve(aGlobal, aThisv, value, aRv);
|
2015-04-29 08:59:43 -07:00
|
|
|
|
|
|
|
MOZ_ASSERT(!aRv.Failed());
|
|
|
|
|
|
|
|
promiseList.AppendElement(Move(nextPromise));
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise::All(aGlobal, promiseList, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Promise>
|
|
|
|
Promise::All(const GlobalObject& aGlobal,
|
2015-10-17 22:24:48 -07:00
|
|
|
const nsTArray<RefPtr<Promise>>& aPromiseList, ErrorResult& aRv)
|
2013-11-19 13:53:00 -08:00
|
|
|
{
|
2014-02-25 13:34:55 -08:00
|
|
|
nsCOMPtr<nsIGlobalObject> global =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!global) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
2013-11-19 13:53:00 -08:00
|
|
|
}
|
|
|
|
|
2014-06-16 09:52:00 -07:00
|
|
|
JSContext* cx = aGlobal.Context();
|
|
|
|
|
2015-04-29 08:59:43 -07:00
|
|
|
if (aPromiseList.IsEmpty()) {
|
2014-06-16 09:52:00 -07:00
|
|
|
JS::Rooted<JSObject*> empty(cx, JS_NewArrayObject(cx, 0));
|
2013-11-19 13:53:00 -08:00
|
|
|
if (!empty) {
|
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-06-16 09:52:00 -07:00
|
|
|
JS::Rooted<JS::Value> value(cx, JS::ObjectValue(*empty));
|
2014-10-19 19:27:12 -07:00
|
|
|
// We know "value" is not a promise, so call the Resolve function
|
|
|
|
// that doesn't have to check for that.
|
|
|
|
return Promise::Resolve(global, cx, value, aRv);
|
2013-11-19 13:53:00 -08:00
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(global, aRv);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<CountdownHolder> holder =
|
2015-04-29 08:59:43 -07:00
|
|
|
new CountdownHolder(aGlobal, promise, aPromiseList.Length());
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2014-06-16 09:52:00 -07:00
|
|
|
JS::Rooted<JSObject*> obj(cx, JS::CurrentGlobalOrNull(cx));
|
2014-04-09 01:30:24 -07:00
|
|
|
if (!obj) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> rejectCb = new RejectPromiseCallback(promise, obj);
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2015-04-29 08:59:43 -07:00
|
|
|
for (uint32_t i = 0; i < aPromiseList.Length(); ++i) {
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseNativeHandler> resolveHandler =
|
2015-08-06 08:18:30 -07:00
|
|
|
new AllResolveElementFunction(holder, i);
|
2013-11-19 13:53:00 -08:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> resolveCb =
|
2013-11-19 13:53:00 -08:00
|
|
|
new NativePromiseCallback(resolveHandler, Resolved);
|
2015-04-29 08:59:43 -07:00
|
|
|
|
2013-11-19 13:53:00 -08:00
|
|
|
// Every promise gets its own resolve callback, which will set the right
|
|
|
|
// index in the array to the resolution value.
|
2015-04-29 08:59:43 -07:00
|
|
|
aPromiseList[i]->AppendCallbacks(resolveCb, rejectCb);
|
2013-11-19 13:53:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return promise.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Promise>
|
2015-11-25 12:48:08 -08:00
|
|
|
Promise::Race(const GlobalObject& aGlobal, JS::Handle<JS::Value> aThisv,
|
2013-11-19 13:53:00 -08:00
|
|
|
const Sequence<JS::Value>& aIterable, ErrorResult& aRv)
|
|
|
|
{
|
2014-02-25 13:34:55 -08:00
|
|
|
nsCOMPtr<nsIGlobalObject> global =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!global) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
2013-11-19 13:53:00 -08:00
|
|
|
}
|
|
|
|
|
2014-06-16 09:52:00 -07:00
|
|
|
JSContext* cx = aGlobal.Context();
|
|
|
|
|
|
|
|
JS::Rooted<JSObject*> obj(cx, JS::CurrentGlobalOrNull(cx));
|
2014-04-09 01:30:24 -07:00
|
|
|
if (!obj) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> promise = Create(global, aRv);
|
2014-07-18 18:31:11 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-04-09 01:30:24 -07:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> resolveCb =
|
2014-04-09 01:30:24 -07:00
|
|
|
new ResolvePromiseCallback(promise, obj);
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> rejectCb = new RejectPromiseCallback(promise, obj);
|
2013-11-19 13:53:00 -08:00
|
|
|
|
|
|
|
for (uint32_t i = 0; i < aIterable.Length(); ++i) {
|
2014-06-16 09:52:00 -07:00
|
|
|
JS::Rooted<JS::Value> value(cx, aIterable.ElementAt(i));
|
2015-11-25 12:48:08 -08:00
|
|
|
RefPtr<Promise> nextPromise = Promise::Resolve(aGlobal, aThisv, value, aRv);
|
2014-02-10 09:27:02 -08:00
|
|
|
// According to spec, Resolve can throw, but our implementation never does.
|
|
|
|
// Well it does when window isn't passed on the main thread, but that is an
|
|
|
|
// implementation detail which should never be reached since we are checking
|
|
|
|
// for window above. Remove this when subclassing is supported.
|
2013-11-19 13:53:00 -08:00
|
|
|
MOZ_ASSERT(!aRv.Failed());
|
|
|
|
nextPromise->AppendCallbacks(resolveCb, rejectCb);
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise.forget();
|
|
|
|
}
|
|
|
|
|
2015-11-25 12:48:08 -08:00
|
|
|
/* static */
|
|
|
|
bool
|
|
|
|
Promise::PromiseSpecies(JSContext* aCx, unsigned aArgc, JS::Value* aVp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = CallArgsFromVp(aArgc, aVp);
|
|
|
|
args.rval().set(args.thisv());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-19 10:43:51 -08:00
|
|
|
void
|
|
|
|
Promise::AppendNativeHandler(PromiseNativeHandler* aRunnable)
|
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> resolveCb =
|
2013-11-19 13:53:00 -08:00
|
|
|
new NativePromiseCallback(aRunnable, Resolved);
|
2013-11-19 10:43:51 -08:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> rejectCb =
|
2013-11-19 13:53:00 -08:00
|
|
|
new NativePromiseCallback(aRunnable, Rejected);
|
2013-11-19 10:43:51 -08:00
|
|
|
|
|
|
|
AppendCallbacks(resolveCb, rejectCb);
|
|
|
|
}
|
|
|
|
|
2015-01-15 14:39:02 -08:00
|
|
|
JSObject*
|
|
|
|
Promise::GlobalJSObject() const
|
|
|
|
{
|
|
|
|
return mGlobal->GetGlobalJSObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
JSCompartment*
|
|
|
|
Promise::Compartment() const
|
|
|
|
{
|
|
|
|
return js::GetObjectCompartment(GlobalJSObject());
|
|
|
|
}
|
|
|
|
|
2013-06-11 18:41:21 -07:00
|
|
|
void
|
2013-07-11 13:40:36 -07:00
|
|
|
Promise::AppendCallbacks(PromiseCallback* aResolveCallback,
|
|
|
|
PromiseCallback* aRejectCallback)
|
2013-06-11 18:41:21 -07:00
|
|
|
{
|
2015-04-27 12:00:41 -07:00
|
|
|
if (mGlobal->IsDying()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
MOZ_ASSERT(aResolveCallback);
|
|
|
|
MOZ_ASSERT(aRejectCallback);
|
|
|
|
|
|
|
|
if (mIsLastInChain && mState == PromiseState::Rejected) {
|
|
|
|
// This rejection is now consumed.
|
|
|
|
PromiseDebugging::AddConsumedRejection(*this);
|
|
|
|
// Note that we may not have had the opportunity to call
|
|
|
|
// RunResolveTask() yet, so we may never have called
|
|
|
|
// `PromiseDebugging:AddUncaughtRejection`.
|
2013-06-11 18:41:22 -07:00
|
|
|
}
|
2015-04-10 08:27:57 -07:00
|
|
|
mIsLastInChain = false;
|
2013-06-11 18:41:22 -07:00
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
|
|
|
// Now that there is a callback, we don't need to report anymore.
|
|
|
|
mHadRejectCallback = true;
|
|
|
|
RemoveFeature();
|
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
mResolveCallbacks.AppendElement(aResolveCallback);
|
|
|
|
mRejectCallbacks.AppendElement(aRejectCallback);
|
2013-06-11 18:41:21 -07:00
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
// If promise's state is fulfilled, queue a task to process our fulfill
|
2013-09-11 09:03:04 -07:00
|
|
|
// callbacks with promise's result. If promise's state is rejected, queue a
|
|
|
|
// task to process our reject callbacks with promise's result.
|
2014-10-28 05:08:19 -07:00
|
|
|
if (mState != Pending) {
|
2015-08-06 08:18:30 -07:00
|
|
|
TriggerPromiseReactions();
|
2013-06-11 18:41:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class WrappedWorkerRunnable final : public WorkerSameThreadRunnable
|
2014-08-19 03:39:56 -07:00
|
|
|
{
|
|
|
|
public:
|
2015-04-10 08:27:57 -07:00
|
|
|
WrappedWorkerRunnable(workers::WorkerPrivate* aWorkerPrivate, nsIRunnable* aRunnable)
|
2014-08-19 03:39:56 -07:00
|
|
|
: WorkerSameThreadRunnable(aWorkerPrivate)
|
|
|
|
, mRunnable(aRunnable)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aRunnable);
|
|
|
|
MOZ_COUNT_CTOR(WrappedWorkerRunnable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-04-10 08:27:57 -07:00
|
|
|
WorkerRun(JSContext* aCx, workers::WorkerPrivate* aWorkerPrivate) override
|
2014-08-19 03:39:56 -07:00
|
|
|
{
|
|
|
|
NS_ASSERT_OWNINGTHREAD(WrappedWorkerRunnable);
|
|
|
|
mRunnable->Run();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual
|
|
|
|
~WrappedWorkerRunnable()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(WrappedWorkerRunnable);
|
|
|
|
NS_ASSERT_OWNINGTHREAD(WrappedWorkerRunnable);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIRunnable> mRunnable;
|
|
|
|
NS_DECL_OWNINGTHREAD
|
|
|
|
};
|
|
|
|
|
|
|
|
/* static */ void
|
2014-10-28 05:08:19 -07:00
|
|
|
Promise::DispatchToMicroTask(nsIRunnable* aRunnable)
|
2014-08-19 03:39:56 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aRunnable);
|
2014-10-28 05:08:19 -07:00
|
|
|
|
|
|
|
CycleCollectedJSRuntime* runtime = CycleCollectedJSRuntime::Get();
|
2015-05-01 19:33:01 -07:00
|
|
|
std::queue<nsCOMPtr<nsIRunnable>>& microtaskQueue =
|
2014-10-28 05:08:19 -07:00
|
|
|
runtime->GetPromiseMicroTaskQueue();
|
|
|
|
|
2015-05-01 19:33:01 -07:00
|
|
|
microtaskQueue.push(aRunnable);
|
2014-08-19 03:39:56 -07:00
|
|
|
}
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2013-08-28 21:30:06 -07:00
|
|
|
void
|
|
|
|
Promise::MaybeReportRejected()
|
|
|
|
{
|
|
|
|
if (mState != Rejected || mHadRejectCallback || mResult.isUndefined()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-03 22:24:59 -07:00
|
|
|
AutoJSAPI jsapi;
|
|
|
|
// We may not have a usable global by now (if it got unlinked
|
|
|
|
// already), so don't init with it.
|
|
|
|
jsapi.Init();
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
JS::Rooted<JSObject*> obj(cx, GetWrapper());
|
|
|
|
MOZ_ASSERT(obj); // We preserve our wrapper, so should always have one here.
|
|
|
|
JS::Rooted<JS::Value> val(cx, mResult);
|
|
|
|
JS::ExposeValueToActiveJS(val);
|
|
|
|
|
|
|
|
JSAutoCompartment ac(cx, obj);
|
|
|
|
if (!JS_WrapValue(cx, &val)) {
|
|
|
|
JS_ClearPendingException(cx);
|
2014-01-30 09:30:29 -08:00
|
|
|
return;
|
|
|
|
}
|
2014-07-03 22:24:59 -07:00
|
|
|
|
|
|
|
js::ErrorReport report(cx);
|
|
|
|
if (!report.init(cx, val)) {
|
|
|
|
JS_ClearPendingException(cx);
|
2013-08-28 21:30:06 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<xpc::ErrorReport> xpcReport = new xpc::ErrorReport();
|
2014-09-29 06:34:20 -07:00
|
|
|
bool isMainThread = MOZ_LIKELY(NS_IsMainThread());
|
|
|
|
bool isChrome = isMainThread ? nsContentUtils::IsSystemPrincipal(nsContentUtils::ObjectPrincipal(obj))
|
|
|
|
: GetCurrentThreadWorkerPrivate()->IsChromeWorker();
|
|
|
|
nsPIDOMWindow* win = isMainThread ? xpc::WindowGlobalOrNull(obj) : nullptr;
|
|
|
|
xpcReport->Init(report.report(), report.message(), isChrome, win ? win->WindowID() : 0);
|
2013-08-28 21:30:06 -07:00
|
|
|
|
|
|
|
// Now post an event to do the real reporting async
|
2015-10-17 22:24:48 -07:00
|
|
|
// Since Promises preserve their wrapper, it is essential to RefPtr<> the
|
2014-01-10 14:07:46 -08:00
|
|
|
// AsyncErrorReporter, otherwise if the call to DispatchToMainThread fails, it
|
2015-07-09 20:21:46 -07:00
|
|
|
// will leak. See Bug 958684. So... don't use DispatchToMainThread()
|
|
|
|
nsCOMPtr<nsIThread> mainThread = do_GetMainThread();
|
|
|
|
if (NS_WARN_IF(!mainThread)) {
|
|
|
|
// Would prefer NS_ASSERTION, but that causes failure in xpcshell tests
|
|
|
|
NS_WARNING("!!! Trying to report rejected Promise after MainThread shutdown");
|
|
|
|
}
|
|
|
|
if (mainThread) {
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<AsyncErrorReporter> r = new AsyncErrorReporter(xpcReport);
|
2015-07-09 20:21:46 -07:00
|
|
|
mainThread->Dispatch(r.forget(), NS_DISPATCH_NORMAL);
|
2015-07-09 20:21:46 -07:00
|
|
|
}
|
2013-08-28 21:30:06 -07:00
|
|
|
}
|
2015-04-10 08:27:57 -07:00
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2013-08-28 21:30:06 -07:00
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
void
|
2013-09-26 11:09:16 -07:00
|
|
|
Promise::MaybeResolveInternal(JSContext* aCx,
|
2014-10-28 05:08:19 -07:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
if (mResolvePending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
ResolveInternal(aCx, aValue);
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-26 11:09:16 -07:00
|
|
|
Promise::MaybeRejectInternal(JSContext* aCx,
|
2014-10-28 05:08:19 -07:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
if (mResolvePending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
RejectInternal(aCx, aValue);
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
2014-01-23 10:47:29 -08:00
|
|
|
void
|
|
|
|
Promise::HandleException(JSContext* aCx)
|
|
|
|
{
|
|
|
|
JS::Rooted<JS::Value> exn(aCx);
|
|
|
|
if (JS_GetPendingException(aCx, &exn)) {
|
|
|
|
JS_ClearPendingException(aCx);
|
2014-10-28 05:08:19 -07:00
|
|
|
RejectInternal(aCx, exn);
|
2014-01-23 10:47:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
void
|
|
|
|
Promise::ResolveInternal(JSContext* aCx,
|
2014-10-28 05:08:19 -07:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
mResolvePending = true;
|
|
|
|
|
2013-11-19 10:39:51 -08:00
|
|
|
if (aValue.isObject()) {
|
2013-11-19 13:53:00 -08:00
|
|
|
AutoDontReportUncaught silenceReporting(aCx);
|
2013-11-19 10:39:51 -08:00
|
|
|
JS::Rooted<JSObject*> valueObj(aCx, &aValue.toObject());
|
2013-09-11 09:03:04 -07:00
|
|
|
|
2014-01-23 10:47:29 -08:00
|
|
|
// Thenables.
|
|
|
|
JS::Rooted<JS::Value> then(aCx);
|
|
|
|
if (!JS_GetProperty(aCx, valueObj, "then", &then)) {
|
|
|
|
HandleException(aCx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-25 04:13:28 -07:00
|
|
|
if (then.isObject() && JS::IsCallable(&then.toObject())) {
|
2014-05-20 14:21:13 -07:00
|
|
|
// This is the then() function of the thenable aValueObj.
|
2014-01-23 10:47:29 -08:00
|
|
|
JS::Rooted<JSObject*> thenObj(aCx, &then.toObject());
|
2015-04-17 19:01:02 -07:00
|
|
|
|
|
|
|
// Add a fast path for the case when we're resolved with an actual
|
|
|
|
// Promise. This has two requirements:
|
|
|
|
//
|
|
|
|
// 1) valueObj is a Promise.
|
|
|
|
// 2) thenObj is a JSFunction backed by our actual Promise::Then
|
|
|
|
// implementation.
|
|
|
|
//
|
|
|
|
// If those requirements are satisfied, then we know exactly what
|
|
|
|
// thenObj.call(valueObj) will do, so we can optimize a bit and avoid ever
|
|
|
|
// entering JS for this stuff.
|
|
|
|
Promise* nextPromise;
|
|
|
|
if (PromiseBinding::IsThenMethod(thenObj) &&
|
|
|
|
NS_SUCCEEDED(UNWRAP_OBJECT(Promise, valueObj, nextPromise))) {
|
2015-08-03 09:48:34 -07:00
|
|
|
// If we were taking the codepath that involves PromiseResolveThenableJob and
|
|
|
|
// PromiseInit below, then eventually, in PromiseResolveThenableJob::Run, we
|
2015-04-17 19:01:02 -07:00
|
|
|
// would create some JSFunctions in the compartment of
|
|
|
|
// this->GetWrapper() and pass them to the PromiseInit. So by the time
|
|
|
|
// we'd see the resolution value it would be wrapped into the
|
|
|
|
// compartment of this->GetWrapper(). The global of that compartment is
|
|
|
|
// this->GetGlobalJSObject(), so use that as the global for
|
|
|
|
// ResolvePromiseCallback/RejectPromiseCallback.
|
|
|
|
JS::Rooted<JSObject*> glob(aCx, GlobalJSObject());
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseCallback> resolveCb = new ResolvePromiseCallback(this, glob);
|
|
|
|
RefPtr<PromiseCallback> rejectCb = new RejectPromiseCallback(this, glob);
|
|
|
|
RefPtr<FastPromiseResolveThenableJob> task =
|
2015-08-03 09:48:34 -07:00
|
|
|
new FastPromiseResolveThenableJob(resolveCb, rejectCb, nextPromise);
|
2015-04-17 19:01:02 -07:00
|
|
|
DispatchToMicroTask(task);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseInit> thenCallback =
|
2015-07-24 04:00:00 -07:00
|
|
|
new PromiseInit(nullptr, thenObj, mozilla::dom::GetIncumbentGlobal());
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseResolveThenableJob> task =
|
2015-08-03 09:48:34 -07:00
|
|
|
new PromiseResolveThenableJob(this, valueObj, thenCallback);
|
2014-10-28 05:08:19 -07:00
|
|
|
DispatchToMicroTask(task);
|
2013-09-11 09:03:04 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
MaybeSettle(aValue, Resolved);
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Promise::RejectInternal(JSContext* aCx,
|
2014-10-28 05:08:19 -07:00
|
|
|
JS::Handle<JS::Value> aValue)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
|
|
|
mResolvePending = true;
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
MaybeSettle(aValue, Rejected);
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-11-17 01:44:00 -08:00
|
|
|
Promise::Settle(JS::Handle<JS::Value> aValue, PromiseState aState)
|
2013-09-11 09:03:04 -07:00
|
|
|
{
|
2015-09-11 18:59:43 -07:00
|
|
|
MOZ_ASSERT(mGlobal,
|
|
|
|
"We really should have a global here. Except we sometimes don't "
|
|
|
|
"in the wild for some odd reason");
|
|
|
|
if (!mGlobal || mGlobal->IsDying()) {
|
2015-04-27 12:00:41 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-17 01:44:00 -08:00
|
|
|
mSettlementTimestamp = TimeStamp::Now();
|
2015-04-27 12:00:41 -07:00
|
|
|
|
2013-09-11 09:03:04 -07:00
|
|
|
SetResult(aValue);
|
|
|
|
SetState(aState);
|
2014-11-17 01:44:00 -08:00
|
|
|
|
|
|
|
AutoJSAPI jsapi;
|
|
|
|
jsapi.Init();
|
|
|
|
JSContext* cx = jsapi.cx();
|
|
|
|
JS::RootedObject wrapper(cx, GetWrapper());
|
|
|
|
MOZ_ASSERT(wrapper); // We preserved it
|
|
|
|
JSAutoCompartment ac(cx, wrapper);
|
|
|
|
JS::dbg::onPromiseSettled(cx, wrapper);
|
2014-03-12 07:31:03 -07:00
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
if (aState == PromiseState::Rejected &&
|
|
|
|
mIsLastInChain) {
|
|
|
|
// The Promise has just been rejected, and it is last in chain.
|
|
|
|
// We need to inform PromiseDebugging.
|
|
|
|
// If the Promise is eventually not the last in chain anymore,
|
|
|
|
// we will need to inform PromiseDebugging again.
|
|
|
|
PromiseDebugging::AddUncaughtRejection(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
// If the Promise was rejected, and there is no reject handler already setup,
|
|
|
|
// watch for thread shutdown.
|
|
|
|
if (aState == PromiseState::Rejected &&
|
|
|
|
!mHadRejectCallback &&
|
|
|
|
!NS_IsMainThread()) {
|
2015-04-10 08:27:57 -07:00
|
|
|
workers::WorkerPrivate* worker = GetCurrentThreadWorkerPrivate();
|
2014-03-12 07:31:03 -07:00
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
worker->AssertIsOnWorkerThread();
|
|
|
|
|
|
|
|
mFeature = new PromiseReportRejectFeature(this);
|
|
|
|
if (NS_WARN_IF(!worker->AddFeature(worker->GetJSContext(), mFeature))) {
|
2014-06-05 12:21:56 -07:00
|
|
|
// To avoid a false RemoveFeature().
|
|
|
|
mFeature = nullptr;
|
2014-03-12 07:31:03 -07:00
|
|
|
// Worker is shutting down, report rejection immediately since it is
|
|
|
|
// unlikely that reject callbacks will be added after this point.
|
2014-06-05 12:21:56 -07:00
|
|
|
MaybeReportRejectedOnce();
|
2014-03-12 07:31:03 -07:00
|
|
|
}
|
|
|
|
}
|
2015-04-10 08:27:57 -07:00
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
|
2015-08-06 08:18:30 -07:00
|
|
|
TriggerPromiseReactions();
|
2014-10-28 05:08:19 -07:00
|
|
|
}
|
|
|
|
|
2014-11-17 01:44:00 -08:00
|
|
|
void
|
|
|
|
Promise::MaybeSettle(JS::Handle<JS::Value> aValue,
|
|
|
|
PromiseState aState)
|
|
|
|
{
|
|
|
|
// Promise.all() or Promise.race() implementations will repeatedly call
|
|
|
|
// Resolve/RejectInternal rather than using the Maybe... forms. Stop SetState
|
|
|
|
// from asserting.
|
|
|
|
if (mState != Pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Settle(aValue, aState);
|
|
|
|
}
|
|
|
|
|
2014-10-28 05:08:19 -07:00
|
|
|
void
|
2015-08-06 08:18:30 -07:00
|
|
|
Promise::TriggerPromiseReactions()
|
2014-10-28 05:08:19 -07:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
nsTArray<RefPtr<PromiseCallback>> callbacks;
|
2014-10-28 05:08:19 -07:00
|
|
|
callbacks.SwapElements(mState == Resolved ? mResolveCallbacks
|
|
|
|
: mRejectCallbacks);
|
|
|
|
mResolveCallbacks.Clear();
|
|
|
|
mRejectCallbacks.Clear();
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < callbacks.Length(); ++i) {
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseReactionJob> task =
|
2015-08-06 08:18:30 -07:00
|
|
|
new PromiseReactionJob(this, callbacks[i], mResult);
|
2014-10-28 05:08:19 -07:00
|
|
|
DispatchToMicroTask(task);
|
2014-10-28 05:08:19 -07:00
|
|
|
}
|
2013-09-11 09:03:04 -07:00
|
|
|
}
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
#if defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
void
|
|
|
|
Promise::RemoveFeature()
|
|
|
|
{
|
|
|
|
if (mFeature) {
|
2015-04-10 08:27:57 -07:00
|
|
|
workers::WorkerPrivate* worker = GetCurrentThreadWorkerPrivate();
|
2014-03-12 07:31:03 -07:00
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
worker->RemoveFeature(worker->GetJSContext(), mFeature);
|
|
|
|
mFeature = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PromiseReportRejectFeature::Notify(JSContext* aCx, workers::Status aStatus)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aStatus > workers::Running);
|
|
|
|
mPromise->MaybeReportRejectedOnce();
|
|
|
|
// After this point, `this` has been deleted by RemoveFeature!
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-10 08:27:57 -07:00
|
|
|
#endif // defined(DOM_PROMISE_DEPRECATED_REPORTING)
|
2014-03-12 07:31:03 -07:00
|
|
|
|
2014-10-19 19:27:12 -07:00
|
|
|
bool
|
|
|
|
Promise::CaptureStack(JSContext* aCx, JS::Heap<JSObject*>& aTarget)
|
|
|
|
{
|
|
|
|
JS::Rooted<JSObject*> stack(aCx);
|
|
|
|
if (!JS::CaptureCurrentStack(aCx, &stack)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aTarget = stack;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-19 19:27:36 -07:00
|
|
|
void
|
2015-10-17 22:24:48 -07:00
|
|
|
Promise::GetDependentPromises(nsTArray<RefPtr<Promise>>& aPromises)
|
2014-10-19 19:27:36 -07:00
|
|
|
{
|
|
|
|
// We want to return promises that correspond to then() calls, Promise.all()
|
|
|
|
// calls, and Promise.race() calls.
|
|
|
|
//
|
|
|
|
// For the then() case, we have both resolve and reject callbacks that know
|
|
|
|
// what the next promise is.
|
|
|
|
//
|
|
|
|
// For the race() case, likewise.
|
|
|
|
//
|
|
|
|
// For the all() case, our reject callback knows what the next promise is, but
|
|
|
|
// our resolve callback just knows it needs to notify some
|
|
|
|
// PromiseNativeHandler, which itself only has an indirect relationship to the
|
|
|
|
// next promise.
|
|
|
|
//
|
|
|
|
// So we walk over our _reject_ callbacks and ask each of them what promise
|
|
|
|
// its dependent promise is.
|
|
|
|
for (size_t i = 0; i < mRejectCallbacks.Length(); ++i) {
|
|
|
|
Promise* p = mRejectCallbacks[i]->GetDependentPromise();
|
|
|
|
if (p) {
|
|
|
|
aPromises.AppendElement(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 05:56:54 -08:00
|
|
|
// A WorkerRunnable to resolve/reject the Promise on the worker thread.
|
2015-06-10 15:35:18 -07:00
|
|
|
// Calling thread MUST hold PromiseWorkerProxy's mutex before creating this.
|
2014-02-24 05:56:54 -08:00
|
|
|
class PromiseWorkerProxyRunnable : public workers::WorkerRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PromiseWorkerProxyRunnable(PromiseWorkerProxy* aPromiseWorkerProxy,
|
|
|
|
PromiseWorkerProxy::RunCallbackFunc aFunc)
|
|
|
|
: WorkerRunnable(aPromiseWorkerProxy->GetWorkerPrivate(),
|
|
|
|
WorkerThreadUnchangedBusyCount)
|
|
|
|
, mPromiseWorkerProxy(aPromiseWorkerProxy)
|
|
|
|
, mFunc(aFunc)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(mPromiseWorkerProxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
WorkerRun(JSContext* aCx, workers::WorkerPrivate* aWorkerPrivate)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aWorkerPrivate);
|
|
|
|
aWorkerPrivate->AssertIsOnWorkerThread();
|
|
|
|
MOZ_ASSERT(aWorkerPrivate == mWorkerPrivate);
|
|
|
|
|
|
|
|
MOZ_ASSERT(mPromiseWorkerProxy);
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<Promise> workerPromise = mPromiseWorkerProxy->WorkerPromise();
|
2014-02-24 05:56:54 -08:00
|
|
|
|
|
|
|
// Here we convert the buffer to a JS::Value.
|
|
|
|
JS::Rooted<JS::Value> value(aCx);
|
2015-09-05 02:22:13 -07:00
|
|
|
if (!mPromiseWorkerProxy->Read(aCx, &value)) {
|
2014-02-24 05:56:54 -08:00
|
|
|
JS_ClearPendingException(aCx);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-28 14:08:00 -07:00
|
|
|
(workerPromise->*mFunc)(aCx, value);
|
2014-02-24 05:56:54 -08:00
|
|
|
|
|
|
|
// Release the Promise because it has been resolved/rejected for sure.
|
|
|
|
mPromiseWorkerProxy->CleanUp(aCx);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
~PromiseWorkerProxyRunnable() {}
|
|
|
|
|
|
|
|
private:
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseWorkerProxy> mPromiseWorkerProxy;
|
2014-02-24 05:56:54 -08:00
|
|
|
|
|
|
|
// Function pointer for calling Promise::{ResolveInternal,RejectInternal}.
|
|
|
|
PromiseWorkerProxy::RunCallbackFunc mFunc;
|
|
|
|
};
|
|
|
|
|
2014-12-17 06:49:36 -08:00
|
|
|
/* static */
|
|
|
|
already_AddRefed<PromiseWorkerProxy>
|
2015-04-10 08:27:57 -07:00
|
|
|
PromiseWorkerProxy::Create(workers::WorkerPrivate* aWorkerPrivate,
|
2014-12-17 06:49:36 -08:00
|
|
|
Promise* aWorkerPromise,
|
2015-09-05 02:22:13 -07:00
|
|
|
const PromiseWorkerProxyStructuredCloneCallbacks* aCb)
|
2014-12-17 06:49:36 -08:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aWorkerPrivate);
|
|
|
|
aWorkerPrivate->AssertIsOnWorkerThread();
|
|
|
|
MOZ_ASSERT(aWorkerPromise);
|
2015-09-05 02:22:13 -07:00
|
|
|
MOZ_ASSERT_IF(aCb, !!aCb->Write && !!aCb->Read);
|
2014-12-17 06:49:36 -08:00
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseWorkerProxy> proxy =
|
2014-12-17 06:49:36 -08:00
|
|
|
new PromiseWorkerProxy(aWorkerPrivate, aWorkerPromise, aCb);
|
|
|
|
|
|
|
|
// We do this to make sure the worker thread won't shut down before the
|
|
|
|
// promise is resolved/rejected on the worker thread.
|
2015-09-02 10:07:26 -07:00
|
|
|
if (!proxy->AddRefObject()) {
|
2014-12-17 06:49:36 -08:00
|
|
|
// Probably the worker is terminating. We cannot complete the operation
|
|
|
|
// and we have to release all the resources.
|
2015-09-02 10:07:26 -07:00
|
|
|
proxy->CleanProperties();
|
2014-12-17 06:49:36 -08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return proxy.forget();
|
|
|
|
}
|
|
|
|
|
2015-07-08 23:56:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS0(PromiseWorkerProxy)
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
PromiseWorkerProxy::PromiseWorkerProxy(workers::WorkerPrivate* aWorkerPrivate,
|
2014-02-24 05:56:54 -08:00
|
|
|
Promise* aWorkerPromise,
|
2015-09-05 02:22:13 -07:00
|
|
|
const PromiseWorkerProxyStructuredCloneCallbacks* aCallbacks)
|
2014-02-24 05:56:54 -08:00
|
|
|
: mWorkerPrivate(aWorkerPrivate)
|
|
|
|
, mWorkerPromise(aWorkerPromise)
|
|
|
|
, mCleanedUp(false)
|
|
|
|
, mCallbacks(aCallbacks)
|
|
|
|
, mCleanUpLock("cleanUpLock")
|
2015-09-02 10:07:26 -07:00
|
|
|
, mFeatureAdded(false)
|
2014-02-24 05:56:54 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PromiseWorkerProxy::~PromiseWorkerProxy()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mCleanedUp);
|
2015-09-02 10:07:26 -07:00
|
|
|
MOZ_ASSERT(!mFeatureAdded);
|
2014-02-24 05:56:54 -08:00
|
|
|
MOZ_ASSERT(!mWorkerPromise);
|
2015-09-02 10:07:26 -07:00
|
|
|
MOZ_ASSERT(!mWorkerPrivate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::CleanProperties()
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
workers::WorkerPrivate* worker = GetCurrentThreadWorkerPrivate();
|
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
worker->AssertIsOnWorkerThread();
|
|
|
|
#endif
|
|
|
|
// Ok to do this unprotected from Create().
|
|
|
|
// CleanUp() holds the lock before calling this.
|
|
|
|
mCleanedUp = true;
|
|
|
|
mWorkerPromise = nullptr;
|
|
|
|
mWorkerPrivate = nullptr;
|
2015-09-05 02:22:13 -07:00
|
|
|
|
2015-09-30 05:22:08 -07:00
|
|
|
// Clear the StructuredCloneHolderBase class.
|
|
|
|
Clear();
|
2015-09-02 10:07:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PromiseWorkerProxy::AddRefObject()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mWorkerPrivate);
|
|
|
|
mWorkerPrivate->AssertIsOnWorkerThread();
|
|
|
|
MOZ_ASSERT(!mFeatureAdded);
|
|
|
|
if (!mWorkerPrivate->AddFeature(mWorkerPrivate->GetJSContext(),
|
|
|
|
this)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mFeatureAdded = true;
|
|
|
|
// Maintain a reference so that we have a valid object to clean up when
|
|
|
|
// removing the feature.
|
|
|
|
AddRef();
|
|
|
|
return true;
|
2014-02-24 05:56:54 -08:00
|
|
|
}
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
workers::WorkerPrivate*
|
2014-02-24 05:56:54 -08:00
|
|
|
PromiseWorkerProxy::GetWorkerPrivate() const
|
|
|
|
{
|
2015-06-10 15:35:18 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
mCleanUpLock.AssertCurrentThreadOwns();
|
|
|
|
}
|
|
|
|
#endif
|
2015-09-02 10:07:26 -07:00
|
|
|
// Safe to check this without a lock since we assert lock ownership on the
|
|
|
|
// main thread above.
|
|
|
|
MOZ_ASSERT(!mCleanedUp);
|
|
|
|
MOZ_ASSERT(mFeatureAdded);
|
2015-06-10 15:35:18 -07:00
|
|
|
|
2014-02-24 05:56:54 -08:00
|
|
|
return mWorkerPrivate;
|
|
|
|
}
|
|
|
|
|
|
|
|
Promise*
|
2015-09-02 10:07:26 -07:00
|
|
|
PromiseWorkerProxy::WorkerPromise() const
|
2014-02-24 05:56:54 -08:00
|
|
|
{
|
2015-06-10 15:35:18 -07:00
|
|
|
#ifdef DEBUG
|
2015-08-18 10:00:35 -07:00
|
|
|
workers::WorkerPrivate* worker = GetCurrentThreadWorkerPrivate();
|
2015-06-10 15:35:18 -07:00
|
|
|
MOZ_ASSERT(worker);
|
|
|
|
worker->AssertIsOnWorkerThread();
|
|
|
|
#endif
|
2015-09-02 10:07:26 -07:00
|
|
|
MOZ_ASSERT(mWorkerPromise);
|
2014-02-24 05:56:54 -08:00
|
|
|
return mWorkerPromise;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::StoreISupports(nsISupports* aSupports)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2014-07-29 17:43:56 -07:00
|
|
|
nsMainThreadPtrHandle<nsISupports> supports(
|
|
|
|
new nsMainThreadPtrHolder<nsISupports>(aSupports));
|
2014-02-24 05:56:54 -08:00
|
|
|
mSupportsArray.AppendElement(supports);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::RunCallback(JSContext* aCx,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
RunCallbackFunc aFunc)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-09-02 10:07:26 -07:00
|
|
|
MutexAutoLock lock(Lock());
|
2014-02-24 05:56:54 -08:00
|
|
|
// If the worker thread's been cancelled we don't need to resolve the Promise.
|
2015-09-02 10:07:26 -07:00
|
|
|
if (CleanedUp()) {
|
2014-02-24 05:56:54 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-30 05:22:08 -07:00
|
|
|
// The |aValue| is written into the StructuredCloneHolderBase.
|
2015-09-05 02:22:13 -07:00
|
|
|
if (!Write(aCx, aValue)) {
|
2014-02-24 05:56:54 -08:00
|
|
|
JS_ClearPendingException(aCx);
|
2015-09-05 02:22:13 -07:00
|
|
|
MOZ_ASSERT(false, "cannot serialize the value with the StructuredCloneAlgorithm!");
|
2014-02-24 05:56:54 -08:00
|
|
|
}
|
|
|
|
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<PromiseWorkerProxyRunnable> runnable =
|
2015-09-05 02:22:13 -07:00
|
|
|
new PromiseWorkerProxyRunnable(this, aFunc);
|
2014-02-24 05:56:54 -08:00
|
|
|
|
2015-09-02 10:07:26 -07:00
|
|
|
runnable->Dispatch(aCx);
|
2014-02-24 05:56:54 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::ResolvedCallback(JSContext* aCx,
|
|
|
|
JS::Handle<JS::Value> aValue)
|
|
|
|
{
|
|
|
|
RunCallback(aCx, aValue, &Promise::ResolveInternal);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::RejectedCallback(JSContext* aCx,
|
|
|
|
JS::Handle<JS::Value> aValue)
|
|
|
|
{
|
|
|
|
RunCallback(aCx, aValue, &Promise::RejectInternal);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PromiseWorkerProxy::Notify(JSContext* aCx, Status aStatus)
|
|
|
|
{
|
|
|
|
if (aStatus >= Canceling) {
|
|
|
|
CleanUp(aCx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PromiseWorkerProxy::CleanUp(JSContext* aCx)
|
|
|
|
{
|
2015-09-02 10:07:26 -07:00
|
|
|
// Can't release Mutex while it is still locked, so scope the lock.
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(Lock());
|
2014-02-24 05:56:54 -08:00
|
|
|
|
2015-09-02 10:07:26 -07:00
|
|
|
// |mWorkerPrivate| is not safe to use anymore if we have already
|
|
|
|
// cleaned up and RemoveFeature(), so we need to check |mCleanedUp| first.
|
|
|
|
if (CleanedUp()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-02-24 05:56:54 -08:00
|
|
|
|
2015-09-02 10:07:26 -07:00
|
|
|
MOZ_ASSERT(mWorkerPrivate);
|
|
|
|
mWorkerPrivate->AssertIsOnWorkerThread();
|
|
|
|
MOZ_ASSERT(mWorkerPrivate->GetJSContext() == aCx);
|
2014-02-24 05:56:54 -08:00
|
|
|
|
2015-09-02 10:07:26 -07:00
|
|
|
// Release the Promise and remove the PromiseWorkerProxy from the features of
|
|
|
|
// the worker thread since the Promise has been resolved/rejected or the
|
|
|
|
// worker thread has been cancelled.
|
|
|
|
MOZ_ASSERT(mFeatureAdded);
|
|
|
|
mWorkerPrivate->RemoveFeature(mWorkerPrivate->GetJSContext(), this);
|
|
|
|
mFeatureAdded = false;
|
|
|
|
CleanProperties();
|
|
|
|
}
|
|
|
|
Release();
|
2014-02-24 05:56:54 -08:00
|
|
|
}
|
|
|
|
|
2015-09-05 02:22:13 -07:00
|
|
|
JSObject*
|
2015-09-30 05:22:08 -07:00
|
|
|
PromiseWorkerProxy::CustomReadHandler(JSContext* aCx,
|
|
|
|
JSStructuredCloneReader* aReader,
|
|
|
|
uint32_t aTag,
|
|
|
|
uint32_t aIndex)
|
2015-09-05 02:22:13 -07:00
|
|
|
{
|
|
|
|
if (NS_WARN_IF(!mCallbacks)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mCallbacks->Read(aCx, aReader, this, aTag, aIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-09-30 05:22:08 -07:00
|
|
|
PromiseWorkerProxy::CustomWriteHandler(JSContext* aCx,
|
|
|
|
JSStructuredCloneWriter* aWriter,
|
|
|
|
JS::Handle<JSObject*> aObj)
|
2015-09-05 02:22:13 -07:00
|
|
|
{
|
|
|
|
if (NS_WARN_IF(!mCallbacks)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mCallbacks->Write(aCx, aWriter, this, aObj);
|
|
|
|
}
|
|
|
|
|
2014-06-03 08:38:38 -07:00
|
|
|
// Specializations of MaybeRejectBrokenly we actually support.
|
|
|
|
template<>
|
2015-10-17 22:24:48 -07:00
|
|
|
void Promise::MaybeRejectBrokenly(const RefPtr<DOMError>& aArg) {
|
2014-06-03 08:38:38 -07:00
|
|
|
MaybeSomething(aArg, &Promise::MaybeReject);
|
|
|
|
}
|
|
|
|
template<>
|
|
|
|
void Promise::MaybeRejectBrokenly(const nsAString& aArg) {
|
|
|
|
MaybeSomething(aArg, &Promise::MaybeReject);
|
|
|
|
}
|
|
|
|
|
2015-04-10 08:27:57 -07:00
|
|
|
uint64_t
|
|
|
|
Promise::GetID() {
|
|
|
|
if (mID != 0) {
|
|
|
|
return mID;
|
|
|
|
}
|
|
|
|
return mID = ++gIDGenerator;
|
|
|
|
}
|
|
|
|
|
2013-06-11 18:41:21 -07:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|