1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_dom_serviceworkerevents_h__
#define mozilla_dom_serviceworkerevents_h__
#include "mozilla/Attributes.h"
#include "mozilla/dom/Event.h"
#include "mozilla/dom/ExtendableEventBinding.h"
#include "mozilla/dom/ExtendableMessageEventBinding.h"
#include "mozilla/dom/FetchEventBinding.h"
#include "mozilla/dom/File.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/Response.h"
#include "mozilla/dom/ServiceWorkerUtils.h"
#include "mozilla/dom/WorkerCommon.h"
#include "nsContentUtils.h"
#include "nsProxyRelease.h"
class nsIInterceptedChannel;
namespace mozilla::dom {
class Blob;
class Client;
class FetchEventOp;
class MessagePort;
struct PushEventInit;
class Request;
class ResponseOrPromise;
class ServiceWorker;
class ServiceWorkerRegistrationInfo;
class CancelChannelRunnable final : public Runnable {
nsMainThreadPtrHandle<nsIInterceptedChannel> mChannel;
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo> mRegistration;
const nsresult mStatus;
public:
CancelChannelRunnable(
nsMainThreadPtrHandle<nsIInterceptedChannel>& aChannel,
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo>& aRegistration,
nsresult aStatus);
NS_IMETHOD Run() override;
};
enum ExtendableEventResult { Rejected = 0, Resolved };
class ExtendableEventCallback {
public:
virtual void FinishedWithResult(ExtendableEventResult aResult) = 0;
NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING
};
class ExtendableEvent : public Event {
public:
class ExtensionsHandler {
friend class ExtendableEvent;
public:
virtual bool WaitOnPromise(Promise& aPromise) = 0;
NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING
protected:
virtual ~ExtensionsHandler();
// Also returns false if the owning ExtendableEvent is destroyed.
bool GetDispatchFlag() const;
private:
// Only the owning ExtendableEvent is allowed to set this data.
void SetExtendableEvent(const ExtendableEvent* const aExtendableEvent);
MOZ_NON_OWNING_REF const ExtendableEvent* mExtendableEvent = nullptr;
};
private:
RefPtr<ExtensionsHandler> mExtensionsHandler;
protected:
bool GetDispatchFlag() const { return mEvent->mFlags.mIsBeingDispatched; }
bool WaitOnPromise(Promise& aPromise);
explicit ExtendableEvent(mozilla::dom::EventTarget* aOwner);
~ExtendableEvent() {
if (mExtensionsHandler) {
mExtensionsHandler->SetExtendableEvent(nullptr);
}
};
public:
NS_DECL_ISUPPORTS_INHERITED
void SetKeepAliveHandler(ExtensionsHandler* aExtensionsHandler);
virtual JSObject* WrapObjectInternal(
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
return mozilla::dom::ExtendableEvent_Binding::Wrap(aCx, this, aGivenProto);
}
static already_AddRefed<ExtendableEvent> Constructor(
mozilla::dom::EventTarget* aOwner, const nsAString& aType,
const EventInit& aOptions) {
RefPtr<ExtendableEvent> e = new ExtendableEvent(aOwner);
bool trusted = e->Init(aOwner);
e->InitEvent(aType, aOptions.mBubbles, aOptions.mCancelable);
e->SetTrusted(trusted);
e->SetComposed(aOptions.mComposed);
return e.forget();
}
static already_AddRefed<ExtendableEvent> Constructor(
const GlobalObject& aGlobal, const nsAString& aType,
const EventInit& aOptions) {
nsCOMPtr<EventTarget> target = do_QueryInterface(aGlobal.GetAsSupports());
return Constructor(target, aType, aOptions);
}
void WaitUntil(JSContext* aCx, Promise& aPromise, ErrorResult& aRv);
virtual ExtendableEvent* AsExtendableEvent() override { return this; }
};
class FetchEvent final : public ExtendableEvent {
RefPtr<FetchEventOp> mRespondWithHandler;
nsMainThreadPtrHandle<nsIInterceptedChannel> mChannel;
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo> mRegistration;
RefPtr<Request> mRequest;
RefPtr<Promise> mHandled;
RefPtr<Promise> mPreloadResponse;
nsCString mScriptSpec;
nsString mClientId;
nsString mResultingClientId;
JSCallingLocation mPreventDefaultLocation;
bool mWaitToRespond;
protected:
explicit FetchEvent(EventTarget* aOwner);
~FetchEvent();
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FetchEvent, ExtendableEvent)
virtual JSObject* WrapObjectInternal(
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
return FetchEvent_Binding::Wrap(aCx, this, aGivenProto);
}
void PostInit(
nsMainThreadPtrHandle<nsIInterceptedChannel>& aChannel,
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo>& aRegistration,
const nsACString& aScriptSpec);
void PostInit(const nsACString& aScriptSpec,
RefPtr<FetchEventOp> aRespondWithHandler);
static already_AddRefed<FetchEvent> Constructor(
const GlobalObject& aGlobal, const nsAString& aType,
const FetchEventInit& aOptions);
bool WaitToRespond() const { return mWaitToRespond; }
Request* Request_() const {
MOZ_ASSERT(mRequest);
return mRequest;
}
void GetClientId(nsAString& aClientId) const { aClientId = mClientId; }
void GetResultingClientId(nsAString& aResultingClientId) const {
aResultingClientId = mResultingClientId;
}
Promise* Handled() const { return mHandled; }
Promise* PreloadResponse() const { return mPreloadResponse; }
void RespondWith(JSContext* aCx, Promise& aArg, ErrorResult& aRv);
// Pull in the Event version of PreventDefault so we don't get
// shadowing warnings.
using Event::PreventDefault;
void PreventDefault(JSContext* aCx, CallerType aCallerType) override;
void ReportCanceled();
};
class PushMessageData final : public nsISupports, public nsWrapperCache {
public:
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(PushMessageData)
virtual JSObject* WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) override;
nsIGlobalObject* GetParentObject() const { return mOwner; }
void Json(JSContext* cx, JS::MutableHandle<JS::Value> aRetval,
ErrorResult& aRv);
void Text(nsAString& aData);
void ArrayBuffer(JSContext* cx, JS::MutableHandle<JSObject*> aRetval,
ErrorResult& aRv);
already_AddRefed<mozilla::dom::Blob> Blob(ErrorResult& aRv);
void Bytes(JSContext* cx, JS::MutableHandle<JSObject*> aRetval,
ErrorResult& aRv);
PushMessageData(nsIGlobalObject* aOwner, nsTArray<uint8_t>&& aBytes);
private:
nsCOMPtr<nsIGlobalObject> mOwner;
nsTArray<uint8_t> mBytes;
nsString mDecodedText;
~PushMessageData();
nsresult EnsureDecodedText();
uint8_t* GetContentsCopy();
};
class PushEvent final : public ExtendableEvent {
RefPtr<PushMessageData> mData;
protected:
explicit PushEvent(mozilla::dom::EventTarget* aOwner);
~PushEvent() = default;
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(PushEvent, ExtendableEvent)
virtual JSObject* WrapObjectInternal(
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
static already_AddRefed<PushEvent> Constructor(
mozilla::dom::EventTarget* aOwner, const nsAString& aType,
const PushEventInit& aOptions, ErrorResult& aRv);
static already_AddRefed<PushEvent> Constructor(const GlobalObject& aGlobal,
const nsAString& aType,
const PushEventInit& aOptions,
ErrorResult& aRv) {
nsCOMPtr<EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
return Constructor(owner, aType, aOptions, aRv);
}
PushMessageData* GetData() const { return mData; }
};
class ExtendableMessageEvent final : public ExtendableEvent {
JS::Heap<JS::Value> mData;
nsString mOrigin;
nsString mLastEventId;
RefPtr<Client> mClient;
RefPtr<ServiceWorker> mServiceWorker;
RefPtr<MessagePort> mMessagePort;
nsTArray<RefPtr<MessagePort>> mPorts;
protected:
explicit ExtendableMessageEvent(EventTarget* aOwner);
~ExtendableMessageEvent();
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(ExtendableMessageEvent,
ExtendableEvent)
virtual JSObject* WrapObjectInternal(
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
return mozilla::dom::ExtendableMessageEvent_Binding::Wrap(aCx, this,
aGivenProto);
}
static already_AddRefed<ExtendableMessageEvent> Constructor(
mozilla::dom::EventTarget* aOwner, const nsAString& aType,
const ExtendableMessageEventInit& aOptions);
static already_AddRefed<ExtendableMessageEvent> Constructor(
const GlobalObject& aGlobal, const nsAString& aType,
const ExtendableMessageEventInit& aOptions);
void GetData(JSContext* aCx, JS::MutableHandle<JS::Value> aData,
ErrorResult& aRv);
void GetSource(
Nullable<OwningClientOrServiceWorkerOrMessagePort>& aValue) const;
void GetOrigin(nsAString& aOrigin) const { aOrigin = mOrigin; }
void GetLastEventId(nsAString& aLastEventId) const {
aLastEventId = mLastEventId;
}
void GetPorts(nsTArray<RefPtr<MessagePort>>& aPorts);
};
} // namespace mozilla::dom
#endif /* mozilla_dom_serviceworkerevents_h__ */
|