2019-04-12 02:11:55 +02:00
|
|
|
use std::borrow::Cow;
|
2019-01-01 22:52:08 +01:00
|
|
|
use std::io::{self, StdoutLock, Write};
|
2020-04-03 19:01:29 +02:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-04-13 22:46:17 +02:00
|
|
|
use std::process;
|
2017-11-22 23:05:09 +01:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2018-04-13 22:46:17 +02:00
|
|
|
use std::sync::Arc;
|
2017-10-10 08:01:17 +02:00
|
|
|
|
|
|
|
use ansi_term;
|
2020-04-03 19:01:29 +02:00
|
|
|
use lscolors::{LsColors, Style};
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2020-04-03 19:01:29 +02:00
|
|
|
use crate::exit_codes::ExitCode;
|
|
|
|
use crate::filesystem::strip_current_dir;
|
|
|
|
use crate::options::Options;
|
2018-02-24 17:02:14 +01:00
|
|
|
|
2019-01-01 22:52:08 +01:00
|
|
|
pub fn print_entry(
|
|
|
|
stdout: &mut StdoutLock,
|
|
|
|
entry: &PathBuf,
|
2020-04-03 11:39:32 +02:00
|
|
|
config: &Options,
|
2019-01-01 22:52:08 +01:00
|
|
|
wants_to_quit: &Arc<AtomicBool>,
|
|
|
|
) {
|
2018-02-24 17:02:14 +01:00
|
|
|
let path = if entry.is_absolute() {
|
|
|
|
entry.as_path()
|
|
|
|
} else {
|
|
|
|
strip_current_dir(entry)
|
|
|
|
};
|
2017-10-14 03:44:24 +02:00
|
|
|
|
2017-10-14 02:30:19 +02:00
|
|
|
let r = if let Some(ref ls_colors) = config.ls_colors {
|
2019-01-01 22:52:08 +01:00
|
|
|
print_entry_colorized(stdout, path, config, ls_colors, &wants_to_quit)
|
2017-10-14 02:30:19 +02:00
|
|
|
} else {
|
2019-01-01 22:52:08 +01:00
|
|
|
print_entry_uncolorized(stdout, path, config)
|
2017-10-14 02:30:19 +02:00
|
|
|
};
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2017-10-14 02:30:19 +02:00
|
|
|
if r.is_err() {
|
|
|
|
// Probably a broken pipe. Exit gracefully.
|
2018-10-03 15:27:53 +02:00
|
|
|
process::exit(ExitCode::GeneralError.into());
|
2017-10-14 02:30:19 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2020-04-03 11:39:32 +02:00
|
|
|
fn replace_path_separator<'a>(config: &Options, path: &mut Cow<'a, str>) {
|
2019-04-12 02:11:55 +02:00
|
|
|
match &config.path_separator {
|
2019-09-15 10:36:40 +02:00
|
|
|
None => {}
|
|
|
|
Some(sep) => {
|
|
|
|
*path.to_mut() = path.replace(std::path::MAIN_SEPARATOR, &sep);
|
|
|
|
}
|
2019-04-12 02:11:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 23:05:09 +01:00
|
|
|
fn print_entry_colorized(
|
2019-01-01 22:52:08 +01:00
|
|
|
stdout: &mut StdoutLock,
|
2017-11-22 23:05:09 +01:00
|
|
|
path: &Path,
|
2020-04-03 11:39:32 +02:00
|
|
|
config: &Options,
|
2017-11-22 23:05:09 +01:00
|
|
|
ls_colors: &LsColors,
|
|
|
|
wants_to_quit: &Arc<AtomicBool>,
|
|
|
|
) -> io::Result<()> {
|
2017-10-14 02:30:19 +02:00
|
|
|
let default_style = ansi_term::Style::default();
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2017-10-14 02:30:19 +02:00
|
|
|
// Traverse the path and colorize each component
|
2019-01-01 22:23:05 +01:00
|
|
|
for (component, style) in ls_colors.style_for_path_components(path) {
|
2018-12-09 14:56:05 +01:00
|
|
|
let style = style
|
|
|
|
.map(Style::to_ansi_term_style)
|
|
|
|
.unwrap_or(default_style);
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2019-09-15 10:36:40 +02:00
|
|
|
let mut path_string = component.to_string_lossy();
|
|
|
|
replace_path_separator(&config, &mut path_string);
|
2019-04-12 02:11:55 +02:00
|
|
|
write!(stdout, "{}", style.paint(path_string))?;
|
2017-11-22 23:05:09 +01:00
|
|
|
|
|
|
|
if wants_to_quit.load(Ordering::Relaxed) {
|
2019-01-26 02:13:16 +01:00
|
|
|
writeln!(stdout)?;
|
2018-10-03 15:27:53 +02:00
|
|
|
process::exit(ExitCode::KilledBySigint.into());
|
2017-11-22 23:05:09 +01:00
|
|
|
}
|
2017-10-14 02:30:19 +02:00
|
|
|
}
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2017-10-14 02:30:19 +02:00
|
|
|
if config.null_separator {
|
2019-01-01 22:52:08 +01:00
|
|
|
write!(stdout, "\0")
|
2017-10-10 08:01:17 +02:00
|
|
|
} else {
|
2019-01-26 02:13:16 +01:00
|
|
|
writeln!(stdout)
|
2017-10-14 02:30:19 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2019-01-01 22:52:08 +01:00
|
|
|
fn print_entry_uncolorized(
|
|
|
|
stdout: &mut StdoutLock,
|
|
|
|
path: &Path,
|
2020-04-03 11:39:32 +02:00
|
|
|
config: &Options,
|
2019-01-01 22:52:08 +01:00
|
|
|
) -> io::Result<()> {
|
2017-10-14 02:30:19 +02:00
|
|
|
let separator = if config.null_separator { "\0" } else { "\n" };
|
2017-10-10 08:01:17 +02:00
|
|
|
|
2019-09-15 10:36:40 +02:00
|
|
|
let mut path_str = path.to_string_lossy();
|
|
|
|
replace_path_separator(&config, &mut path_str);
|
2019-01-01 22:52:08 +01:00
|
|
|
write!(stdout, "{}{}", path_str, separator)
|
2017-10-14 03:44:24 +02:00
|
|
|
}
|