Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
repl: make ^D emit an 'end' event on the readline instance
Browse files Browse the repository at this point in the history
Also emit 'exit' on the repl when 'end' is emitted on the readline.

Fixes `node debug test/fixtures/breakpoints.js` when ^D is pressed.
  • Loading branch information
TooTallNate committed Mar 27, 2012
1 parent 0022477 commit f41901c
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 1 deletion.
8 changes: 8 additions & 0 deletions doc/api/readline.markdown
Expand Up @@ -160,6 +160,14 @@ Example of listening for `resume`:
console.log('Readline resumed.');
});

### Event: 'end'

`function () {}`

Emitted when the `input` stream receives its "end" event, or when `^D` is
pressed by the user. It's generally a good idea to consider this `Interface`
instance as completed after this is emitted.

### Event: 'SIGINT'

`function () {}`
Expand Down
3 changes: 2 additions & 1 deletion doc/api/repl.markdown
Expand Up @@ -116,7 +116,8 @@ see: https://gist.github.com/2053342
`function () {}`

Emitted when the user exits the REPL in any of the defined ways. Namely, typing
`.exit` at the repl, or pressing Ctrl+C twice to signal SIGINT.
`.exit` at the repl, pressing Ctrl+C twice to signal SIGINT, or pressing Ctrl+D
to signal "end" on the `input` stream.

Example of listening for `exit`:

Expand Down
4 changes: 4 additions & 0 deletions lib/readline.js
Expand Up @@ -90,6 +90,9 @@ function Interface(input, output, completer, terminal) {
input.on('data', function(data) {
self._normalWrite(data);
});
input.on('end', function() {
self.emit('end');
});

} else {

Expand Down Expand Up @@ -575,6 +578,7 @@ Interface.prototype._ttyWrite = function(s, key) {
case 'd': // delete right or EOF
if (this.cursor === 0 && this.line.length === 0) {
this.pause();
this.emit('end');
} else if (this.cursor < this.line.length) {
this._deleteRight();
}
Expand Down
5 changes: 5 additions & 0 deletions lib/repl.js
Expand Up @@ -168,6 +168,11 @@ function REPLServer(prompt, stream, eval, useGlobal, ignoreUndefined) {

rli.setPrompt(self.prompt);

rli.on('end', function() {
self.rli.output.write('\n');

This comment has been minimized.

Copy link
@TooTallNate

TooTallNate Mar 28, 2012

Author

In the case of a REPL in 'readline' mode (non-terminal), the end event here will end up trying to write to a closed socket here. We should just remove this write() call.

Can someone review? https://github.com/TooTallNate/node/commit/f39ff6a096d3ae3134e12d273559284596bae6f8

This comment has been minimized.

This comment has been minimized.

Copy link
@isaacs

isaacs Mar 28, 2012

lgtm

self.emit('exit');
});

var sawSIGINT = false;
rli.on('SIGINT', function() {
var empty = rli.line.length === 0;
Expand Down
77 changes: 77 additions & 0 deletions test/simple/test-repl-end-emits-exit.js
@@ -0,0 +1,77 @@
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

var common = require('../common'),
assert = require('assert'),
Stream = require('stream'),
repl = require('repl'),
gotTerminalExit = false,
gotRegularExit = false;

// create a dummy stream that does nothing
var stream = new Stream();
stream.write = stream.pause = stream.resume = function(){};
stream.readable = stream.writable = true;

function testTerminalMode() {
var r1 = repl.start({
input: stream,
output: stream,
terminal: true
});

process.nextTick(function() {
// manually fire a ^D keypress
stream.emit('data', '\u0004');
});

r1.on('exit', function() {
// should be fired from the simulated ^D keypress
gotTerminalExit = true;
testRegularMode();
});
}

function testRegularMode() {
var r2 = repl.start({
input: stream,
output: stream,
terminal: false
});

process.nextTick(function() {
stream.emit('end');
});

r2.on('exit', function() {
// should be fired from the simulated 'end' event
gotRegularExit = true;
});
}

process.on('exit', function() {
assert(gotTerminalExit);
assert(gotRegularExit);
});


// start
testTerminalMode();

0 comments on commit f41901c

Please sign in to comment.