/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ /* vim: set ts=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/. */ #ifndef mozilla_dom_Promise_h #define mozilla_dom_Promise_h #include "mozilla/Attributes.h" #include "mozilla/ErrorResult.h" #include "mozilla/dom/BindingDeclarations.h" #include "nsCycleCollectionParticipant.h" #include "mozilla/dom/PromiseBinding.h" #include "nsWrapperCache.h" #include "nsAutoPtr.h" #include "nsPIDOMWindow.h" #include "js/TypeDecls.h" namespace mozilla { namespace dom { class AnyCallback; class PromiseCallback; class PromiseInit; class PromiseNativeHandler; class Promise MOZ_FINAL : public nsISupports, public nsWrapperCache { friend class NativePromiseCallback; friend class PromiseResolverMixin; friend class PromiseResolverTask; friend class PromiseTask; friend class RejectPromiseCallback; friend class ResolvePromiseCallback; friend class WorkerPromiseResolverTask; friend class WorkerPromiseTask; friend class WrapperPromiseCallback; public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Promise) Promise(nsPIDOMWindow* aWindow); ~Promise(); static bool EnabledForScope(JSContext* aCx, JSObject* /* unused */); void MaybeResolve(JSContext* aCx, JS::Handle aValue); void MaybeReject(JSContext* aCx, JS::Handle aValue); // WebIDL nsPIDOMWindow* GetParentObject() const { return mWindow; } virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aScope) MOZ_OVERRIDE; static already_AddRefed Constructor(const GlobalObject& aGlobal, PromiseInit& aInit, ErrorResult& aRv); static already_AddRefed Resolve(const GlobalObject& aGlobal, JSContext* aCx, const Optional>& aValue, ErrorResult& aRv); static already_AddRefed Reject(const GlobalObject& aGlobal, JSContext* aCx, const Optional>& aValue, ErrorResult& aRv); already_AddRefed Then(const Optional>& aResolveCallback, const Optional>& aRejectCallback); already_AddRefed Catch(const Optional>& aRejectCallback); void AppendNativeHandler(PromiseNativeHandler* aRunnable); private: enum PromiseState { Pending, Resolved, Rejected }; enum PromiseTaskSync { SyncTask, AsyncTask }; void SetState(PromiseState aState) { MOZ_ASSERT(mState == Pending); MOZ_ASSERT(aState != Pending); mState = aState; } void SetResult(JS::Handle aValue) { mResult = aValue; } // This method processes promise's resolve/reject callbacks with promise's // result. It's executed when the resolver.resolve() or resolver.reject() is // called or when the promise already has a result and new callbacks are // appended by then(), catch() or done(). void RunTask(); void RunResolveTask(JS::Handle aValue, Promise::PromiseState aState, PromiseTaskSync aAsynchronous); void AppendCallbacks(PromiseCallback* aResolveCallback, PromiseCallback* aRejectCallback); // If we have been rejected and our mResult is a JS exception, // report it to the error console. void MaybeReportRejected(); void MaybeResolveInternal(JSContext* aCx, JS::Handle aValue, PromiseTaskSync aSync = AsyncTask); void MaybeRejectInternal(JSContext* aCx, JS::Handle aValue, PromiseTaskSync aSync = AsyncTask); void ResolveInternal(JSContext* aCx, JS::Handle aValue, PromiseTaskSync aSync = AsyncTask); void RejectInternal(JSContext* aCx, JS::Handle aValue, PromiseTaskSync aSync = AsyncTask); // Static methods for the PromiseInit functions. static bool JSCallback(JSContext *aCx, unsigned aArgc, JS::Value *aVp); static JSObject* CreateFunction(JSContext* aCx, JSObject* aParent, Promise* aPromise, int32_t aTask); nsRefPtr mWindow; nsTArray > mResolveCallbacks; nsTArray > mRejectCallbacks; JS::Heap mResult; PromiseState mState; bool mTaskPending; bool mHadRejectCallback; bool mResolvePending; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_Promise_h