* category option for signature * category option for signature * column description for $scope
77 lines
2.3 KiB
Rust
77 lines
2.3 KiB
Rust
// Note: this is a temporary command that later will be converted into a pipeline
|
|
|
|
use std::process::Command as ProcessCommand;
|
|
use std::process::Stdio;
|
|
|
|
use nu_protocol::ast::Call;
|
|
use nu_protocol::engine::Command;
|
|
use nu_protocol::engine::EngineState;
|
|
use nu_protocol::engine::Stack;
|
|
use nu_protocol::Category;
|
|
use nu_protocol::IntoInterruptiblePipelineData;
|
|
use nu_protocol::PipelineData;
|
|
use nu_protocol::{Signature, Value};
|
|
|
|
#[derive(Clone)]
|
|
pub struct ListGitBranches;
|
|
|
|
//NOTE: this is not a real implementation :D. It's just a simple one to test with until we port the real one.
|
|
impl Command for ListGitBranches {
|
|
fn name(&self) -> &str {
|
|
"list-git-branches"
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"List the git branches of the current directory."
|
|
}
|
|
|
|
fn signature(&self) -> nu_protocol::Signature {
|
|
Signature::build("list-git-branches").category(Category::Experimental)
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
_stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
|
let list_branches = ProcessCommand::new("git")
|
|
.arg("branch")
|
|
.stdout(Stdio::piped())
|
|
.spawn();
|
|
|
|
if let Ok(child) = list_branches {
|
|
if let Ok(output) = child.wait_with_output() {
|
|
let val = output.stdout;
|
|
|
|
let s = String::from_utf8_lossy(&val).to_string();
|
|
|
|
#[allow(clippy::needless_collect)]
|
|
let lines: Vec<_> = s
|
|
.lines()
|
|
.filter_map(|x| {
|
|
if x.starts_with("* ") {
|
|
None
|
|
} else {
|
|
Some(x.trim())
|
|
}
|
|
})
|
|
.map(|x| Value::String {
|
|
val: x.into(),
|
|
span: call.head,
|
|
})
|
|
.collect();
|
|
|
|
Ok(lines
|
|
.into_iter()
|
|
.into_pipeline_data(engine_state.ctrlc.clone()))
|
|
} else {
|
|
Ok(PipelineData::new(call.head))
|
|
}
|
|
} else {
|
|
Ok(PipelineData::new(call.head))
|
|
}
|
|
}
|
|
}
|