1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-08 03:20:48 +00:00
starship/src/modules/directory.rs

141 lines
4.3 KiB
Rust
Raw Normal View History

2019-04-12 23:11:40 +00:00
use ansi_term::Color;
use std::path::Path;
2019-04-04 18:18:15 +00:00
2019-05-01 20:34:24 +00:00
use super::{Context, Module};
/// Creates a module with the current directory
2019-04-11 23:31:30 +00:00
///
2019-04-09 03:35:14 +00:00
/// Will perform path contraction and truncation.
/// **Contraction**
/// - Paths begining with the home directory will be contracted to `~`
/// - Paths containing a git repo will contract to begin at the repo root
2019-04-11 23:31:30 +00:00
///
2019-04-09 03:35:14 +00:00
/// **Truncation**
/// Paths will be limited in length to `3` path components by default.
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
2019-04-08 19:32:59 +00:00
const HOME_SYMBOL: &str = "~";
2019-04-12 23:11:40 +00:00
const DIR_TRUNCATION_LENGTH: usize = 3;
2019-05-01 20:34:24 +00:00
let module_color = Color::Cyan.bold();
let mut module = context.new_module("directory")?;
2019-05-01 20:34:24 +00:00
module.set_style(module_color);
2019-04-12 23:11:40 +00:00
let current_dir = &context.current_dir;
log::debug!("Current directory: {:?}", current_dir);
2019-04-04 18:18:15 +00:00
2019-04-07 21:12:22 +00:00
let dir_string;
2019-05-10 03:51:50 +00:00
if let Some(repo_root) = &context.repo_root {
2019-04-09 03:35:14 +00:00
// Contract the path to the git repo root
2019-04-12 23:11:40 +00:00
let repo_folder_name = repo_root.file_name().unwrap().to_str().unwrap();
2019-04-08 19:32:59 +00:00
dir_string = contract_path(&current_dir, repo_root, repo_folder_name);
2019-04-07 20:43:11 +00:00
} else {
2019-04-09 03:35:14 +00:00
// Contract the path to the home directory
2019-04-08 19:32:59 +00:00
let home_dir = dirs::home_dir().unwrap();
2019-04-12 23:11:40 +00:00
dir_string = contract_path(&current_dir, &home_dir, HOME_SYMBOL);
2019-04-04 18:18:15 +00:00
}
2019-04-09 03:35:14 +00:00
// Truncate the dir string to the maximum number of path components
let truncated_dir_string = truncate(dir_string, DIR_TRUNCATION_LENGTH);
module.new_segment("path", &truncated_dir_string);
2019-04-09 03:35:14 +00:00
module.get_prefix().set_value("in ");
2019-05-01 20:34:24 +00:00
Some(module)
2019-04-04 18:18:15 +00:00
}
2019-04-09 03:35:14 +00:00
/// Contract the root component of a path
2019-04-15 18:38:45 +00:00
///
/// Replaces the `top_level_path` in a given `full_path` with the provided
/// `top_level_replacement`.
2019-04-12 23:11:40 +00:00
fn contract_path(full_path: &Path, top_level_path: &Path, top_level_replacement: &str) -> String {
2019-04-09 03:35:14 +00:00
if !full_path.starts_with(top_level_path) {
return full_path.to_str().unwrap().to_string();
}
2019-04-08 19:32:59 +00:00
if full_path == top_level_path {
return top_level_replacement.to_string();
2019-04-07 21:12:22 +00:00
}
2019-04-07 20:43:11 +00:00
2019-04-08 19:32:59 +00:00
format!(
2019-04-08 21:35:38 +00:00
"{replacement}{separator}{path}",
replacement = top_level_replacement,
separator = "/",
2019-04-08 21:35:38 +00:00
path = full_path
2019-04-12 23:11:40 +00:00
.strip_prefix(top_level_path)
.unwrap()
2019-04-08 19:32:59 +00:00
.to_str()
.unwrap()
)
2019-04-07 21:12:22 +00:00
}
2019-04-07 20:43:11 +00:00
2019-04-09 03:35:14 +00:00
/// Truncate a path to only have a set number of path components
2019-04-15 18:38:45 +00:00
///
/// Will truncate a path to only show the last `length` components in a path.
/// If a length of `0` is provided, the path will not be truncated.
2019-04-09 03:35:14 +00:00
fn truncate(dir_string: String, length: usize) -> String {
if length == 0 {
return dir_string;
}
2019-07-14 21:54:45 +00:00
let components = dir_string.split('/').collect::<Vec<&str>>();
if components.len() <= length {
2019-04-09 03:35:14 +00:00
return dir_string;
}
let truncated_components = &components[components.len() - length..];
truncated_components.join("/")
2019-04-09 03:35:14 +00:00
}
2019-04-04 18:18:15 +00:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn contract_home_directory() {
let full_path = Path::new("/Users/astronaut/schematics/rocket");
let home = Path::new("/Users/astronaut");
let output = contract_path(full_path, home, "~");
assert_eq!(output, "~/schematics/rocket");
}
#[test]
fn contract_repo_directory() {
let full_path = Path::new("/Users/astronaut/dev/rocket-controls/src");
let repo_root = Path::new("/Users/astronaut/dev/rocket-controls");
let output = contract_path(full_path, repo_root, "rocket-controls");
assert_eq!(output, "rocket-controls/src");
}
#[test]
fn truncate_smaller_path_than_provided_length() {
let path = "~/starship";
let output = truncate(path.to_string(), 3);
assert_eq!(output, "~/starship")
2019-04-04 18:18:15 +00:00
}
#[test]
fn truncate_same_path_as_provided_length() {
let path = "~/starship/engines";
let output = truncate(path.to_string(), 3);
assert_eq!(output, "~/starship/engines")
}
#[test]
fn truncate_slightly_larger_path_than_provided_length() {
let path = "~/starship/engines/booster";
let output = truncate(path.to_string(), 3);
assert_eq!(output, "starship/engines/booster")
}
#[test]
fn truncate_larger_path_than_provided_length() {
let path = "~/starship/engines/booster/rocket";
let output = truncate(path.to_string(), 3);
assert_eq!(output, "engines/booster/rocket")
}
2019-04-04 18:18:15 +00:00
}