2020-08-31 04:28:09 +02:00
|
|
|
use std::path::Path;
|
2020-08-21 21:37:51 +02:00
|
|
|
|
|
|
|
use crate::completion::{Context, Suggestion};
|
|
|
|
|
2020-08-31 04:28:09 +02:00
|
|
|
const SEP: char = std::path::MAIN_SEPARATOR;
|
2020-08-21 21:37:51 +02:00
|
|
|
|
2020-08-31 04:28:09 +02:00
|
|
|
pub struct Completer;
|
2020-08-21 21:37:51 +02:00
|
|
|
|
2020-08-31 04:28:09 +02:00
|
|
|
impl Completer {
|
2020-08-21 21:37:51 +02:00
|
|
|
pub fn complete(&self, _ctx: &Context<'_>, partial: &str) -> Vec<Suggestion> {
|
|
|
|
let expanded = nu_parser::expand_ndots(partial);
|
2020-08-31 04:28:09 +02:00
|
|
|
let expanded = expanded.as_ref();
|
|
|
|
|
|
|
|
let (base_dir_name, partial) = match expanded.rfind(SEP) {
|
|
|
|
Some(pos) => expanded.split_at(pos + SEP.len_utf8()),
|
|
|
|
None => ("", expanded),
|
|
|
|
};
|
|
|
|
|
|
|
|
let base_dir = if base_dir_name == "" {
|
|
|
|
Path::new(".")
|
|
|
|
} else {
|
|
|
|
Path::new(base_dir_name)
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Ok(result) = base_dir.read_dir() {
|
|
|
|
result
|
|
|
|
.filter_map(|entry| {
|
|
|
|
entry.ok().and_then(|entry| {
|
|
|
|
let mut file_name = entry.file_name().to_string_lossy().into_owned();
|
|
|
|
if file_name.starts_with(partial) {
|
|
|
|
let mut path = format!("{}{}", base_dir_name, file_name);
|
|
|
|
if entry.file_type().map(|ft| ft.is_dir()).unwrap_or(false) {
|
|
|
|
path.push(std::path::MAIN_SEPARATOR);
|
|
|
|
file_name.push(std::path::MAIN_SEPARATOR);
|
|
|
|
}
|
2020-08-21 21:37:51 +02:00
|
|
|
|
2020-08-31 04:28:09 +02:00
|
|
|
Some(Suggestion {
|
|
|
|
replacement: path,
|
|
|
|
display: file_name,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2020-08-21 21:37:51 +02:00
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|