-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1679204 - Consider to add signal to addEventListener, r=edgar
This passes the tests which are in web-platform-tests/wpt#26472 Because of complications in #include handling, AbortFollower needs to be in a different header file than AbortSignal, yet AbortSignalImpl needs to be available when AbortFollower is used. Another option would have been to make DOMEventTargetHelper.h a bit different and uninline some hot methods there or move them to another file, but that would have been equally bad and Abort* is used way less often. AbortFollower and AbortSignalImpl are thus just moved to a new header. Memory management is such that Listener in EventListenerManager owns the possible ListenerSignalFollower instance which follows the relevant signal. In order to be able remove event listener, ListenerSignalFollower has many similar fields as Listener. ListenerSignalFollower can't easily have just a pointer to Listener* since Listener isn't stored as a pointer in EventListenerManager. ListenerSignalFollower is cycle collectable so that Listener->ListenerSignalFollower can be traversed/unlinked and also strong pointers in ListenerSignalFollower itself can be traversed/unlinked. There is an XXX in the .webidl, since nullability of signal is unclear in the spec pr. Whether or not it ends up being nullable shouldn't change the actual C++ implementation. Differential Revision: https://phabricator.services.mozilla.com/D97938
- Loading branch information
Olli Pettay
authored and
Olli Pettay
committed
Dec 14, 2020
1 parent
246f677
commit ff1b3ed
Showing
8 changed files
with
195 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* -*- 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_AbortFollower_h | ||
#define mozilla_dom_AbortFollower_h | ||
|
||
#include "nsISupportsImpl.h" | ||
#include "nsTObserverArray.h" | ||
|
||
namespace mozilla { | ||
namespace dom { | ||
|
||
class AbortSignal; | ||
class AbortSignalImpl; | ||
|
||
// This class must be implemented by objects who want to follow an | ||
// AbortSignalImpl. | ||
class AbortFollower : public nsISupports { | ||
public: | ||
virtual void RunAbortAlgorithm() = 0; | ||
|
||
void Follow(AbortSignalImpl* aSignal); | ||
|
||
void Unfollow(); | ||
|
||
bool IsFollowing() const; | ||
|
||
AbortSignalImpl* Signal() const { return mFollowingSignal; } | ||
|
||
protected: | ||
// Subclasses of this class must call these Traverse and Unlink functions | ||
// during corresponding cycle collection operations. | ||
static void Traverse(AbortFollower* aFollower, | ||
nsCycleCollectionTraversalCallback& cb); | ||
|
||
static void Unlink(AbortFollower* aFollower) { aFollower->Unfollow(); } | ||
|
||
virtual ~AbortFollower(); | ||
|
||
friend class AbortSignalImpl; | ||
|
||
RefPtr<AbortSignalImpl> mFollowingSignal; | ||
}; | ||
|
||
class AbortSignalImpl : public nsISupports { | ||
public: | ||
explicit AbortSignalImpl(bool aAborted); | ||
|
||
bool Aborted() const; | ||
|
||
virtual void SignalAbort(); | ||
|
||
protected: | ||
// Subclasses of this class must call these Traverse and Unlink functions | ||
// during corresponding cycle collection operations. | ||
static void Traverse(AbortSignalImpl* aSignal, | ||
nsCycleCollectionTraversalCallback& cb); | ||
|
||
static void Unlink(AbortSignalImpl* aSignal) { | ||
// To be filled in shortly. | ||
} | ||
|
||
virtual ~AbortSignalImpl() = default; | ||
|
||
private: | ||
friend class AbortFollower; | ||
|
||
// Raw pointers. |AbortFollower::Follow| adds to this array, and | ||
// |AbortFollower::Unfollow| (also callbed by the destructor) will remove | ||
// from this array. Finally, calling |SignalAbort()| will (after running all | ||
// abort algorithms) empty this and make all contained followers |Unfollow()|. | ||
nsTObserverArray<AbortFollower*> mFollowers; | ||
|
||
bool mAborted; | ||
}; | ||
|
||
} // namespace dom | ||
} // namespace mozilla | ||
|
||
#endif // mozilla_dom_AbortFollower_h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.