2015-05-03 22:32:37 +03: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: */
|
2014-05-14 01:49:36 +04: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_workers_serviceworkerevents_h__
|
|
|
|
#define mozilla_dom_workers_serviceworkerevents_h__
|
|
|
|
|
|
|
|
#include "mozilla/dom/Event.h"
|
2014-11-06 18:57:57 +03:00
|
|
|
#include "mozilla/dom/ExtendableEventBinding.h"
|
2015-11-10 09:31:41 +03:00
|
|
|
#include "mozilla/dom/ExtendableMessageEventBinding.h"
|
2015-02-19 04:34:29 +03:00
|
|
|
#include "mozilla/dom/FetchEventBinding.h"
|
2016-09-01 21:17:03 +03:00
|
|
|
#include "mozilla/dom/File.h"
|
2015-02-06 21:08:31 +03:00
|
|
|
#include "mozilla/dom/Promise.h"
|
2015-03-20 18:44:20 +03:00
|
|
|
#include "mozilla/dom/Response.h"
|
2015-04-21 04:47:13 +03:00
|
|
|
#include "mozilla/dom/workers/bindings/ServiceWorker.h"
|
2015-04-11 06:19:28 +03:00
|
|
|
|
2015-02-19 04:34:29 +03:00
|
|
|
#include "nsProxyRelease.h"
|
2015-07-27 22:35:28 +03:00
|
|
|
#include "nsContentUtils.h"
|
2015-02-19 04:34:29 +03:00
|
|
|
|
|
|
|
class nsIInterceptedChannel;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2015-05-12 15:09:51 +03:00
|
|
|
class Blob;
|
2015-11-10 09:31:41 +03:00
|
|
|
class MessagePort;
|
2015-05-12 15:09:51 +03:00
|
|
|
class Request;
|
|
|
|
class ResponseOrPromise;
|
2016-03-16 23:44:24 +03:00
|
|
|
|
|
|
|
struct PushEventInit;
|
2015-02-19 04:34:29 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2014-05-14 01:49:36 +04:00
|
|
|
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
|
2016-04-27 12:24:04 +03:00
|
|
|
class ServiceWorkerRegistrationInfo;
|
|
|
|
|
2016-04-26 03:23:21 +03:00
|
|
|
class CancelChannelRunnable final : public Runnable
|
2015-09-04 22:00:24 +03:00
|
|
|
{
|
|
|
|
nsMainThreadPtrHandle<nsIInterceptedChannel> mChannel;
|
2016-04-27 12:24:04 +03:00
|
|
|
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo> mRegistration;
|
2015-09-04 22:00:24 +03:00
|
|
|
const nsresult mStatus;
|
|
|
|
public:
|
|
|
|
CancelChannelRunnable(nsMainThreadPtrHandle<nsIInterceptedChannel>& aChannel,
|
2016-04-27 12:24:04 +03:00
|
|
|
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo>& aRegistration,
|
2015-09-04 22:00:24 +03:00
|
|
|
nsresult aStatus);
|
|
|
|
|
|
|
|
NS_IMETHOD Run() override;
|
|
|
|
};
|
|
|
|
|
2015-10-25 02:55:49 +03:00
|
|
|
class ExtendableEvent : public Event
|
|
|
|
{
|
2015-11-20 00:15:17 +03:00
|
|
|
protected:
|
2015-10-25 02:55:49 +03:00
|
|
|
nsTArray<RefPtr<Promise>> mPromises;
|
|
|
|
|
|
|
|
explicit ExtendableEvent(mozilla::dom::EventTarget* aOwner);
|
|
|
|
~ExtendableEvent() {}
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ExtendableEvent, Event)
|
|
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
|
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
|
|
|
{
|
|
|
|
return mozilla::dom::ExtendableEventBinding::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);
|
2016-08-31 06:16:11 +03:00
|
|
|
e->SetComposed(aOptions.mComposed);
|
2015-10-25 02:55:49 +03:00
|
|
|
return e.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<ExtendableEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const EventInit& aOptions,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCOMPtr<EventTarget> target = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
return Constructor(target, aType, aOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-11-20 00:15:17 +03:00
|
|
|
WaitUntil(JSContext* aCx, Promise& aPromise, ErrorResult& aRv);
|
2015-10-25 02:55:49 +03:00
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
GetPromise();
|
|
|
|
|
|
|
|
virtual ExtendableEvent* AsExtendableEvent() override
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-10-25 03:24:45 +03:00
|
|
|
class FetchEvent final : public ExtendableEvent
|
2015-02-19 04:34:29 +03:00
|
|
|
{
|
|
|
|
nsMainThreadPtrHandle<nsIInterceptedChannel> mChannel;
|
2016-04-27 12:24:04 +03:00
|
|
|
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo> mRegistration;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Request> mRequest;
|
2015-10-01 02:11:03 +03:00
|
|
|
nsCString mScriptSpec;
|
2015-10-30 05:53:25 +03:00
|
|
|
nsCString mPreventDefaultScriptSpec;
|
2015-11-26 02:05:34 +03:00
|
|
|
nsString mClientId;
|
2015-10-30 05:53:25 +03:00
|
|
|
uint32_t mPreventDefaultLineNumber;
|
|
|
|
uint32_t mPreventDefaultColumnNumber;
|
2015-02-19 04:34:29 +03:00
|
|
|
bool mIsReload;
|
|
|
|
bool mWaitToRespond;
|
|
|
|
protected:
|
|
|
|
explicit FetchEvent(EventTarget* aOwner);
|
|
|
|
~FetchEvent();
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2015-10-25 03:24:45 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FetchEvent, ExtendableEvent)
|
2015-10-30 05:53:25 +03:00
|
|
|
|
|
|
|
// Note, we cannot use NS_FORWARD_TO_EVENT because we want a different
|
|
|
|
// PreventDefault(JSContext*) override.
|
|
|
|
NS_FORWARD_NSIDOMEVENT(Event::)
|
2015-02-19 04:34:29 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2015-02-19 04:34:29 +03: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 17:13:33 +03:00
|
|
|
return FetchEventBinding::Wrap(aCx, this, aGivenProto);
|
2015-02-19 04:34:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void PostInit(nsMainThreadPtrHandle<nsIInterceptedChannel>& aChannel,
|
2016-04-27 12:24:04 +03:00
|
|
|
nsMainThreadPtrHandle<ServiceWorkerRegistrationInfo>& aRegistration,
|
2015-10-25 04:42:05 +03:00
|
|
|
const nsACString& aScriptSpec);
|
2015-02-19 04:34:29 +03:00
|
|
|
|
|
|
|
static already_AddRefed<FetchEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const FetchEventInit& aOptions,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
bool
|
|
|
|
WaitToRespond() const
|
|
|
|
{
|
|
|
|
return mWaitToRespond;
|
|
|
|
}
|
|
|
|
|
|
|
|
Request*
|
2016-01-09 06:35:22 +03:00
|
|
|
Request_() const
|
2015-02-19 04:34:29 +03:00
|
|
|
{
|
2016-01-09 06:35:22 +03:00
|
|
|
MOZ_ASSERT(mRequest);
|
2015-02-19 04:34:29 +03:00
|
|
|
return mRequest;
|
|
|
|
}
|
|
|
|
|
2015-11-26 02:05:34 +03:00
|
|
|
void
|
|
|
|
GetClientId(nsAString& aClientId) const
|
|
|
|
{
|
|
|
|
aClientId = mClientId;
|
|
|
|
}
|
|
|
|
|
2015-02-19 04:34:29 +03:00
|
|
|
bool
|
|
|
|
IsReload() const
|
|
|
|
{
|
|
|
|
return mIsReload;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-30 05:53:25 +03:00
|
|
|
RespondWith(JSContext* aCx, Promise& aArg, ErrorResult& aRv);
|
2015-03-20 18:44:20 +03:00
|
|
|
|
2015-02-19 04:34:29 +03:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
ForwardTo(const nsAString& aUrl);
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
Default();
|
2015-10-30 05:53:25 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
PreventDefault(JSContext* aCx) override;
|
|
|
|
|
|
|
|
void
|
|
|
|
ReportCanceled();
|
2015-02-19 04:34:29 +03:00
|
|
|
};
|
2014-05-14 01:49:36 +04:00
|
|
|
|
2015-04-11 06:19:28 +03:00
|
|
|
class PushMessageData final : public nsISupports,
|
|
|
|
public nsWrapperCache
|
|
|
|
{
|
|
|
|
public:
|
2015-07-18 01:17:14 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(PushMessageData)
|
2015-04-11 06:19:28 +03:00
|
|
|
|
2016-03-16 23:44:24 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2015-04-11 06:19:28 +03:00
|
|
|
|
|
|
|
nsISupports* GetParentObject() const {
|
2015-09-17 15:10:42 +03:00
|
|
|
return mOwner;
|
2015-04-11 06:19:28 +03:00
|
|
|
}
|
|
|
|
|
2015-09-17 15:10:42 +03:00
|
|
|
void Json(JSContext* cx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
ErrorResult& aRv);
|
2015-04-11 06:19:28 +03:00
|
|
|
void Text(nsAString& aData);
|
2015-09-17 15:10:42 +03:00
|
|
|
void ArrayBuffer(JSContext* cx, JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<mozilla::dom::Blob> Blob(ErrorResult& aRv);
|
2015-04-11 06:19:28 +03:00
|
|
|
|
2016-04-23 06:54:22 +03:00
|
|
|
PushMessageData(nsISupports* aOwner, nsTArray<uint8_t>&& aBytes);
|
2015-04-11 06:19:28 +03:00
|
|
|
private:
|
2015-09-17 15:10:42 +03:00
|
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
|
|
nsTArray<uint8_t> mBytes;
|
|
|
|
nsString mDecodedText;
|
2015-04-11 06:19:28 +03:00
|
|
|
~PushMessageData();
|
|
|
|
|
2016-08-16 05:12:30 +03:00
|
|
|
nsresult EnsureDecodedText();
|
2015-09-17 15:10:42 +03:00
|
|
|
uint8_t* GetContentsCopy();
|
2015-04-11 06:19:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class PushEvent final : public ExtendableEvent
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<PushMessageData> mData;
|
2015-04-11 06:19:28 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit PushEvent(mozilla::dom::EventTarget* aOwner);
|
|
|
|
~PushEvent() {}
|
|
|
|
|
|
|
|
public:
|
2015-09-17 15:10:42 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(PushEvent, ExtendableEvent)
|
2015-04-11 06:19:28 +03:00
|
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
|
2016-03-16 23:44:24 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2015-04-11 06:19:28 +03:00
|
|
|
|
|
|
|
static already_AddRefed<PushEvent>
|
|
|
|
Constructor(mozilla::dom::EventTarget* aOwner,
|
|
|
|
const nsAString& aType,
|
2015-09-17 15:10:42 +03:00
|
|
|
const PushEventInit& aOptions,
|
|
|
|
ErrorResult& aRv);
|
2015-04-11 06:19:28 +03:00
|
|
|
|
|
|
|
static already_AddRefed<PushEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const PushEventInit& aOptions,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCOMPtr<EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
|
2015-09-17 15:10:42 +03:00
|
|
|
return Constructor(owner, aType, aOptions, aRv);
|
2015-04-11 06:19:28 +03:00
|
|
|
}
|
|
|
|
|
2015-10-01 02:11:03 +03:00
|
|
|
PushMessageData*
|
|
|
|
GetData() const
|
2015-04-11 06:19:28 +03:00
|
|
|
{
|
2015-09-17 15:10:42 +03:00
|
|
|
return mData;
|
2015-04-11 06:19:28 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-10 09:31:41 +03:00
|
|
|
class ExtendableMessageEvent final : public ExtendableEvent
|
|
|
|
{
|
|
|
|
JS::Heap<JS::Value> mData;
|
|
|
|
nsString mOrigin;
|
|
|
|
nsString mLastEventId;
|
|
|
|
RefPtr<ServiceWorkerClient> mClient;
|
|
|
|
RefPtr<ServiceWorker> mServiceWorker;
|
|
|
|
RefPtr<MessagePort> mMessagePort;
|
2016-10-13 16:19:24 +03:00
|
|
|
nsTArray<RefPtr<MessagePort>> mPorts;
|
|
|
|
bool mPortsSet;
|
2015-11-10 09:31:41 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
explicit ExtendableMessageEvent(EventTarget* aOwner);
|
|
|
|
~ExtendableMessageEvent();
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(ExtendableMessageEvent,
|
|
|
|
ExtendableEvent)
|
|
|
|
|
|
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
|
|
|
|
virtual JSObject* WrapObjectInternal(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
|
|
|
{
|
|
|
|
return mozilla::dom::ExtendableMessageEventBinding::Wrap(aCx, this, aGivenProto);
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<ExtendableMessageEvent>
|
|
|
|
Constructor(mozilla::dom::EventTarget* aOwner,
|
|
|
|
const nsAString& aType,
|
|
|
|
const ExtendableMessageEventInit& aOptions,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
static already_AddRefed<ExtendableMessageEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const ExtendableMessageEventInit& aOptions,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
void GetData(JSContext* aCx, JS::MutableHandle<JS::Value> aData,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
void GetSource(Nullable<OwningClientOrServiceWorkerOrMessagePort>& aValue) const;
|
|
|
|
|
|
|
|
NS_IMETHOD GetOrigin(nsAString& aOrigin)
|
|
|
|
{
|
|
|
|
aOrigin = mOrigin;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD GetLastEventId(nsAString& aLastEventId)
|
|
|
|
{
|
|
|
|
aLastEventId = mLastEventId;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2016-10-13 16:19:24 +03:00
|
|
|
void GetPorts(Nullable<nsTArray<RefPtr<MessagePort>>>& aPorts);
|
2015-11-10 09:31:41 +03:00
|
|
|
|
2016-10-13 16:19:24 +03:00
|
|
|
void SetPorts(nsTArray<RefPtr<MessagePort>>&& aPorts);
|
2015-11-10 09:31:41 +03:00
|
|
|
|
|
|
|
void SetSource(ServiceWorkerClient* aClient);
|
|
|
|
|
|
|
|
void SetSource(ServiceWorker* aServiceWorker);
|
|
|
|
};
|
|
|
|
|
2014-05-14 01:49:36 +04:00
|
|
|
END_WORKERS_NAMESPACE
|
2015-11-10 09:31:41 +03:00
|
|
|
|
2014-05-14 01:49:36 +04:00
|
|
|
#endif /* mozilla_dom_workers_serviceworkerevents_h__ */
|