1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-15 17:47:13 +00:00
starship/src/modules/directory.rs

108 lines
2.9 KiB
Rust
Raw Normal View History

2019-04-04 18:18:15 +00:00
use super::Segment;
use ansi_term::{Color, Style};
use clap::ArgMatches;
2019-04-05 01:35:24 +00:00
use dirs;
2019-04-08 03:23:37 +00:00
use git2::Repository;
use std::env;
use std::path::PathBuf;
2019-04-04 18:18:15 +00:00
/// Creates a segment with the current directory
2019-04-04 18:32:22 +00:00
pub fn segment(_: &ArgMatches) -> Segment {
2019-04-04 18:18:15 +00:00
const COLOR_DIR: Color = Color::Cyan;
2019-04-08 03:23:37 +00:00
const DIR_TRUNCATION_LENGTH: u8 = 3;
2019-04-04 18:18:15 +00:00
2019-04-08 03:23:37 +00:00
let current_dir = env::current_dir()
.expect("Unable to identify current directory")
.canonicalize()
.expect("Unable to canonicalize current directory");
2019-04-04 18:18:15 +00:00
2019-04-07 21:12:22 +00:00
let dir_string;
2019-04-07 20:43:11 +00:00
if let Ok(repo) = git2::Repository::discover(&current_dir) {
let repo_root = get_repo_root(repo);
2019-04-08 03:23:37 +00:00
let repo_root_depth = repo_root.components().count();
// Skip the path components that are before the repo root
let path = current_dir
.iter()
.skip(repo_root_depth - 1)
.collect::<PathBuf>();
dir_string = path.to_str().unwrap().to_string();
2019-04-07 20:43:11 +00:00
} else {
2019-04-07 21:12:22 +00:00
dir_string = match truncate_home(&current_dir) {
2019-04-08 03:23:37 +00:00
Some(dir) => dir,
None => current_dir.to_str().unwrap().to_string(),
2019-04-07 21:12:22 +00:00
}
2019-04-04 18:18:15 +00:00
}
Segment {
2019-04-07 21:12:22 +00:00
value: String::from(dir_string),
2019-04-04 18:18:15 +00:00
style: Style::from(COLOR_DIR).bold(),
..Default::default()
}
}
2019-04-07 21:17:40 +00:00
/// Get the root directory of a git repo
2019-04-07 20:43:11 +00:00
fn get_repo_root(repo: Repository) -> PathBuf {
match repo.is_bare() {
// A bare repo will return its root path
true => repo.path().to_path_buf(),
// Non-bare repos will return the path of `.git`
2019-04-08 03:23:37 +00:00
false => repo.path().parent().unwrap().to_path_buf(),
2019-04-07 20:43:11 +00:00
}
}
2019-04-07 21:17:40 +00:00
/// Replace the home directory in the path with "~"
2019-04-07 21:12:22 +00:00
fn truncate_home(path: &PathBuf) -> Option<String> {
const HOME_SYMBOL: &str = "~";
2019-04-07 20:43:11 +00:00
2019-04-07 21:12:22 +00:00
if dirs::home_dir() == None {
return None;
}
2019-04-07 20:43:11 +00:00
2019-04-07 21:12:22 +00:00
if let Some(home_dir) = dirs::home_dir() {
if path.strip_prefix(&home_dir).is_ok() {
let path_str = path.to_str().unwrap();
let home_dir = home_dir.to_str().unwrap();
2019-04-08 03:23:37 +00:00
2019-04-07 21:12:22 +00:00
return Some(path_str.replace(home_dir, HOME_SYMBOL));
}
}
2019-04-07 20:43:11 +00:00
2019-04-07 21:12:22 +00:00
None
}
2019-04-07 20:43:11 +00:00
2019-04-04 18:18:15 +00:00
#[cfg(test)]
mod tests {
2019-04-04 18:32:22 +00:00
// TODO: Look into stubbing `env` so that tests can be run in parallel
2019-04-04 18:18:15 +00:00
use super::*;
use clap::{App, Arg};
2019-04-04 18:32:22 +00:00
use std::path::Path;
2019-04-04 18:18:15 +00:00
#[test]
fn truncate_home_dir() {
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]);
2019-04-04 18:32:22 +00:00
let home_dir = dirs::home_dir().unwrap();
env::set_current_dir(&home_dir).unwrap();
let segment = segment(&args);
assert_eq!(segment.value, "~");
}
#[test]
fn dont_truncate_non_home_dir() {
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]);
let root_dir = Path::new("/");
env::set_current_dir(&root_dir).unwrap();
2019-04-04 18:18:15 +00:00
let segment = segment(&args);
2019-04-04 18:32:22 +00:00
assert_eq!(segment.value, "/");
2019-04-04 18:18:15 +00:00
}
}