Skip to content

Commit

Permalink
readline: expose stream API in clearScreenDown()
Browse files Browse the repository at this point in the history
This commit adds an optional callback to clearScreenDown(),
which is passed to the stream's write() method. It also
exposes the return value of write().

PR-URL: #28641
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
cjihrig committed Jul 13, 2019
1 parent a013aa0 commit c31f7e5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
10 changes: 9 additions & 1 deletion doc/api/readline.md
Expand Up @@ -360,12 +360,20 @@ added: v0.7.7
The `readline.clearLine()` method clears current line of given [TTY][] stream
in a specified direction identified by `dir`.

## readline.clearScreenDown(stream)
## readline.clearScreenDown(stream[, callback])
<!-- YAML
added: v0.7.7
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/28641
description: The stream's write() callback and return value are exposed.
-->

* `stream` {stream.Writable}
* `callback` {Function} Invoked once the operation completes.
* Returns: {boolean} `false` if `stream` wishes for the calling code to wait for
the `'drain'` event to be emitted before continuing to write additional data;
otherwise `true`.

The `readline.clearScreenDown()` method clears the given [TTY][] stream from
the current position of the cursor down.
Expand Down
15 changes: 11 additions & 4 deletions lib/readline.js
Expand Up @@ -30,6 +30,7 @@
const { Math, Object } = primordials;

const {
ERR_INVALID_CALLBACK,
ERR_INVALID_CURSOR_POS,
ERR_INVALID_OPT_VALUE
} = require('internal/errors').codes;
Expand Down Expand Up @@ -1253,11 +1254,17 @@ function clearLine(stream, dir) {
* clears the screen from the current position of the cursor down
*/

function clearScreenDown(stream) {
if (stream === null || stream === undefined)
return;
function clearScreenDown(stream, callback) {
if (callback !== undefined && typeof callback !== 'function')
throw new ERR_INVALID_CALLBACK(callback);

if (stream === null || stream === undefined) {
if (typeof callback === 'function')
process.nextTick(callback);
return true;
}

stream.write(kClearScreenDown);
return stream.write(kClearScreenDown, callback);
}

module.exports = {
Expand Down
13 changes: 12 additions & 1 deletion test/parallel/test-readline-csi.js
Expand Up @@ -29,8 +29,19 @@ class TestWritable extends Writable {

const writable = new TestWritable();

readline.clearScreenDown(writable);
assert.strictEqual(readline.clearScreenDown(writable), true);
assert.deepStrictEqual(writable.data, CSI.kClearScreenDown);
assert.strictEqual(readline.clearScreenDown(writable, common.mustCall()), true);

// Verify that clearScreenDown() throws on invalid callback.
assert.throws(() => {
readline.clearScreenDown(writable, null);
}, /ERR_INVALID_CALLBACK/);

// Verify that clearScreenDown() does not throw on null or undefined stream.
assert.strictEqual(readline.clearScreenDown(null, common.mustCall()), true);
assert.strictEqual(readline.clearScreenDown(undefined, common.mustCall()),
true);

writable.data = '';
readline.clearLine(writable, -1);
Expand Down

0 comments on commit c31f7e5

Please sign in to comment.