Skip to content

Commit

Permalink
fs: do not emit 'stop' watch event synchronously
Browse files Browse the repository at this point in the history
Emits 'stop' event for fs.watchFile on process.nextTick
to fix 'maximum call stack size exceeded' error when
`stop` is called synchronously after listener is attached.

PR-URL: nodejs#8524
Fixes: nodejs#8421
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: Ilkka Myller <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Yorkie Liu <[email protected]>
  • Loading branch information
claudiorodriguez authored and imyller committed Sep 23, 2016
1 parent 0f2f8ef commit 1b97774
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1393,6 +1393,10 @@ fs.watch = function(filename, options, listener) {

// Stat Change Watchers

function emitStop(self) {
self.emit('stop');
}

function StatWatcher() {
EventEmitter.call(this);

Expand All @@ -1413,7 +1417,7 @@ function StatWatcher() {
};

this._handle.onstop = function() {
self.emit('stop');
process.nextTick(emitStop, self);
};
}
util.inherits(StatWatcher, EventEmitter);
Expand Down
19 changes: 19 additions & 0 deletions test/parallel/test-fs-watch-stop-async.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const fs = require('fs');

const watch = fs.watchFile(__filename, () => {});
let triggered;
const listener = common.mustCall(() => {
triggered = true;
});

triggered = false;
watch.once('stop', listener); // Should trigger.
watch.stop();
assert.equal(triggered, false);
setImmediate(() => {
assert.equal(triggered, true);
watch.removeListener('stop', listener);
});
9 changes: 9 additions & 0 deletions test/parallel/test-fs-watch-stop-sync.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';
require('../common');
const assert = require('assert');
const fs = require('fs');

const watch = fs.watchFile(__filename, () => {});
watch.once('stop', assert.fail); // Should not trigger.
watch.stop();
watch.removeListener('stop', assert.fail);

0 comments on commit 1b97774

Please sign in to comment.