nushell/crates/nu-command/src/experimental/git.rs

58 lines
1.6 KiB
Rust
Raw Normal View History

2021-09-29 20:25:05 +02:00
use nu_protocol::ast::Call;
2021-10-25 18:58:58 +02:00
use nu_protocol::engine::{Command, EngineState, Stack};
2021-10-25 06:01:02 +02:00
use nu_protocol::{IntoPipelineData, PipelineData, Signature, Value};
2021-09-29 20:25:05 +02:00
2021-10-25 06:01:02 +02:00
#[derive(Clone)]
2021-09-29 20:25:05 +02:00
pub struct Git;
impl Command for Git {
fn name(&self) -> &str {
"git"
}
fn usage(&self) -> &str {
"Run a block"
}
fn signature(&self) -> nu_protocol::Signature {
Signature::build("git")
}
fn run(
&self,
2021-10-25 08:31:39 +02:00
_engine_state: &EngineState,
_stack: &mut Stack,
2021-09-29 20:25:05 +02:00
call: &Call,
2021-10-25 06:01:02 +02:00
_input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
2021-09-29 20:25:05 +02:00
use std::process::Command as ProcessCommand;
use std::process::Stdio;
let proc = ProcessCommand::new("git").stdout(Stdio::piped()).spawn();
match proc {
Ok(child) => {
match child.wait_with_output() {
Ok(val) => {
let result = val.stdout;
2021-10-20 07:58:25 +02:00
Ok(Value::String {
val: String::from_utf8_lossy(&result).to_string(),
span: call.head,
2021-10-25 06:01:02 +02:00
}
.into_pipeline_data())
2021-09-29 20:25:05 +02:00
}
Err(_err) => {
2021-10-12 19:44:23 +02:00
// FIXME: Move this to an external signature and add better error handling
2021-10-25 06:01:02 +02:00
Ok(PipelineData::new())
2021-09-29 20:25:05 +02:00
}
}
}
Err(_err) => {
2021-10-12 19:44:23 +02:00
// FIXME: Move this to an external signature and add better error handling
2021-10-25 06:01:02 +02:00
Ok(PipelineData::new())
2021-09-29 20:25:05 +02:00
}
}
}
}