#![allow(dead_code)]
use std::path::{Path, PathBuf};
use std::process::Command;
use std::sync::{Mutex, OnceLock};
use std::time::{Duration, Instant};
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct GitStatusSnapshot {
pub root: Option<PathBuf>,
pub branch: Option<String>,
pub dirty: bool,
pub ahead: u32,
pub behind: u32,
pub worktrees: Vec<WorktreeEntry>,
pub fetched_at: Option<Instant>,
pub error: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct WorktreeEntry {
pub path: PathBuf,
pub branch: Option<String>,
pub bare: bool,
pub locked: bool,
}
const CACHE_TTL: Duration = Duration::from_secs(2);
static CACHE: OnceLock<Mutex<GitStatusSnapshot>> = OnceLock::new();
fn cache() -> &'static Mutex<GitStatusSnapshot> {
CACHE.get_or_init(|| Mutex::new(GitStatusSnapshot::default()))
}
#[must_use]
pub fn cached_status() -> GitStatusSnapshot {
cache().lock().map(|g| g.clone()).unwrap_or_default()
}
pub fn refresh_if_stale(workspace: &Path) {
let stale = cache()
.lock()
.map(|g| {
g.fetched_at.is_none_or(|t| t.elapsed() > CACHE_TTL)
|| g.root.as_deref() != Some(workspace)
})
.unwrap_or(true);
if !stale {
return;
}
let snap = probe_status(workspace);
if let Ok(mut guard) = cache().lock() {
*guard = snap;
}
}
pub fn force_refresh(workspace: &Path) {
let snap = probe_status(workspace);
if let Ok(mut guard) = cache().lock() {
*guard = snap;
}
}
fn probe_status(workspace: &Path) -> GitStatusSnapshot {
let mut snap = GitStatusSnapshot {
fetched_at: Some(Instant::now()),
..GitStatusSnapshot::default()
};
let root = git_output(workspace, &["rev-parse", "--show-toplevel"])
.ok()
.map(|s| PathBuf::from(s.trim()));
let Some(root) = root else {
snap.error = Some("not a git repository".into());
return snap;
};
snap.root = Some(root.clone());
snap.branch = git_output(&root, &["symbolic-ref", "--short", "HEAD"])
.ok()
.or_else(|| git_output(&root, &["rev-parse", "--short", "HEAD"]).ok())
.map(|s| s.trim().to_string());
if let Ok(status) = git_output(&root, &["status", "--porcelain"]) {
snap.dirty = !status.trim().is_empty();
}
if let Ok(counts) = git_output(
&root,
&["rev-list", "--left-right", "--count", "@{upstream}...HEAD"],
) {
let mut parts = counts.split_whitespace();
if let (Some(behind), Some(ahead)) = (parts.next(), parts.next()) {
snap.behind = behind.parse().unwrap_or(0);
snap.ahead = ahead.parse().unwrap_or(0);
}
}
if let Ok(list) = git_output(&root, &["worktree", "list", "--porcelain"]) {
snap.worktrees = parse_worktree_list(&list);
}
snap
}
fn parse_worktree_list(porcelain: &str) -> Vec<WorktreeEntry> {
let mut entries = Vec::new();
let mut current: Option<WorktreeEntry> = None;
for line in porcelain.lines() {
if let Some(path) = line.strip_prefix("worktree ") {
if let Some(entry) = current.take() {
entries.push(entry);
}
current = Some(WorktreeEntry {
path: PathBuf::from(path),
branch: None,
bare: false,
locked: false,
});
} else if let Some(entry) = current.as_mut() {
if let Some(branch) = line.strip_prefix("branch refs/heads/") {
entry.branch = Some(branch.to_string());
} else if line == "bare" {
entry.bare = true;
} else if line.starts_with("locked") {
entry.locked = true;
}
}
}
if let Some(entry) = current {
entries.push(entry);
}
entries
}
fn git_output(cwd: &Path, args: &[&str]) -> Result<String, String> {
let output = Command::new("git")
.args(args)
.current_dir(cwd)
.output()
.map_err(|e| e.to_string())?;
if !output.status.success() {
return Err(String::from_utf8_lossy(&output.stderr).into_owned());
}
Ok(String::from_utf8_lossy(&output.stdout).into_owned())
}
#[must_use]
pub fn chrome_label(snap: &GitStatusSnapshot) -> Option<String> {
let branch = snap.branch.as_deref()?;
let mut label = branch.to_string();
if snap.dirty {
label.push('*');
}
if snap.ahead > 0 {
label.push_str(&format!(" ↑{}", snap.ahead));
}
if snap.behind > 0 {
label.push_str(&format!(" ↓{}", snap.behind));
}
Some(label)
}
pub fn create_worktree(
repo: &Path,
path: &Path,
branch: &str,
new_branch: bool,
) -> Result<(), String> {
let mut args = vec!["worktree", "add"];
if new_branch {
args.push("-b");
args.push(branch);
args.push(path.to_str().ok_or("invalid path")?);
} else {
args.push(path.to_str().ok_or("invalid path")?);
args.push(branch);
}
git_output(repo, &args).map(|_| ())?;
force_refresh(repo);
Ok(())
}
#[must_use]
pub fn list_worktrees(workspace: &Path) -> Vec<WorktreeEntry> {
refresh_if_stale(workspace);
cached_status().worktrees
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_worktree_porcelain() {
let raw = "\
worktree /repo
HEAD abc
branch refs/heads/main
worktree /repo/.cw-worktrees/feat
HEAD def
branch refs/heads/feat
locked
";
let entries = parse_worktree_list(raw);
assert_eq!(entries.len(), 2);
assert_eq!(entries[0].branch.as_deref(), Some("main"));
assert!(entries[1].locked);
assert_eq!(entries[1].branch.as_deref(), Some("feat"));
}
#[test]
fn chrome_label_marks_dirty_and_divergence() {
let snap = GitStatusSnapshot {
branch: Some("main".into()),
dirty: true,
ahead: 2,
behind: 1,
..GitStatusSnapshot::default()
};
assert_eq!(chrome_label(&snap).as_deref(), Some("main* ↑2 ↓1"));
}
}