use crate::get_env;
use git2::{DiffOptions, Error, ObjectType, Repository, StatusOptions, StatusShow};
use serde::{Deserialize, Serialize};
use std::{
collections::BTreeMap,
env,
process::{Command, Stdio},
str, thread,
};
#[derive(Serialize, Deserialize, Debug, Default)]
struct Prompt {
action: String,
branch: String,
remote: Vec<String>,
staged: bool,
status: String,
u_name: String,
}
pub fn render() {
if let Ok(path) = env::current_dir() {
if let Ok(repo) = Repository::discover(path) {
build_prompt(&repo);
}
}
}
fn build_prompt(repo: &Repository) {
let mut prompt = Prompt::default();
if let Ok(config) = repo.config() {
prompt.u_name = config
.get_string("user.name")
.unwrap_or_else(|_| String::new());
}
if let Ok(head) = repo.head() {
prompt.branch = head.shorthand().unwrap_or("(no branch)").to_string();
} else {
prompt.branch = "(no branch)".into();
}
if get_env("SLICK_PROMPT_GIT_FETCH") != "0" {
thread::spawn(move || {
Command::new("git")
.env("GIT_TERMINAL_PROMPT", "0")
.arg("-c")
.arg("gc.auto=0")
.arg("fetch")
.arg("--quiet")
.arg("--no-tags")
.arg("--no-recurse-submodules")
.stderr(Stdio::null())
.spawn()
.expect("failed to execute process");
});
}
let (ahead, behind) = is_ahead_behind_remote(repo);
if behind > 0 {
prompt.remote.push(format!(
"{}{}",
get_env("SLICK_PROMPT_GIT_REMOTE_BEHIND"),
behind
));
}
if ahead > 0 {
prompt.remote.push(format!(
"{}{}",
get_env("SLICK_PROMPT_GIT_REMOTE_AHEAD"),
ahead
));
}
if let Some(action) = get_action(repo) {
prompt.action = action;
}
if let Ok(status) = get_status(repo) {
prompt.status = status;
}
if let Ok(staged) = is_staged(repo) {
prompt.staged = staged;
}
if let Ok(serialized) = serde_json::to_string(&prompt) {
println!("{serialized}");
}
}
fn get_status(repo: &Repository) -> Result<String, Error> {
let mut status: Vec<String> = Vec::new();
let mut status_opt = StatusOptions::new();
status_opt
.show(StatusShow::IndexAndWorkdir)
.include_untracked(true)
.include_unmodified(false)
.no_refresh(false);
let statuses = repo.statuses(Some(&mut status_opt))?;
if !statuses.is_empty() {
let mut map: BTreeMap<&str, u32> = BTreeMap::new();
for entry in statuses.iter() {
let status = match entry.status() {
s if s.contains(git2::Status::INDEX_NEW)
&& s.contains(git2::Status::WT_MODIFIED) =>
{
"AM"
}
s if s.contains(git2::Status::INDEX_MODIFIED)
&& s.contains(git2::Status::WT_MODIFIED) =>
{
"MM"
}
s if s.contains(git2::Status::INDEX_MODIFIED)
|| s.contains(git2::Status::WT_MODIFIED) =>
{
"M"
}
s if s.contains(git2::Status::INDEX_DELETED)
|| s.contains(git2::Status::WT_DELETED) =>
{
"D"
}
s if s.contains(git2::Status::INDEX_RENAMED)
|| s.contains(git2::Status::WT_RENAMED) =>
{
"R"
}
s if s.contains(git2::Status::INDEX_TYPECHANGE)
|| s.contains(git2::Status::WT_TYPECHANGE) =>
{
"T"
}
s if s.contains(git2::Status::INDEX_NEW) => "A",
s if s.contains(git2::Status::WT_NEW) => "??",
s if s.contains(git2::Status::CONFLICTED) => "UU",
s if s.contains(git2::Status::IGNORED) => "!",
_ => "X",
};
*map.entry(status).or_insert(0) += 1;
}
for (k, v) in &map {
status.push(format!("{k} {v}"));
}
}
Ok(status.join(" "))
}
fn get_action(repo: &Repository) -> Option<String> {
let gitdir = repo.path();
for tmp in &[
gitdir.join("rebase-apply"),
gitdir.join("rebase"),
gitdir.join("..").join(".dotest"),
] {
if tmp.join("rebasing").exists() {
return Some("rebase".to_string());
}
if tmp.join("applying").exists() {
return Some("am".to_string());
}
if tmp.exists() {
return Some("am/rebase".to_string());
}
}
for tmp in &[
gitdir.join("rebase-merge").join("interactive"),
gitdir.join(".dotest-merge").join("interactive"),
] {
if tmp.exists() {
return Some("rebase-i".to_string());
}
}
for tmp in &[gitdir.join("rebase-merge"), gitdir.join(".dotest-merge")] {
if tmp.exists() {
return Some("rebase-m".to_string());
}
}
if gitdir.join("MERGE_HEAD").exists() {
return Some("merge".to_string());
}
if gitdir.join("BISECT_LOG").exists() {
return Some("bisect".to_string());
}
if gitdir.join("CHERRY_PICK_HEAD").exists() {
if gitdir.join("sequencer").exists() {
return Some("cherry-seq".to_string());
}
return Some("cherry".to_string());
}
if gitdir.join("sequencer").exists() {
return Some("cherry-or-revert".to_string());
}
None
}
fn is_ahead_behind_remote(repo: &Repository) -> (usize, usize) {
if let Ok(head) = repo.revparse_single("HEAD") {
let head = head.id();
if let Ok((upstream, _)) = repo.revparse_ext("@{u}") {
return match repo.graph_ahead_behind(head, upstream.id()) {
Ok((commits_ahead, commits_behind)) => (commits_ahead, commits_behind),
Err(_) => (0, 0),
};
}
}
(0, 0)
}
fn is_staged(repo: &Repository) -> Result<bool, Error> {
let mut opts = DiffOptions::new();
let obj = repo.head()?;
let tree = obj.peel(ObjectType::Tree)?;
let diff = repo.diff_tree_to_index(tree.as_tree(), None, Some(&mut opts))?;
let stats = diff.stats()?;
if stats.files_changed() > 0 || stats.insertions() > 0 || stats.deletions() > 0 {
return Ok(true);
}
Ok(false)
}