forked from oyooyo/keyble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
57 lines (51 loc) · 1.72 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'use strict';
/**
* The "cli" submodule.
* Exports functions etc. being used by the included command line programs, but which are not required when using keyble as a library.
* @module cli
*/
/**
* Import/require the "argparse" module that is being used parsing command line arguments.
* @requires argparse
* @see {@link https://github.com/nodeca/argparse#readme}
*/
const argparse = require('argparse');
/**
* Import/require the "readline" module that is being used reading from input streams.
* @requires readline
* @see {@link https://nodejs.org/api/readline.html}
*/
const readline = require('readline');
/**
* Async generator function that yields input strings from the the first valid "input source".
* @private
* @async
* @generator
* @param {string[]|ReadableStream} - One or more "input sources". Each input source can either be an array of strings or a readable stream.
* @yields {string} The next input string.
*/
const generate_input_strings = async function*(command_line_input_strings, readable_stream) {
command_line_input_strings = command_line_input_strings.filter((input_string) => (typeof(input_string) === 'string'));
if (command_line_input_strings.length > 0) {
// Yield strings from the command_line_input_strings array.
for (let input_string of command_line_input_strings) {
yield(input_string);
}
} else {
// Yield lines read from the readable_stream.
const readline_interface = readline.createInterface({
input: readable_stream,
output: null,
});
for await (let input_line of readline_interface) {
yield(input_line.trim());
}
}
}
/**
* What this module exports.
*/
module.exports = {
ArgumentParser: argparse.ArgumentParser,
generate_input_strings: generate_input_strings,
};