mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
102 lines
2.5 KiB
C++
102 lines
2.5 KiB
C++
/* -*- 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_Future_h
|
|
#define mozilla_dom_Future_h
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "mozilla/dom/FutureBinding.h"
|
|
#include "nsWrapperCache.h"
|
|
#include "nsAutoPtr.h"
|
|
|
|
struct JSContext;
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class FutureInit;
|
|
class AnyCallback;
|
|
class FutureResolver;
|
|
|
|
class Future MOZ_FINAL : public nsISupports,
|
|
public nsWrapperCache
|
|
{
|
|
friend class FutureTask;
|
|
friend class FutureResolver;
|
|
friend class FutureResolverTask;
|
|
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Future)
|
|
|
|
Future(nsPIDOMWindow* aWindow);
|
|
~Future();
|
|
|
|
// WebIDL
|
|
|
|
nsPIDOMWindow* GetParentObject() const
|
|
{
|
|
return mWindow;
|
|
}
|
|
|
|
virtual JSObject*
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
static already_AddRefed<Future>
|
|
Constructor(const GlobalObject& aGlobal, JSContext* aCx, FutureInit& aInit,
|
|
ErrorResult& aRv);
|
|
|
|
void Done(AnyCallback* aResolveCallback, AnyCallback* aRejectCallback);
|
|
|
|
private:
|
|
enum FutureState {
|
|
Pending,
|
|
Resolved,
|
|
Rejected
|
|
};
|
|
|
|
void SetState(FutureState aState)
|
|
{
|
|
MOZ_ASSERT(mState == Pending);
|
|
MOZ_ASSERT(aState != Pending);
|
|
mState = aState;
|
|
}
|
|
|
|
void SetResult(JS::Handle<JS::Value> aValue)
|
|
{
|
|
mResult = aValue;
|
|
}
|
|
|
|
// This method processes future's resolve/reject callbacks with future's
|
|
// result. It's executed when the resolver.resolve() or resolver.reject() is
|
|
// called or when the future already has a result and new callbacks are
|
|
// appended by then(), catch() or done().
|
|
void RunTask();
|
|
|
|
void AppendCallbacks(AnyCallback* aResolveCallback,
|
|
AnyCallback* aRejectCallback);
|
|
|
|
nsRefPtr<nsPIDOMWindow> mWindow;
|
|
|
|
nsRefPtr<FutureResolver> mResolver;
|
|
|
|
nsTArray<nsRefPtr<AnyCallback> > mResolveCallbacks;
|
|
nsTArray<nsRefPtr<AnyCallback> > mRejectCallbacks;
|
|
|
|
JS::Value mResult;
|
|
FutureState mState;
|
|
bool mTaskPending;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_Future_h
|