mirror of
https://github.com/nushell/nushell.git
synced 2024-12-16 20:21:09 +01:00
Add simple stdin input command (#754)
* Add simple stdin input command * Add binary input * Tweak binary view
This commit is contained in:
parent
b78924c777
commit
fa5aab8170
@ -166,6 +166,7 @@ pub fn create_default_context(cwd: impl AsRef<Path>) -> EngineState {
|
|||||||
AnsiGradient,
|
AnsiGradient,
|
||||||
AnsiStrip,
|
AnsiStrip,
|
||||||
Clear,
|
Clear,
|
||||||
|
Input,
|
||||||
Kill,
|
Kill,
|
||||||
Sleep,
|
Sleep,
|
||||||
};
|
};
|
||||||
|
119
crates/nu-command/src/platform/input.rs
Normal file
119
crates/nu-command/src/platform/input.rs
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
use nu_engine::CallExt;
|
||||||
|
use nu_protocol::ast::Call;
|
||||||
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
|
use nu_protocol::{
|
||||||
|
Category, Example, IntoPipelineData, PipelineData, ShellError, Signature, SyntaxShape, Value,
|
||||||
|
};
|
||||||
|
use std::io::{Read, Write};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct Input;
|
||||||
|
|
||||||
|
impl Command for Input {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"input"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Get input from the user."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> Signature {
|
||||||
|
Signature::build("input")
|
||||||
|
.optional("prompt", SyntaxShape::String, "prompt to show the user")
|
||||||
|
.named(
|
||||||
|
"bytes-until",
|
||||||
|
SyntaxShape::String,
|
||||||
|
"read bytes (not text) until a stop byte",
|
||||||
|
Some('u'),
|
||||||
|
)
|
||||||
|
.category(Category::Platform)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
engine_state: &EngineState,
|
||||||
|
stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
_input: PipelineData,
|
||||||
|
) -> Result<PipelineData, ShellError> {
|
||||||
|
let prompt: Option<String> = call.opt(engine_state, stack, 0)?;
|
||||||
|
let bytes_until: Option<String> = call.get_flag(engine_state, stack, "bytes-until")?;
|
||||||
|
|
||||||
|
if let Some(bytes_until) = bytes_until {
|
||||||
|
let _ = crossterm::terminal::enable_raw_mode();
|
||||||
|
|
||||||
|
if let Some(prompt) = prompt {
|
||||||
|
print!("{}", prompt);
|
||||||
|
let _ = std::io::stdout().flush();
|
||||||
|
}
|
||||||
|
if let Some(c) = bytes_until.bytes().next() {
|
||||||
|
let mut buf = [0u8; 1];
|
||||||
|
let mut buffer = vec![];
|
||||||
|
|
||||||
|
let mut stdin = std::io::stdin();
|
||||||
|
|
||||||
|
loop {
|
||||||
|
if let Err(err) = stdin.read_exact(&mut buf) {
|
||||||
|
let _ = crossterm::terminal::disable_raw_mode();
|
||||||
|
return Err(ShellError::IOError(err.to_string()));
|
||||||
|
}
|
||||||
|
buffer.push(buf[0]);
|
||||||
|
|
||||||
|
if buf[0] == c {
|
||||||
|
let _ = crossterm::terminal::disable_raw_mode();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(Value::Binary {
|
||||||
|
val: buffer,
|
||||||
|
span: call.head,
|
||||||
|
}
|
||||||
|
.into_pipeline_data())
|
||||||
|
} else {
|
||||||
|
let _ = crossterm::terminal::disable_raw_mode();
|
||||||
|
Err(ShellError::IOError(
|
||||||
|
"input can't stop on this byte".to_string(),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if let Some(prompt) = prompt {
|
||||||
|
print!("{}", prompt);
|
||||||
|
let _ = std::io::stdout().flush();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Just read a normal line of text
|
||||||
|
let mut buf = String::new();
|
||||||
|
let input = std::io::stdin().read_line(&mut buf);
|
||||||
|
|
||||||
|
match input {
|
||||||
|
Ok(_) => Ok(Value::String {
|
||||||
|
val: buf,
|
||||||
|
span: call.head,
|
||||||
|
}
|
||||||
|
.into_pipeline_data()),
|
||||||
|
Err(err) => Err(ShellError::IOError(err.to_string())),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
vec![Example {
|
||||||
|
description: "Get input from the user, and assign to a variable",
|
||||||
|
example: "let user-input = (input)",
|
||||||
|
result: None,
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::Input;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn examples_work_as_expected() {
|
||||||
|
use crate::test_examples;
|
||||||
|
test_examples(Input {})
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,11 @@
|
|||||||
mod ansi;
|
mod ansi;
|
||||||
mod clear;
|
mod clear;
|
||||||
|
mod input;
|
||||||
mod kill;
|
mod kill;
|
||||||
mod sleep;
|
mod sleep;
|
||||||
|
|
||||||
pub use ansi::{Ansi, AnsiGradient, AnsiStrip};
|
pub use ansi::{Ansi, AnsiGradient, AnsiStrip};
|
||||||
pub use clear::Clear;
|
pub use clear::Clear;
|
||||||
|
pub use input::Input;
|
||||||
pub use kill::Kill;
|
pub use kill::Kill;
|
||||||
pub use sleep::Sleep;
|
pub use sleep::Sleep;
|
||||||
|
@ -78,11 +78,15 @@ impl Command for Table {
|
|||||||
)),
|
)),
|
||||||
PipelineData::Value(Value::Binary { val, .. }, ..) => Ok(PipelineData::StringStream(
|
PipelineData::Value(Value::Binary { val, .. }, ..) => Ok(PipelineData::StringStream(
|
||||||
StringStream::from_stream(
|
StringStream::from_stream(
|
||||||
vec![Ok(if val.iter().all(|x| x.is_ascii()) {
|
vec![Ok(
|
||||||
|
if val.iter().all(|x| {
|
||||||
|
*x < 128 && (*x >= b' ' || *x == b'\t' || *x == b'\r' || *x == b'\n')
|
||||||
|
}) {
|
||||||
format!("{}", String::from_utf8_lossy(&val))
|
format!("{}", String::from_utf8_lossy(&val))
|
||||||
} else {
|
} else {
|
||||||
format!("{}\n", nu_pretty_hex::pretty_hex(&val))
|
format!("{}\n", nu_pretty_hex::pretty_hex(&val))
|
||||||
})]
|
},
|
||||||
|
)]
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
ctrlc,
|
ctrlc,
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user