diff options
author | Moonchild <moonchild@palemoon.org> | 2022-09-01 20:56:43 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-09-01 20:56:43 +0000 |
commit | 4078c2dd1e3798a283594b84de68b3ded1e69898 (patch) | |
tree | a6b8fcecbd2978397238e0f6fc89acc2cc9769d3 /dom/base/EventSource.h | |
parent | 6638cc1e6d64dcba9c46bce48080fc17f1405f1e (diff) | |
parent | 860800629b179e2598801749080911607334e678 (diff) | |
download | uxp-4078c2dd1e3798a283594b84de68b3ded1e69898.tar.gz |
Merge pull request 'Support EventSource in workers' (#1997) from dbsoft/UXP:1990fix2 into master
Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/1997
Diffstat (limited to 'dom/base/EventSource.h')
-rw-r--r-- | dom/base/EventSource.h | 218 |
1 files changed, 39 insertions, 179 deletions
diff --git a/dom/base/EventSource.h b/dom/base/EventSource.h index b22cebd47a..e36afac1d6 100644 --- a/dom/base/EventSource.h +++ b/dom/base/EventSource.h @@ -35,221 +35,81 @@ namespace dom { struct EventSourceInit; +class EventSourceImpl; + class EventSource final : public DOMEventTargetHelper - , public nsIObserver - , public nsIStreamListener - , public nsIChannelEventSink - , public nsIInterfaceRequestor - , public nsSupportsWeakReference { + friend class EventSourceImpl; public: - explicit EventSource(nsPIDOMWindowInner* aOwnerWindow); NS_DECL_ISUPPORTS_INHERITED - NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_INHERITED( - EventSource, DOMEventTargetHelper) + NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(EventSource, DOMEventTargetHelper) + virtual bool IsCertainlyAliveForCC() const override; - NS_DECL_NSIOBSERVER - NS_DECL_NSISTREAMLISTENER - NS_DECL_NSIREQUESTOBSERVER - NS_DECL_NSICHANNELEVENTSINK - NS_DECL_NSIINTERFACEREQUESTOR + // EventTarget + void DisconnectFromOwner() override + { + DOMEventTargetHelper::DisconnectFromOwner(); + Close(); + } - // nsWrapperCache - virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override; + JSObject* WrapObject(JSContext* aCx, + JS::Handle<JSObject*> aGivenProto) override; // WebIDL - nsPIDOMWindowInner* - GetParentObject() const - { - return GetOwner(); - } static already_AddRefed<EventSource> Constructor(const GlobalObject& aGlobal, const nsAString& aURL, - const EventSourceInit& aEventSourceInitDict, - ErrorResult& aRv); + const EventSourceInit& aEventSourceInitDict, ErrorResult& aRv); void GetUrl(nsAString& aURL) const { + AssertIsOnTargetThread(); aURL = mOriginalURL; } + bool WithCredentials() const { + AssertIsOnTargetThread(); return mWithCredentials; } - enum { - CONNECTING = 0U, - OPEN = 1U, - CLOSED = 2U - }; uint16_t ReadyState() const { + AssertIsOnTargetThread(); return mReadyState; } IMPL_EVENT_HANDLER(open) IMPL_EVENT_HANDLER(message) IMPL_EVENT_HANDLER(error) - void Close(); - virtual void DisconnectFromOwner() override; + void Close(); -protected: +private: + EventSource(nsPIDOMWindowInner* aOwnerWindow, bool aWithCredentials); virtual ~EventSource(); + // prevent bad usage + EventSource(const EventSource& x) = delete; + EventSource& operator=(const EventSource& x) = delete; - MOZ_IS_CLASS_INIT - nsresult Init(nsISupports* aOwner, - const nsAString& aURL, - bool aWithCredentials); - - nsresult GetBaseURI(nsIURI **aBaseURI); - - void SetupHttpChannel(); - nsresult SetupReferrerPolicy(); - nsresult InitChannelAndRequestEventSource(); - nsresult ResetConnection(); - nsresult DispatchFailConnection(); - nsresult SetReconnectionTimeout(); - - void AnnounceConnection(); - void DispatchAllMessageEvents(); - void ReestablishConnection(); - void FailConnection(); - - nsresult Thaw(); - nsresult Freeze(); - - static void TimerCallback(nsITimer *aTimer, void *aClosure); - - nsresult PrintErrorOnConsole(const char *aBundleURI, - const char16_t *aError, - const char16_t **aFormatStrings, - uint32_t aFormatStringsLen); - nsresult ConsoleError(); - - static nsresult StreamReaderFunc(nsIInputStream *aInputStream, - void *aClosure, - const char *aFromRawSegment, - uint32_t aToOffset, - uint32_t aCount, - uint32_t *aWriteCount); - nsresult SetFieldAndClear(); - nsresult ClearFields(); - nsresult ResetEvent(); - nsresult DispatchCurrentMessageEvent(); - nsresult ParseCharacter(char16_t aChr); - nsresult CheckHealthOfRequestCallback(nsIRequest *aRequestCallback); - nsresult OnRedirectVerifyCallback(nsresult result); - - nsCOMPtr<nsIURI> mSrc; - - nsString mLastEventID; - uint32_t mReconnectionTime; // in ms - - struct Message { - nsString mEventName; - nsString mLastEventID; - nsString mData; - }; - nsDeque mMessagesToDispatch; - Message mCurrentMessage; - - /** - * A simple state machine used to manage the event-source's line buffer - * - * PARSE_STATE_OFF -> PARSE_STATE_BEGIN_OF_STREAM - * - * PARSE_STATE_BEGIN_OF_STREAM -> PARSE_STATE_BOM_WAS_READ | - * PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE | - * PARSE_STATE_COMMENT | - * PARSE_STATE_FIELD_NAME - * - * PARSE_STATE_BOM_WAS_READ -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE | - * PARSE_STATE_COMMENT | - * PARSE_STATE_FIELD_NAME - * - * PARSE_STATE_CR_CHAR -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_COMMENT | - * PARSE_STATE_FIELD_NAME | - * PARSE_STATE_BEGIN_OF_LINE - * - * PARSE_STATE_COMMENT -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE - * - * PARSE_STATE_FIELD_NAME -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE | - * PARSE_STATE_FIRST_CHAR_OF_FIELD_VALUE - * - * PARSE_STATE_FIRST_CHAR_OF_FIELD_VALUE -> PARSE_STATE_FIELD_VALUE | - * PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE - * - * PARSE_STATE_FIELD_VALUE -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_BEGIN_OF_LINE - * - * PARSE_STATE_BEGIN_OF_LINE -> PARSE_STATE_CR_CHAR | - * PARSE_STATE_COMMENT | - * PARSE_STATE_FIELD_NAME | - * PARSE_STATE_BEGIN_OF_LINE - * - * Whenever the parser find an empty line or the end-of-file - * it dispatches the stacked event. - * - */ - enum ParserStatus { - PARSE_STATE_OFF, - PARSE_STATE_BEGIN_OF_STREAM, - PARSE_STATE_BOM_WAS_READ, - PARSE_STATE_CR_CHAR, - PARSE_STATE_COMMENT, - PARSE_STATE_FIELD_NAME, - PARSE_STATE_FIRST_CHAR_OF_FIELD_VALUE, - PARSE_STATE_FIELD_VALUE, - PARSE_STATE_BEGIN_OF_LINE - }; - ParserStatus mStatus; - - bool mFrozen; - bool mErrorLoadOnRedirect; - bool mGoingToDispatchAllMessages; - bool mWithCredentials; - bool mWaitingForOnStopRequest; - - // used while reading the input streams - nsCOMPtr<nsIUnicodeDecoder> mUnicodeDecoder; - nsresult mLastConvertionResult; - nsString mLastFieldName; - nsString mLastFieldValue; - - nsCOMPtr<nsILoadGroup> mLoadGroup; - - nsCOMPtr<nsIHttpChannel> mHttpChannel; + void AssertIsOnTargetThread() const + { + MOZ_ASSERT(NS_IsMainThread() == mIsMainThread); + } - nsCOMPtr<nsITimer> mTimer; + nsresult CreateAndDispatchSimpleEvent(const nsAString& aName); - uint16_t mReadyState; + // Raw pointer because this EventSourceImpl is created, managed and destroyed + // by EventSource. + EventSourceImpl* mImpl; nsString mOriginalURL; + uint16_t mReadyState; + bool mWithCredentials; + bool mIsMainThread; + // This is used to keep EventSourceImpl instance when there is a connection. + bool mKeepingAlive; - nsCOMPtr<nsIPrincipal> mPrincipal; - nsString mOrigin; - - // Event Source owner information: - // - the script file name - // - source code line number and column number where the Event Source object - // was constructed. - // - the ID of the inner window where the script lives. Note that this may not - // be the same as the Event Source owner window. - // These attributes are used for error reporting. - nsString mScriptFile; - uint32_t mScriptLine; - uint32_t mScriptColumn; - uint64_t mInnerWindowID; - -private: - EventSource(const EventSource& x); // prevent bad usage - EventSource& operator=(const EventSource& x); + void UpdateMustKeepAlive(); + void UpdateDontKeepAlive(); }; } // namespace dom |