lsd/src/display.rs

142 lines
3.9 KiB
Rust
Raw Normal View History

2018-12-13 15:50:47 +00:00
use color::ColoredString;
use flags::Flags;
2018-12-13 07:03:49 +00:00
use std::io::Write;
2018-12-02 16:22:51 +00:00
use term_grid::{Cell, Direction, Filling, Grid, GridOptions};
use terminal_size::terminal_size;
use unicode_width::UnicodeWidthStr;
2018-12-02 16:22:51 +00:00
2018-12-13 15:50:47 +00:00
const EDGE: &str = "\u{251c}\u{2500}\u{2500}"; // "├──"
const LINE: &str = "\u{2502} "; // "├ "
const CORNER: &str = "\u{2514}\u{2500}\u{2500}"; // "└──"
2018-12-04 13:54:56 +00:00
pub struct Display {
flags: Flags,
2018-12-02 16:22:51 +00:00
}
impl Display {
2018-12-13 15:50:47 +00:00
pub fn new(flags: Flags) -> Self {
Self { flags }
2018-12-02 16:22:51 +00:00
}
pub fn print_outputs(&self, outputs: Vec<String>) {
if self.flags.display_long || self.flags.display_online {
2018-12-02 16:22:51 +00:00
self.print_one_per_line(&outputs);
} else {
self.print_grid(outputs);
}
}
fn print_grid(&self, outputs: Vec<String>) {
let term_width = match terminal_size() {
Some((w, _)) => w.0 as usize,
None => panic!("failed to retrieve terminal size"),
};
let mut grid = Grid::new(GridOptions {
filling: Filling::Spaces(2),
2018-12-07 18:44:26 +00:00
direction: Direction::TopToBottom,
2018-12-02 16:22:51 +00:00
});
for output in outputs {
grid.add(Cell {
width: self.get_visible_width(&output),
contents: output,
});
}
2018-12-05 03:44:01 +00:00
if let Some(gridded_output) = grid.fit_into_width(term_width) {
print!("{}", gridded_output);
2018-12-13 15:50:47 +00:00
std::io::stdout().flush().expect("Could not flush stdout");
2018-12-05 03:44:01 +00:00
} else {
//does not fit into grid, usually because (some) filename(s)
//are longer or almost as long as term_width
//print line by line instead!
let lined_output = grid.fit_into_columns(1);
print!("{}", lined_output);
2018-12-13 15:50:47 +00:00
std::io::stdout().flush().expect("Could not flush stdout");
2018-12-05 03:44:01 +00:00
}
2018-12-02 16:22:51 +00:00
}
2018-12-13 15:50:47 +00:00
pub fn print_tree_row(&self, output: &ColoredString, depth: usize, last: bool) {
2018-12-04 13:54:56 +00:00
let mut res = String::new();
for _ in 0..depth {
res += LINE;
}
if last {
res += EDGE;
} else {
res += CORNER;
}
res += " ";
res += &output;
println!("{}", res);
}
2018-12-02 17:12:53 +00:00
fn print_one_per_line(&self, outputs: &[String]) {
2018-12-02 17:16:02 +00:00
let mut res = String::new();
2018-12-02 16:22:51 +00:00
for output in outputs {
2018-12-02 17:16:02 +00:00
res += output;
res += "\n";
2018-12-02 16:22:51 +00:00
}
2018-12-02 17:16:02 +00:00
print!("{}", res);
2018-12-13 15:50:47 +00:00
std::io::stdout().flush().expect("Could not flush stdout");
2018-12-02 16:22:51 +00:00
}
2018-12-02 17:12:53 +00:00
fn get_visible_width(&self, input: &str) -> usize {
2018-12-02 16:22:51 +00:00
let mut nb_invisible_char = 0;
for (idx, _) in input.match_indices("[38;5;") {
let color_code = input.chars().skip(idx + 6);
let mut code_size = 0;
color_code
.skip_while(|x| {
code_size += 1;
char::is_numeric(*x)
2018-12-12 10:17:32 +00:00
})
.count();
2018-12-02 16:22:51 +00:00
nb_invisible_char += 6 + code_size; /* "[38;5;" + color number + "m" */
}
nb_invisible_char += 3; /* "[0m" */
UnicodeWidthStr::width(input) - nb_invisible_char
2018-12-02 16:22:51 +00:00
}
}
#[cfg(test)]
mod tests {
use std::path::Path;
use super::*;
use color;
use color::Colors;
use flags::WhenFlag;
use icon;
use icon::Icons;
use meta::{FileType, Name};
#[test]
fn test_display_get_visible_width() {
let display = Display::new(Flags::default());
for (s, l) in &[
(",!", 22),
("ASCII1234-_", 11),
("制作样本。", 10),
("日本語", 6),
("샘플은 무료로 드리겠습니다", 26),
("👩🐩", 4),
("🔬", 2),
] {
let path = Path::new(s);
let name = Name::new(&path, FileType::File);
let output = name.render(&Colors::new(color::Theme::Default), &Icons::new(icon::Theme::Default));
assert_eq!(display.get_visible_width(&output), *l);
}
}
}