-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
watch: cancel pending restart on shutdown #63383
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
Open
trivikr
wants to merge
4
commits into
nodejs:main
Choose a base branch
from
trivikr:watch-hang-completed-child-terminate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+106
−7
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
603c522
watch: cancel pending restart on shutdown
trivikr 7cbef16
test: remove custom timeout from watch mode exit check
trivikr 94db4b1
test: avoid real debounce wait in files watcher clear test
trivikr 5bf517b
test: clarify files watcher debounce timer interception
trivikr 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
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,69 @@ | ||
| // Flags: --expose-internals | ||
| import * as common from '../common/index.mjs'; | ||
| import tmpdir from '../common/tmpdir.js'; | ||
| import assert from 'node:assert'; | ||
| import { writeFileSync } from 'node:fs'; | ||
| import { createRequire } from 'node:module'; | ||
|
|
||
| if (common.isIBMi) | ||
| common.skip('IBMi does not support `fs.watch()`'); | ||
|
|
||
| const require = createRequire(import.meta.url); | ||
| const timers = require('node:timers'); | ||
| const originalSetTimeout = timers.setTimeout; | ||
| const originalClearTimeout = timers.clearTimeout; | ||
| const { promise, resolve } = Promise.withResolvers(); | ||
| const debounce = 1000; | ||
| let debounceTimer; | ||
| let debounceTimerCallback; | ||
| let debounceTimerCleared = false; | ||
|
|
||
| timers.setTimeout = function(fn, delay, ...args) { | ||
| // Only intercept the FilesWatcher debounce timer configured below. | ||
| if (delay === debounce) { | ||
| const timer = { | ||
| __proto__: null, | ||
| ref() { return this; }, | ||
| unref() { return this; }, | ||
| }; | ||
| debounceTimer = timer; | ||
| debounceTimerCallback = () => { | ||
| if (!debounceTimerCleared) { | ||
| fn(...args); | ||
| } | ||
| }; | ||
| resolve(); | ||
| return timer; | ||
| } | ||
| return originalSetTimeout(fn, delay, ...args); | ||
| }; | ||
|
|
||
| timers.clearTimeout = function(timer) { | ||
| if (timer === debounceTimer) { | ||
| debounceTimerCleared = true; | ||
| } | ||
| return originalClearTimeout(timer); | ||
| }; | ||
|
|
||
| try { | ||
| const { FilesWatcher } = require('internal/watch_mode/files_watcher'); | ||
|
|
||
| tmpdir.refresh(); | ||
| const file = tmpdir.resolve('watcher-clear.js'); | ||
| writeFileSync(file, '0'); | ||
|
|
||
| const watcher = new FilesWatcher({ debounce, mode: 'all' }); | ||
| watcher.on('changed', common.mustNotCall()); | ||
| watcher.watchPath(file, false); | ||
|
|
||
| const interval = setInterval(() => writeFileSync(file, `${Date.now()}`), 50); | ||
| await promise; | ||
| clearInterval(interval); | ||
|
|
||
| watcher.clear(); | ||
| assert.strictEqual(debounceTimerCleared, true); | ||
| debounceTimerCallback(); | ||
| } finally { | ||
| timers.setTimeout = originalSetTimeout; | ||
| timers.clearTimeout = originalClearTimeout; | ||
| } | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.