-
Notifications
You must be signed in to change notification settings - Fork 51
feat(common): use addEventListener
instead of onabort
in async utils onAbortPromise
#645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
douglascayers
wants to merge
10
commits into
powersync-ja:main
from
douglascayers:common-async-onabortpromise
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c740eb1
Refactor onAbortPromise to use addEventListener
douglascayers 599a603
Add changeset entry
douglascayers a0b8b61
Update .changeset/moody-hats-sleep.md
douglascayers 3808477
Remove test that doesn't test the SDK. The logic is explained in the …
douglascayers 01e3403
Avoid memory leaks by removing event listener after race.
douglascayers fcd53c9
Update changeset entry
douglascayers 7a6407d
Avoid memory leak by ensuring abort handler is removed
douglascayers d08cc08
Consolidate logic by calling abortHandler() if signal is already aborted
douglascayers f9561d2
Remove unused import of 'abort'
douglascayers 74a9a95
Merge remote-tracking branch 'origin/main' into common-async-onabortp…
douglascayers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
--- | ||
'@powersync/common': patch | ||
--- | ||
|
||
Use addEventListener instead of overwriting the onabort property, preventing interference with outside users also setting the property on the same signal. Remove event listener when race settles to avoid memory leak. |
This file contains hidden or 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 hidden or 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 hidden or 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,74 @@ | ||
import { describe, expect, it, vi } from 'vitest'; | ||
import { resolveEarlyOnAbort } from '../../src/utils/async'; | ||
|
||
describe('resolveEarlyOnAbort', () => { | ||
it('should resolve early when signal is aborted', async () => { | ||
const controller = new AbortController(); | ||
|
||
const slowPromise = new Promise<string>((resolve) => { | ||
setTimeout(() => resolve('completed'), 100); | ||
}); | ||
|
||
const racePromise = resolveEarlyOnAbort(slowPromise, controller.signal); | ||
|
||
// Abort after a short delay | ||
setTimeout(() => controller.abort(), 10); | ||
|
||
const result = await racePromise; | ||
expect(result).toEqual({ aborted: true }); | ||
}); | ||
|
||
it('should resolve immediately if signal is already aborted', async () => { | ||
const controller = new AbortController(); | ||
controller.abort(); // Abort before creating the race | ||
|
||
const slowPromise = new Promise<string>((resolve) => { | ||
setTimeout(() => resolve('completed'), 100); | ||
}); | ||
|
||
const result = await resolveEarlyOnAbort(slowPromise, controller.signal); | ||
expect(result).toEqual({ aborted: true }); | ||
}); | ||
|
||
it('should resolve with the result if the promise resolves before the signal is aborted', async () => { | ||
const controller = new AbortController(); | ||
|
||
const slowPromise = new Promise<string>((resolve) => { | ||
setTimeout(() => resolve('completed'), 100); | ||
}); | ||
|
||
const result = await resolveEarlyOnAbort(slowPromise, controller.signal); | ||
expect(result).toEqual({ result: 'completed', aborted: false }); | ||
}); | ||
|
||
it('should show that resolveEarlyOnAbort does not interfere with onabort property or other event listeners', async () => { | ||
const controller = new AbortController(); | ||
let onabortCalled = false; | ||
let eventListenerCalled = false; | ||
|
||
// Set onabort property | ||
controller.signal.onabort = () => { | ||
onabortCalled = true; | ||
}; | ||
|
||
// Add another event listener | ||
controller.signal.addEventListener('abort', () => { | ||
eventListenerCalled = true; | ||
}); | ||
|
||
const slowPromise = new Promise<string>((resolve) => { | ||
setTimeout(() => resolve('completed'), 100); | ||
}); | ||
|
||
const racePromise = resolveEarlyOnAbort(slowPromise, controller.signal); | ||
|
||
// Abort after a short delay | ||
setTimeout(() => controller.abort(), 10); | ||
|
||
const result = await racePromise; | ||
|
||
expect(result).toEqual({ aborted: true }); | ||
expect(onabortCalled).toBe(true); | ||
expect(eventListenerCalled).toBe(true); | ||
}); | ||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me, I just think we can simplify the implementation a bit because we only care about
Promise<void>
: