2021-09-29 20:25:05 +02:00
|
|
|
use nu_engine::eval_expression;
|
|
|
|
use nu_protocol::ast::Call;
|
|
|
|
use nu_protocol::engine::{Command, EvaluationContext};
|
|
|
|
use nu_protocol::{Signature, SyntaxShape, Value};
|
|
|
|
|
|
|
|
pub struct GitCheckout;
|
|
|
|
|
|
|
|
impl Command for GitCheckout {
|
|
|
|
fn name(&self) -> &str {
|
|
|
|
"git checkout"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Checkout a git revision"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn signature(&self) -> nu_protocol::Signature {
|
|
|
|
Signature::build("git checkout").required(
|
|
|
|
"branch",
|
|
|
|
SyntaxShape::Custom(Box::new(SyntaxShape::String), "list-git-branches".into()),
|
|
|
|
"the branch to checkout",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
context: &EvaluationContext,
|
|
|
|
call: &Call,
|
|
|
|
_input: Value,
|
|
|
|
) -> Result<nu_protocol::Value, nu_protocol::ShellError> {
|
|
|
|
use std::process::Command as ProcessCommand;
|
|
|
|
use std::process::Stdio;
|
|
|
|
|
|
|
|
let block = &call.positional[0];
|
|
|
|
|
|
|
|
let out = eval_expression(context, block)?;
|
|
|
|
|
|
|
|
let out = out.as_string()?;
|
|
|
|
|
|
|
|
let proc = ProcessCommand::new("git")
|
|
|
|
.arg("checkout")
|
|
|
|
.arg(out)
|
|
|
|
.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-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-09-29 20:25:05 +02:00
|
|
|
Ok(Value::nothing())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_err) => {
|
2021-10-12 19:44:23 +02:00
|
|
|
// FIXME: Move this to an external signature and add better error handling
|
2021-09-29 20:25:05 +02:00
|
|
|
Ok(Value::nothing())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|