/* -*- 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_workerscope_h__ #define mozilla_dom_workerscope_h__ #include "mozilla/Attributes.h" #include "mozilla/dom/WorkerCommon.h" #include "mozilla/DOMEventTargetHelper.h" #include "mozilla/dom/DebuggerNotificationManager.h" #include "mozilla/dom/Headers.h" #include "mozilla/dom/RequestBinding.h" #include "nsWeakReference.h" #include "mozilla/dom/ImageBitmapSource.h" #ifdef XP_WIN # undef PostMessage #endif namespace mozilla { namespace dom { class AnyCallback; struct ChannelPixelLayout; class ClientInfo; class Clients; class ClientState; class Console; class Crypto; class Function; class IDBFactory; enum class ImageBitmapFormat : uint8_t; class Performance; struct PostMessageOptions; class Promise; class RequestOrUSVString; class WorkerLocation; class WorkerNavigator; class WorkerPrivate; enum class CallerType : uint32_t; namespace cache { class CacheStorage; } // namespace cache class WorkerGlobalScope : public DOMEventTargetHelper, public nsIGlobalObject, public nsSupportsWeakReference { typedef mozilla::dom::IDBFactory IDBFactory; RefPtr mConsole; RefPtr mCrypto; RefPtr mLocation; RefPtr mNavigator; RefPtr mPerformance; RefPtr mIndexedDB; RefPtr mCacheStorage; nsCOMPtr mSerialEventTarget; RefPtr mDebuggerNotificationManager; uint32_t mWindowInteractionsAllowed; protected: WorkerPrivate* mWorkerPrivate; explicit WorkerGlobalScope(WorkerPrivate* aWorkerPrivate); virtual ~WorkerGlobalScope(); MOZ_CAN_RUN_SCRIPT int32_t SetTimeoutOrInterval(JSContext* aCx, Function& aHandler, const int32_t aTimeout, const Sequence& aArguments, bool aIsInterval, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT int32_t SetTimeoutOrInterval(JSContext* aCx, const nsAString& aHandler, const int32_t aTimeout, bool aIsInterval, ErrorResult& aRv); public: virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) override; virtual bool WrapGlobalObject(JSContext* aCx, JS::MutableHandle aReflector) = 0; JSObject* GetGlobalJSObject() override { return GetWrapper(); } JSObject* GetGlobalJSObjectPreserveColor() const override { return GetWrapperPreserveColor(); } NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(WorkerGlobalScope, DOMEventTargetHelper) WorkerGlobalScope* Self() { return this; } void NoteTerminating(); already_AddRefed GetConsole(ErrorResult& aRv); Console* GetConsoleIfExists() const { return mConsole; } Crypto* GetCrypto(ErrorResult& aError); already_AddRefed Location(); already_AddRefed Navigator(); already_AddRefed GetExistingNavigator() const; OnErrorEventHandlerNonNull* GetOnerror(); void SetOnerror(OnErrorEventHandlerNonNull* aHandler); void ImportScripts(JSContext* aCx, const Sequence& aScriptURLs, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT int32_t SetTimeout(JSContext* aCx, Function& aHandler, const int32_t aTimeout, const Sequence& aArguments, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT int32_t SetTimeout(JSContext* aCx, const nsAString& aHandler, const int32_t aTimeout, const Sequence& /* unused */, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT void ClearTimeout(int32_t aHandle); MOZ_CAN_RUN_SCRIPT int32_t SetInterval(JSContext* aCx, Function& aHandler, const int32_t aTimeout, const Sequence& aArguments, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT int32_t SetInterval(JSContext* aCx, const nsAString& aHandler, const int32_t aTimeout, const Sequence& /* unused */, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT void ClearInterval(int32_t aHandle); void GetOrigin(nsAString& aOrigin) const; bool CrossOriginIsolated() const; void Atob(const nsAString& aAtob, nsAString& aOutput, ErrorResult& aRv) const; void Btoa(const nsAString& aBtoa, nsAString& aOutput, ErrorResult& aRv) const; IMPL_EVENT_HANDLER(online) IMPL_EVENT_HANDLER(offline) IMPL_EVENT_HANDLER(rejectionhandled) IMPL_EVENT_HANDLER(unhandledrejection) void Dump(const Optional& aString) const; Performance* GetPerformance(); Performance* GetPerformanceIfExists() const { return mPerformance; } static bool IsInAutomation(JSContext* aCx, JSObject* /* unused */); void GetJSTestingFunctions(JSContext* aCx, JS::MutableHandle aFunctions, ErrorResult& aRv); already_AddRefed Fetch(const RequestOrUSVString& aInput, const RequestInit& aInit, CallerType aCallerType, ErrorResult& aRv); already_AddRefed GetIndexedDB(ErrorResult& aErrorResult); already_AddRefed GetCaches(ErrorResult& aRv); bool IsSecureContext() const; already_AddRefed CreateImageBitmap(JSContext* aCx, const ImageBitmapSource& aImage, ErrorResult& aRv); already_AddRefed CreateImageBitmap(JSContext* aCx, const ImageBitmapSource& aImage, int32_t aSx, int32_t aSy, int32_t aSw, int32_t aSh, ErrorResult& aRv); bool WindowInteractionAllowed() const { return mWindowInteractionsAllowed > 0; } void AllowWindowInteraction() { mWindowInteractionsAllowed++; } void ConsumeWindowInteraction() { MOZ_ASSERT(mWindowInteractionsAllowed > 0); mWindowInteractionsAllowed--; } // Override DispatchTrait API to target the worker thread. Dispatch may // return failure if the worker thread is not alive. nsresult Dispatch(TaskCategory aCategory, already_AddRefed&& aRunnable) override; nsISerialEventTarget* EventTargetFor(TaskCategory aCategory) const override; AbstractThread* AbstractMainThreadFor(TaskCategory aCategory) override; mozilla::dom::DebuggerNotificationManager* GetOrCreateDebuggerNotificationManager() override; mozilla::dom::DebuggerNotificationManager* GetExistingDebuggerNotificationManager() override; mozilla::Maybe GetDebuggerNotificationType() const override { return mozilla::Some( mozilla::dom::EventCallbackDebuggerNotificationType::Global); } Maybe GetClientInfo() const override; Maybe GetClientState() const; Maybe GetController() const override; RefPtr GetServiceWorkerRegistration( const ServiceWorkerRegistrationDescriptor& aDescriptor) const override; RefPtr GetOrCreateServiceWorkerRegistration( const ServiceWorkerRegistrationDescriptor& aDescriptor) override; uint64_t WindowID() const; void FirstPartyStorageAccessGranted(); }; class DedicatedWorkerGlobalScope final : public WorkerGlobalScope { const nsString mName; ~DedicatedWorkerGlobalScope() {} public: DedicatedWorkerGlobalScope(WorkerPrivate* aWorkerPrivate, const nsString& aName); virtual bool WrapGlobalObject( JSContext* aCx, JS::MutableHandle aReflector) override; void GetName(DOMString& aName) const { aName.AsAString() = mName; } void PostMessage(JSContext* aCx, JS::Handle aMessage, const Sequence& aTransferable, ErrorResult& aRv); void PostMessage(JSContext* aCx, JS::Handle aMessage, const PostMessageOptions& aOptions, ErrorResult& aRv); void Close(); IMPL_EVENT_HANDLER(message) IMPL_EVENT_HANDLER(messageerror) }; class SharedWorkerGlobalScope final : public WorkerGlobalScope { const nsString mName; ~SharedWorkerGlobalScope() {} public: SharedWorkerGlobalScope(WorkerPrivate* aWorkerPrivate, const nsString& aName); virtual bool WrapGlobalObject( JSContext* aCx, JS::MutableHandle aReflector) override; void GetName(DOMString& aName) const { aName.AsAString() = mName; } void Close(); IMPL_EVENT_HANDLER(connect) }; class ServiceWorkerGlobalScope final : public WorkerGlobalScope { const nsString mScope; RefPtr mClients; RefPtr mRegistration; ~ServiceWorkerGlobalScope(); public: NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ServiceWorkerGlobalScope, WorkerGlobalScope) IMPL_EVENT_HANDLER(notificationclick) IMPL_EVENT_HANDLER(notificationclose) ServiceWorkerGlobalScope( WorkerPrivate* aWorkerPrivate, const ServiceWorkerRegistrationDescriptor& aRegistrationDescriptor); virtual bool WrapGlobalObject( JSContext* aCx, JS::MutableHandle aReflector) override; void GetScope(nsString& aScope) const { aScope = mScope; } already_AddRefed GetClients(); ServiceWorkerRegistration* Registration(); already_AddRefed SkipWaiting(ErrorResult& aRv); IMPL_EVENT_HANDLER(activate) IMPL_EVENT_HANDLER(install) IMPL_EVENT_HANDLER(message) IMPL_EVENT_HANDLER(messageerror) IMPL_EVENT_HANDLER(push) IMPL_EVENT_HANDLER(pushsubscriptionchange) EventHandlerNonNull* GetOnfetch(); void SetOnfetch(mozilla::dom::EventHandlerNonNull* aCallback); void EventListenerAdded(nsAtom* aType) override; }; class WorkerDebuggerGlobalScope final : public DOMEventTargetHelper, public nsIGlobalObject { WorkerPrivate* mWorkerPrivate; RefPtr mConsole; nsCOMPtr mSerialEventTarget; public: explicit WorkerDebuggerGlobalScope(WorkerPrivate* aWorkerPrivate); NS_DECL_ISUPPORTS_INHERITED NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED( WorkerDebuggerGlobalScope, DOMEventTargetHelper) virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) override { MOZ_CRASH("Shouldn't get here!"); } virtual bool WrapGlobalObject(JSContext* aCx, JS::MutableHandle aReflector); JSObject* GetGlobalJSObject(void) override { return GetWrapper(); } JSObject* GetGlobalJSObjectPreserveColor(void) const override { return GetWrapperPreserveColor(); } void GetGlobal(JSContext* aCx, JS::MutableHandle aGlobal, ErrorResult& aRv); void CreateSandbox(JSContext* aCx, const nsAString& aName, JS::Handle aPrototype, JS::MutableHandle aResult, ErrorResult& aRv); void LoadSubScript(JSContext* aCx, const nsAString& aURL, const Optional>& aSandbox, ErrorResult& aRv); MOZ_CAN_RUN_SCRIPT void EnterEventLoop(); void LeaveEventLoop(); void PostMessage(const nsAString& aMessage); IMPL_EVENT_HANDLER(message) IMPL_EVENT_HANDLER(messageerror) void SetImmediate(Function& aHandler, ErrorResult& aRv); void ReportError(JSContext* aCx, const nsAString& aMessage); void RetrieveConsoleEvents(JSContext* aCx, nsTArray& aEvents, ErrorResult& aRv); void SetConsoleEventHandler(JSContext* aCx, AnyCallback* aHandler, ErrorResult& aRv); already_AddRefed GetConsole(ErrorResult& aRv); Console* GetConsoleIfExists() const { return mConsole; } void Dump(JSContext* aCx, const Optional& aString) const; void Atob(const nsAString& aAtob, nsAString& aOutput, ErrorResult& aRv) const; void Btoa(const nsAString& aBtoa, nsAString& aOutput, ErrorResult& aRv) const; // Override DispatchTrait API to target the worker thread. Dispatch may // return failure if the worker thread is not alive. nsresult Dispatch(TaskCategory aCategory, already_AddRefed&& aRunnable) override; nsISerialEventTarget* EventTargetFor(TaskCategory aCategory) const override; AbstractThread* AbstractMainThreadFor(TaskCategory aCategory) override; private: virtual ~WorkerDebuggerGlobalScope(); }; } // namespace dom } // namespace mozilla inline nsISupports* ToSupports(mozilla::dom::WorkerGlobalScope* aScope) { return static_cast(aScope); } #endif /* mozilla_dom_workerscope_h__ */