2019-07-29 00:15:40 +00:00
|
|
|
use path_slash::PathExt;
|
2019-04-12 23:11:40 +00:00
|
|
|
use std::path::Path;
|
2019-11-29 05:02:22 +00:00
|
|
|
use unicode_segmentation::UnicodeSegmentation;
|
2019-04-04 18:18:15 +00:00
|
|
|
|
2019-05-01 20:34:24 +00:00
|
|
|
use super::{Context, Module};
|
2019-04-19 20:57:14 +00:00
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
use crate::config::{RootModuleConfig, SegmentConfig};
|
|
|
|
use crate::configs::directory::DirectoryConfig;
|
|
|
|
|
2019-07-19 20:18:52 +00:00
|
|
|
/// 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**
|
2019-09-29 03:50:38 +00:00
|
|
|
/// - Paths beginning with the home directory or with a git repo right
|
|
|
|
/// inside the home directory will be contracted to `~`
|
2019-04-09 03:35:14 +00:00
|
|
|
/// - 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.
|
2019-07-02 20:12:53 +00:00
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
2019-04-08 19:32:59 +00:00
|
|
|
const HOME_SYMBOL: &str = "~";
|
2019-05-01 20:34:24 +00:00
|
|
|
|
2019-09-09 23:14:38 +00:00
|
|
|
let mut module = context.new_module("directory");
|
2019-10-15 11:34:48 +00:00
|
|
|
let config: DirectoryConfig = DirectoryConfig::try_load(module.config);
|
|
|
|
|
|
|
|
module.set_style(config.style);
|
2019-07-29 01:05:13 +00:00
|
|
|
|
2019-09-20 16:28:09 +00:00
|
|
|
// Using environment PWD is the standard approach for determining logical path
|
|
|
|
// If this is None for any reason, we fall back to reading the os-provided path
|
2019-10-24 10:37:44 +00:00
|
|
|
let physical_current_dir = if config.use_logical_path {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
match std::env::current_dir() {
|
2019-09-20 16:28:09 +00:00
|
|
|
Ok(x) => Some(x),
|
2019-10-24 10:37:44 +00:00
|
|
|
Err(e) => {
|
|
|
|
log::debug!("Error getting physical current directory: {}", e);
|
2019-09-20 16:28:09 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-10-24 10:37:44 +00:00
|
|
|
let current_dir = Path::new(
|
|
|
|
physical_current_dir
|
|
|
|
.as_ref()
|
|
|
|
.unwrap_or_else(|| &context.current_dir),
|
|
|
|
);
|
2019-09-20 16:28:09 +00:00
|
|
|
|
2019-08-27 01:52:45 +00:00
|
|
|
let home_dir = dirs::home_dir().unwrap();
|
2019-05-16 15:40:30 +00:00
|
|
|
log::debug!("Current directory: {:?}", current_dir);
|
2019-04-04 18:18:15 +00:00
|
|
|
|
2019-09-09 23:14:38 +00:00
|
|
|
let repo = &context.get_repo().ok()?;
|
|
|
|
|
|
|
|
let dir_string = match &repo.root {
|
2019-10-15 11:34:48 +00:00
|
|
|
Some(repo_root) if config.truncate_to_repo && (repo_root != &home_dir) => {
|
2019-08-17 03:29:22 +00:00
|
|
|
let repo_folder_name = repo_root.file_name().unwrap().to_str().unwrap();
|
2019-04-08 19:32:59 +00:00
|
|
|
|
2019-08-27 01:52:45 +00:00
|
|
|
// Contract the path to the git repo root
|
|
|
|
contract_path(current_dir, repo_root, repo_folder_name)
|
2019-08-17 03:29:22 +00:00
|
|
|
}
|
2019-08-27 01:52:45 +00:00
|
|
|
// Contract the path to the home directory
|
|
|
|
_ => contract_path(current_dir, &home_dir, HOME_SYMBOL),
|
2019-08-17 03:29:22 +00:00
|
|
|
};
|
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
|
2019-10-15 11:34:48 +00:00
|
|
|
let truncated_dir_string = truncate(dir_string, config.truncation_length as usize);
|
2019-08-27 01:52:45 +00:00
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
if config.fish_style_pwd_dir_length > 0 {
|
2019-08-27 01:52:45 +00:00
|
|
|
// If user is using fish style path, we need to add the segment first
|
2019-09-20 16:28:09 +00:00
|
|
|
let contracted_home_dir = contract_path(¤t_dir, &home_dir, HOME_SYMBOL);
|
2019-08-27 01:52:45 +00:00
|
|
|
let fish_style_dir = to_fish_style(
|
2019-10-15 11:34:48 +00:00
|
|
|
config.fish_style_pwd_dir_length as usize,
|
2019-08-27 01:52:45 +00:00
|
|
|
contracted_home_dir,
|
|
|
|
&truncated_dir_string,
|
|
|
|
);
|
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
module.create_segment(
|
|
|
|
"path",
|
|
|
|
&SegmentConfig {
|
|
|
|
value: &fish_style_dir,
|
|
|
|
style: None,
|
|
|
|
},
|
|
|
|
);
|
2019-08-27 01:52:45 +00:00
|
|
|
}
|
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
module.create_segment(
|
|
|
|
"path",
|
|
|
|
&SegmentConfig {
|
|
|
|
value: &truncated_dir_string,
|
|
|
|
style: None,
|
|
|
|
},
|
|
|
|
);
|
2019-04-09 03:35:14 +00:00
|
|
|
|
2019-12-06 19:19:11 +00:00
|
|
|
module.get_prefix().set_value(config.prefix);
|
2019-05-20 02:26:12 +00:00
|
|
|
|
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
|
|
|
///
|
2019-04-15 16:04:53 +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) {
|
2019-07-29 00:15:40 +00:00
|
|
|
return replace_c_dir(full_path.to_slash().unwrap());
|
2019-04-09 03:35:14 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 19:32:59 +00:00
|
|
|
if full_path == top_level_path {
|
2019-07-29 00:15:40 +00:00
|
|
|
return replace_c_dir(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,
|
2019-05-16 15:40:30 +00:00
|
|
|
separator = "/",
|
2019-07-29 00:15:40 +00:00
|
|
|
path = replace_c_dir(
|
|
|
|
full_path
|
|
|
|
.strip_prefix(top_level_path)
|
|
|
|
.unwrap()
|
|
|
|
.to_slash()
|
|
|
|
.unwrap()
|
|
|
|
)
|
2019-04-08 19:32:59 +00:00
|
|
|
)
|
2019-04-07 21:12:22 +00:00
|
|
|
}
|
2019-04-07 20:43:11 +00:00
|
|
|
|
2019-07-29 00:15:40 +00:00
|
|
|
/// Replaces "C://" with "/c/" within a Windows path
|
|
|
|
///
|
|
|
|
/// On non-Windows OS, does nothing
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
fn replace_c_dir(path: String) -> String {
|
2019-10-02 06:56:49 +00:00
|
|
|
path.replace("C:/", "/c")
|
2019-07-29 00:15:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Replaces "C://" with "/c/" within a Windows path
|
|
|
|
///
|
|
|
|
/// On non-Windows OS, does nothing
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
2019-07-31 23:48:51 +00:00
|
|
|
const fn replace_c_dir(path: String) -> String {
|
|
|
|
path
|
2019-07-29 00:15:40 +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
|
|
|
///
|
2019-04-15 16:04:53 +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-10-14 15:12:43 +00:00
|
|
|
let mut components = dir_string.split('/').collect::<Vec<&str>>();
|
|
|
|
|
|
|
|
// If the first element is "" then there was a leading "/" and we should remove it so we can check the actual count of components
|
2019-10-20 08:36:02 +00:00
|
|
|
if components[0] == "" {
|
2019-10-14 15:12:43 +00:00
|
|
|
components.remove(0);
|
|
|
|
}
|
|
|
|
|
2019-04-15 15:40:18 +00:00
|
|
|
if components.len() <= length {
|
2019-04-09 03:35:14 +00:00
|
|
|
return dir_string;
|
|
|
|
}
|
|
|
|
|
2019-04-15 15:40:18 +00:00
|
|
|
let truncated_components = &components[components.len() - length..];
|
2019-05-16 15:40:30 +00:00
|
|
|
truncated_components.join("/")
|
2019-04-09 03:35:14 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 01:52:45 +00:00
|
|
|
/// Takes part before contracted path and replaces it with fish style path
|
|
|
|
///
|
|
|
|
/// Will take the first letter of each directory before the contracted path and
|
|
|
|
/// use that in the path instead. See the following example.
|
|
|
|
///
|
|
|
|
/// Absolute Path: `/Users/Bob/Projects/work/a_repo`
|
|
|
|
/// Contracted Path: `a_repo`
|
|
|
|
/// With Fish Style: `~/P/w/a_repo`
|
|
|
|
///
|
|
|
|
/// Absolute Path: `/some/Path/not/in_a/repo/but_nested`
|
|
|
|
/// Contracted Path: `in_a/repo/but_nested`
|
|
|
|
/// With Fish Style: `/s/P/n/in_a/repo/but_nested`
|
|
|
|
fn to_fish_style(pwd_dir_length: usize, dir_string: String, truncated_dir_string: &str) -> String {
|
2019-09-20 14:37:55 +00:00
|
|
|
let replaced_dir_string = dir_string.trim_end_matches(truncated_dir_string).to_owned();
|
2019-08-27 01:52:45 +00:00
|
|
|
let components = replaced_dir_string.split('/').collect::<Vec<&str>>();
|
|
|
|
|
|
|
|
if components.is_empty() {
|
|
|
|
return replaced_dir_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
components
|
|
|
|
.into_iter()
|
2019-11-29 05:02:22 +00:00
|
|
|
.map(|word| -> String {
|
|
|
|
let chars = UnicodeSegmentation::graphemes(word, true).collect::<Vec<&str>>();
|
|
|
|
match word {
|
|
|
|
"" => "".to_string(),
|
|
|
|
_ if chars.len() <= pwd_dir_length => word.to_string(),
|
|
|
|
_ if word.starts_with('.') => chars[..=pwd_dir_length].join(""),
|
|
|
|
_ => chars[..pwd_dir_length].join(""),
|
|
|
|
}
|
2019-08-27 01:52:45 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join("/")
|
|
|
|
}
|
|
|
|
|
2019-04-04 18:18:15 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2019-04-15 16:04:53 +00:00
|
|
|
#[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");
|
|
|
|
}
|
|
|
|
|
2019-07-29 00:15:40 +00:00
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
fn contract_windows_style_home_directory() {
|
|
|
|
let full_path = Path::new("C:\\Users\\astronaut\\schematics\\rocket");
|
|
|
|
let home = Path::new("C:\\Users\\astronaut");
|
|
|
|
|
|
|
|
let output = contract_path(full_path, home, "~");
|
|
|
|
assert_eq!(output, "~/schematics/rocket");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
fn contract_windows_style_repo_directory() {
|
|
|
|
let full_path = Path::new("C:\\Users\\astronaut\\dev\\rocket-controls\\src");
|
|
|
|
let repo_root = Path::new("C:\\Users\\astronaut\\dev\\rocket-controls");
|
|
|
|
|
|
|
|
let output = contract_path(full_path, repo_root, "rocket-controls");
|
|
|
|
assert_eq!(output, "rocket-controls/src");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
fn contract_windows_style_no_top_level_directory() {
|
|
|
|
let full_path = Path::new("C:\\Some\\Other\\Path");
|
|
|
|
let top_level_path = Path::new("C:\\Users\\astronaut");
|
|
|
|
|
|
|
|
let output = contract_path(full_path, top_level_path, "~");
|
|
|
|
assert_eq!(output, "/c/Some/Other/Path");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
fn contract_windows_style_root_directory() {
|
|
|
|
let full_path = Path::new("C:\\");
|
|
|
|
let top_level_path = Path::new("C:\\Users\\astronaut");
|
|
|
|
|
|
|
|
let output = contract_path(full_path, top_level_path, "~");
|
|
|
|
assert_eq!(output, "/c");
|
|
|
|
}
|
|
|
|
|
2019-04-15 15:40:18 +00:00
|
|
|
#[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
|
|
|
}
|
2019-04-09 04:04:50 +00:00
|
|
|
|
|
|
|
#[test]
|
2019-04-15 15:40:18 +00:00
|
|
|
fn truncate_same_path_as_provided_length() {
|
|
|
|
let path = "~/starship/engines";
|
|
|
|
let output = truncate(path.to_string(), 3);
|
|
|
|
assert_eq!(output, "~/starship/engines")
|
|
|
|
}
|
2019-04-09 04:04:50 +00:00
|
|
|
|
2019-04-15 15:40:18 +00:00
|
|
|
#[test]
|
2019-04-15 16:04:53 +00:00
|
|
|
fn truncate_slightly_larger_path_than_provided_length() {
|
2019-04-15 15:40:18 +00:00
|
|
|
let path = "~/starship/engines/booster";
|
|
|
|
let output = truncate(path.to_string(), 3);
|
|
|
|
assert_eq!(output, "starship/engines/booster")
|
|
|
|
}
|
2019-04-09 04:04:50 +00:00
|
|
|
|
2019-04-15 15:40:18 +00:00
|
|
|
#[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-09 04:04:50 +00:00
|
|
|
}
|
2019-08-27 01:52:45 +00:00
|
|
|
|
2019-10-14 15:12:43 +00:00
|
|
|
#[test]
|
|
|
|
fn truncate_same_path_as_provided_length_from_root() {
|
|
|
|
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_from_root() {
|
|
|
|
let path = "/starship/engines/booster/rocket";
|
|
|
|
let output = truncate(path.to_string(), 3);
|
|
|
|
assert_eq!(output, "engines/booster/rocket");
|
|
|
|
}
|
|
|
|
|
2019-08-27 01:52:45 +00:00
|
|
|
#[test]
|
|
|
|
fn fish_style_with_user_home_contracted_path() {
|
|
|
|
let path = "~/starship/engines/booster/rocket";
|
|
|
|
let output = to_fish_style(1, path.to_string(), "engines/booster/rocket");
|
|
|
|
assert_eq!(output, "~/s/");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fish_style_with_user_home_contracted_path_and_dot_dir() {
|
|
|
|
let path = "~/.starship/engines/booster/rocket";
|
|
|
|
let output = to_fish_style(1, path.to_string(), "engines/booster/rocket");
|
|
|
|
assert_eq!(output, "~/.s/");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fish_style_with_no_contracted_path() {
|
|
|
|
// `truncatation_length = 2`
|
|
|
|
let path = "/absolute/Path/not/in_a/repo/but_nested";
|
|
|
|
let output = to_fish_style(1, path.to_string(), "repo/but_nested");
|
|
|
|
assert_eq!(output, "/a/P/n/i/");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fish_style_with_pwd_dir_len_no_contracted_path() {
|
|
|
|
// `truncatation_length = 2`
|
|
|
|
let path = "/absolute/Path/not/in_a/repo/but_nested";
|
|
|
|
let output = to_fish_style(2, path.to_string(), "repo/but_nested");
|
|
|
|
assert_eq!(output, "/ab/Pa/no/in/");
|
|
|
|
}
|
2019-09-20 14:37:55 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fish_style_with_duplicate_directories() {
|
|
|
|
let path = "~/starship/tmp/C++/C++/C++";
|
|
|
|
let output = to_fish_style(1, path.to_string(), "C++");
|
|
|
|
assert_eq!(output, "~/s/t/C/C/");
|
|
|
|
}
|
2019-11-29 05:02:22 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fish_style_with_unicode() {
|
|
|
|
let path = "~/starship/tmp/目录/a̐éö̲/目录";
|
|
|
|
let output = to_fish_style(1, path.to_string(), "目录");
|
|
|
|
assert_eq!(output, "~/s/t/目/a̐/");
|
|
|
|
}
|
2019-04-04 18:18:15 +00:00
|
|
|
}
|