2015-02-22 12:26:52 +00:00
|
|
|
use column::{Alignment, Column, Cell};
|
2015-02-22 12:55:13 +00:00
|
|
|
use xattr::Attribute;
|
2015-02-05 14:39:56 +00:00
|
|
|
use dir::Dir;
|
|
|
|
use file::{File, GREY};
|
|
|
|
use options::{Columns, FileFilter};
|
|
|
|
use users::OSUsers;
|
|
|
|
|
2015-02-10 16:08:10 +00:00
|
|
|
use locale;
|
2015-02-05 14:39:56 +00:00
|
|
|
use ansi_term::Style::Plain;
|
|
|
|
|
|
|
|
#[derive(PartialEq, Debug, Copy)]
|
|
|
|
pub struct Details {
|
|
|
|
pub columns: Columns,
|
|
|
|
pub header: bool,
|
|
|
|
pub tree: bool,
|
2015-02-22 12:55:13 +00:00
|
|
|
pub xattr: bool,
|
2015-02-05 14:39:56 +00:00
|
|
|
pub filter: FileFilter,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Details {
|
|
|
|
|
|
|
|
pub fn view(&self, dir: Option<&Dir>, files: &[File]) {
|
|
|
|
// The output gets formatted into columns, which looks nicer. To
|
|
|
|
// do this, we have to write the results into a table, instead of
|
|
|
|
// displaying each file immediately, then calculating the maximum
|
|
|
|
// width of each column based on the length of the results and
|
|
|
|
// padding the fields during output.
|
|
|
|
|
|
|
|
let columns = self.columns.for_dir(dir);
|
2015-02-10 18:14:56 +00:00
|
|
|
let locale = UserLocale::new();
|
2015-02-05 14:39:56 +00:00
|
|
|
let mut cache = OSUsers::empty_cache();
|
|
|
|
let mut table = Vec::new();
|
2015-02-21 13:54:35 +00:00
|
|
|
self.get_files(&columns[..], &mut cache, &locale, &mut table, files, 0);
|
2015-02-05 14:39:56 +00:00
|
|
|
|
|
|
|
if self.header {
|
|
|
|
let row = Row {
|
|
|
|
depth: 0,
|
|
|
|
cells: columns.iter().map(|c| Cell::paint(Plain.underline(), c.header())).collect(),
|
|
|
|
name: Plain.underline().paint("Name").to_string(),
|
|
|
|
last: false,
|
2015-02-22 12:26:52 +00:00
|
|
|
attrs: Vec::new(),
|
2015-02-05 14:39:56 +00:00
|
|
|
children: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
table.insert(0, row);
|
|
|
|
}
|
|
|
|
|
|
|
|
let column_widths: Vec<usize> = range(0, columns.len())
|
|
|
|
.map(|n| table.iter().map(|row| row.cells[n].length).max().unwrap_or(0))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut stack = Vec::new();
|
|
|
|
|
|
|
|
for row in table {
|
|
|
|
for (num, column) in columns.iter().enumerate() {
|
|
|
|
let padding = column_widths[num] - row.cells[num].length;
|
|
|
|
print!("{} ", column.alignment().pad_string(&row.cells[num].text, padding));
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.tree {
|
|
|
|
stack.resize(row.depth + 1, "├──");
|
|
|
|
stack[row.depth] = if row.last { "└──" } else { "├──" };
|
|
|
|
|
|
|
|
for i in 1 .. row.depth + 1 {
|
|
|
|
print!("{}", GREY.paint(stack[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
if row.children {
|
|
|
|
stack[row.depth] = if row.last { " " } else { "│ " };
|
|
|
|
}
|
|
|
|
|
|
|
|
if row.depth != 0 {
|
|
|
|
print!(" ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print!("{}\n", row.name);
|
2015-02-22 12:26:52 +00:00
|
|
|
|
2015-02-22 12:55:13 +00:00
|
|
|
if self.xattr {
|
2015-02-22 12:26:52 +00:00
|
|
|
let width = row.attrs.iter().map(|a| a.name().len()).max().unwrap_or(0);
|
|
|
|
for attr in row.attrs.iter() {
|
|
|
|
let name = attr.name();
|
|
|
|
println!("{}\t{}",
|
|
|
|
Alignment::Left.pad_string(name, width - name.len()),
|
|
|
|
attr.size()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2015-02-05 14:39:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-10 18:14:56 +00:00
|
|
|
fn get_files(&self, columns: &[Column], cache: &mut OSUsers, locale: &UserLocale, dest: &mut Vec<Row>, src: &[File], depth: usize) {
|
2015-02-05 14:39:56 +00:00
|
|
|
for (index, file) in src.iter().enumerate() {
|
|
|
|
|
|
|
|
let row = Row {
|
|
|
|
depth: depth,
|
2015-02-10 16:08:10 +00:00
|
|
|
cells: columns.iter().map(|c| file.display(c, cache, locale)).collect(),
|
2015-02-05 14:39:56 +00:00
|
|
|
name: file.file_name_view(),
|
|
|
|
last: index == src.len() - 1,
|
2015-02-22 12:55:13 +00:00
|
|
|
attrs: file.xattrs.clone(),
|
2015-02-05 14:39:56 +00:00
|
|
|
children: file.this.is_some(),
|
|
|
|
};
|
|
|
|
|
|
|
|
dest.push(row);
|
|
|
|
|
|
|
|
if self.tree {
|
|
|
|
if let Some(ref dir) = file.this {
|
|
|
|
let mut files = dir.files(true);
|
|
|
|
self.filter.transform_files(&mut files);
|
2015-02-22 12:26:52 +00:00
|
|
|
self.get_files(columns, cache, locale, dest, &files, depth + 1);
|
2015-02-05 14:39:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Row {
|
|
|
|
pub depth: usize,
|
|
|
|
pub cells: Vec<Cell>,
|
|
|
|
pub name: String,
|
|
|
|
pub last: bool,
|
2015-02-22 12:26:52 +00:00
|
|
|
pub attrs: Vec<Attribute>,
|
2015-02-05 14:39:56 +00:00
|
|
|
pub children: bool,
|
|
|
|
}
|
2015-02-10 18:14:56 +00:00
|
|
|
|
|
|
|
pub struct UserLocale {
|
|
|
|
pub time: locale::Time,
|
|
|
|
pub numeric: locale::Numeric,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl UserLocale {
|
|
|
|
pub fn new() -> UserLocale {
|
|
|
|
UserLocale {
|
2015-02-12 22:33:01 +00:00
|
|
|
time: locale::Time::load_user_locale().unwrap_or_else(|_| locale::Time::english()),
|
|
|
|
numeric: locale::Numeric::load_user_locale().unwrap_or_else(|_| locale::Numeric::english()),
|
2015-02-10 18:14:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn default() -> UserLocale {
|
|
|
|
UserLocale {
|
2015-02-12 22:33:01 +00:00
|
|
|
time: locale::Time::english(),
|
|
|
|
numeric: locale::Numeric::english(),
|
2015-02-10 18:14:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|