2015-01-05 14:41:43 +00:00
|
|
|
#![feature(globs)]
|
|
|
|
|
2014-07-01 18:00:36 +00:00
|
|
|
extern crate ansi_term;
|
2014-12-18 07:00:31 +00:00
|
|
|
extern crate number_prefix;
|
2014-07-21 21:05:39 +00:00
|
|
|
extern crate unicode;
|
2014-12-18 07:00:31 +00:00
|
|
|
extern crate users;
|
2014-07-21 21:05:39 +00:00
|
|
|
|
2014-12-02 14:20:28 +00:00
|
|
|
use std::io::FileType;
|
2014-12-12 11:17:55 +00:00
|
|
|
use std::io::fs;
|
2015-01-04 13:56:07 +00:00
|
|
|
use std::iter::{AdditiveIterator, repeat};
|
2014-12-12 11:17:55 +00:00
|
|
|
use std::os;
|
2014-12-14 18:30:41 +00:00
|
|
|
use std::cmp::max;
|
2014-05-04 20:33:14 +00:00
|
|
|
|
2014-11-23 21:29:11 +00:00
|
|
|
use column::Alignment::Left;
|
2014-12-12 11:17:55 +00:00
|
|
|
use column::Column;
|
|
|
|
use dir::Dir;
|
|
|
|
use file::File;
|
2014-11-23 21:29:11 +00:00
|
|
|
use options::{Options, View};
|
2014-05-03 10:30:37 +00:00
|
|
|
|
2014-12-02 14:20:28 +00:00
|
|
|
use ansi_term::Style::Plain;
|
|
|
|
use ansi_term::strip_formatting;
|
2014-07-01 18:00:36 +00:00
|
|
|
|
2014-12-12 11:17:55 +00:00
|
|
|
use users::OSUsers;
|
|
|
|
|
2014-05-04 20:33:14 +00:00
|
|
|
pub mod column;
|
2014-06-16 23:27:05 +00:00
|
|
|
pub mod dir;
|
2014-05-04 20:33:14 +00:00
|
|
|
pub mod file;
|
2014-06-17 08:35:40 +00:00
|
|
|
pub mod filetype;
|
2014-05-24 01:17:43 +00:00
|
|
|
pub mod options;
|
2014-07-22 14:41:20 +00:00
|
|
|
pub mod term;
|
2014-05-04 16:01:54 +00:00
|
|
|
|
2014-05-03 10:30:37 +00:00
|
|
|
fn main() {
|
2014-11-23 21:29:11 +00:00
|
|
|
let args: Vec<String> = os::args();
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-05-25 16:14:50 +00:00
|
|
|
match Options::getopts(args) {
|
2014-11-25 15:54:42 +00:00
|
|
|
Err(error_code) => os::set_exit_status(error_code),
|
|
|
|
Ok(options) => exa(&options),
|
2014-05-05 09:51:24 +00:00
|
|
|
};
|
2014-05-03 10:30:37 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 01:27:26 +00:00
|
|
|
fn exa(opts: &Options) {
|
2014-11-26 08:05:07 +00:00
|
|
|
let mut dirs: Vec<String> = vec![];
|
|
|
|
let mut files: Vec<File> = vec![];
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2014-11-26 08:05:07 +00:00
|
|
|
// Separate the user-supplied paths into directories and files.
|
|
|
|
// Files are shown first, and then each directory is expanded
|
|
|
|
// and listed second.
|
|
|
|
for file in opts.path_strs.iter() {
|
|
|
|
let path = Path::new(file);
|
|
|
|
match fs::stat(&path) {
|
|
|
|
Ok(stat) => {
|
2014-12-02 14:20:28 +00:00
|
|
|
if !opts.list_dirs && stat.kind == FileType::Directory {
|
2014-11-26 08:05:07 +00:00
|
|
|
dirs.push(file.clone());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// May as well reuse the stat result from earlier
|
|
|
|
// instead of just using File::from_path().
|
2014-12-12 14:06:48 +00:00
|
|
|
files.push(File::with_stat(stat, &path, None));
|
2014-11-26 08:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => println!("{}: {}", file, e),
|
|
|
|
}
|
|
|
|
}
|
2014-11-25 01:27:26 +00:00
|
|
|
|
2014-07-05 21:36:43 +00:00
|
|
|
// It's only worth printing out directory names if the user supplied
|
|
|
|
// more than one of them.
|
2014-11-24 17:03:36 +00:00
|
|
|
let print_dir_names = opts.path_strs.len() > 1;
|
2014-11-26 08:05:07 +00:00
|
|
|
let mut first = files.is_empty();
|
2014-11-25 01:27:26 +00:00
|
|
|
|
2014-11-26 08:05:07 +00:00
|
|
|
if !files.is_empty() {
|
|
|
|
view(opts, files);
|
|
|
|
}
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2014-12-12 14:06:48 +00:00
|
|
|
for dir_name in dirs.iter() {
|
2014-07-05 21:36:43 +00:00
|
|
|
if first {
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print!("\n");
|
2014-06-20 20:07:53 +00:00
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-07-05 21:36:43 +00:00
|
|
|
match Dir::readdir(Path::new(dir_name.clone())) {
|
|
|
|
Ok(dir) => {
|
2014-07-22 21:19:51 +00:00
|
|
|
let unsorted_files = dir.files();
|
2014-11-24 17:03:36 +00:00
|
|
|
let files: Vec<File> = opts.transform_files(unsorted_files);
|
2014-07-22 21:19:51 +00:00
|
|
|
|
|
|
|
if print_dir_names {
|
|
|
|
println!("{}:", dir_name);
|
|
|
|
}
|
|
|
|
|
2014-11-26 08:05:07 +00:00
|
|
|
view(opts, files);
|
2014-07-05 21:36:43 +00:00
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
println!("{}: {}", dir_name, e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2014-06-21 17:12:29 +00:00
|
|
|
}
|
2014-07-05 21:36:43 +00:00
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-11-24 17:03:36 +00:00
|
|
|
fn view(options: &Options, files: Vec<File>) {
|
2014-11-26 08:05:07 +00:00
|
|
|
match options.view {
|
|
|
|
View::Details(ref cols) => details_view(options, cols, files),
|
|
|
|
View::Lines => lines_view(files),
|
|
|
|
View::Grid(across, width) => grid_view(across, width, files),
|
|
|
|
}
|
2014-11-24 17:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn lines_view(files: Vec<File>) {
|
2014-07-22 19:47:30 +00:00
|
|
|
for file in files.iter() {
|
|
|
|
println!("{}", file.file_name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
fn fit_into_grid(across: bool, console_width: uint, files: &Vec<File>) -> Option<(uint, Vec<uint>)> {
|
|
|
|
// TODO: this function could almost certainly be optimised...
|
|
|
|
// surely not *all* of the numbers of lines are worth searching through!
|
2015-01-05 14:41:43 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// Instead of numbers of columns, try to find the fewest number of *lines*
|
|
|
|
// that the output will fit in.
|
|
|
|
for num_lines in range(1, files.len()) {
|
2015-01-05 14:41:43 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// The number of columns is the number of files divided by the number
|
|
|
|
// of lines, *rounded up*.
|
|
|
|
let mut num_columns = files.len() / num_lines;
|
|
|
|
if files.len() % num_lines != 0 {
|
|
|
|
num_columns += 1;
|
|
|
|
}
|
2014-11-26 08:05:07 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// Early abort: if there are so many columns that the width of the
|
|
|
|
// *column separators* is bigger than the width of the screen, then
|
|
|
|
// don't even try to tabulate it.
|
|
|
|
// This is actually a necessary check, because the width is stored as
|
|
|
|
// a uint, and making it go negative makes it huge instead, but it
|
|
|
|
// also serves as a speed-up.
|
2014-12-14 19:04:52 +00:00
|
|
|
let separator_width = (num_columns - 1) * 2;
|
|
|
|
if console_width < separator_width {
|
2014-12-14 18:30:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-07-07 17:42:09 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// Remove the separator width from the available space.
|
2014-12-14 19:04:52 +00:00
|
|
|
let adjusted_width = console_width - separator_width;
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// Find the width of each column by adding the lengths of the file
|
|
|
|
// names in that column up.
|
2015-01-04 13:56:07 +00:00
|
|
|
let mut column_widths: Vec<uint> = repeat(0).take(num_columns).collect();
|
2014-12-14 18:30:41 +00:00
|
|
|
for (index, file) in files.iter().enumerate() {
|
|
|
|
let index = if across {
|
|
|
|
index % num_columns
|
2014-07-07 18:18:09 +00:00
|
|
|
}
|
|
|
|
else {
|
2014-12-14 18:30:41 +00:00
|
|
|
index / num_lines
|
2014-07-07 18:18:09 +00:00
|
|
|
};
|
2014-12-14 18:30:41 +00:00
|
|
|
column_widths[index] = max(column_widths[index], file.name.len());
|
|
|
|
}
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// If they all fit in the terminal, combined, then success!
|
|
|
|
if column_widths.iter().map(|&x| x).sum() < adjusted_width {
|
|
|
|
return Some((num_lines, column_widths));
|
|
|
|
}
|
|
|
|
}
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2014-12-14 18:30:41 +00:00
|
|
|
// If you get here you have really long file names.
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn grid_view(across: bool, console_width: uint, files: Vec<File>) {
|
|
|
|
if let Some((num_lines, widths)) = fit_into_grid(across, console_width, &files) {
|
|
|
|
for y in range(0, num_lines) {
|
|
|
|
for x in range(0, widths.len()) {
|
|
|
|
let num = if across {
|
|
|
|
y * widths.len() + x
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
y + num_lines * x
|
|
|
|
};
|
|
|
|
|
|
|
|
// Show whitespace in the place of trailing files
|
|
|
|
if num >= files.len() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let ref file = files[num];
|
|
|
|
let styled_name = file.file_colour().paint(file.name.as_slice()).to_string();
|
|
|
|
if x == widths.len() - 1 {
|
|
|
|
// The final column doesn't need to have trailing spaces
|
|
|
|
print!("{}", styled_name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert!(widths[x] >= file.name.len());
|
|
|
|
print!("{}", Left.pad_string(&styled_name, widths[x] - file.name.len() + 2));
|
|
|
|
}
|
2014-07-07 19:11:30 +00:00
|
|
|
}
|
2014-12-14 18:30:41 +00:00
|
|
|
print!("\n");
|
2014-07-06 16:33:40 +00:00
|
|
|
}
|
2014-12-14 18:30:41 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Drop down to lines view if the file names are too big for a grid
|
|
|
|
lines_view(files);
|
2014-07-06 16:33:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 17:03:36 +00:00
|
|
|
fn details_view(options: &Options, columns: &Vec<Column>, files: Vec<File>) {
|
2014-05-26 19:24:51 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-12-12 11:17:55 +00:00
|
|
|
let mut cache = OSUsers::empty_cache();
|
2014-06-21 16:50:37 +00:00
|
|
|
|
2014-06-23 17:26:35 +00:00
|
|
|
let mut table: Vec<Vec<String>> = files.iter()
|
2014-07-06 16:33:40 +00:00
|
|
|
.map(|f| columns.iter().map(|c| f.display(c, &mut cache)).collect())
|
2014-05-22 00:02:47 +00:00
|
|
|
.collect();
|
2014-05-03 13:26:49 +00:00
|
|
|
|
2014-06-23 17:26:35 +00:00
|
|
|
if options.header {
|
2014-11-26 07:36:09 +00:00
|
|
|
table.insert(0, columns.iter().map(|c| Plain.underline().paint(c.header()).to_string()).collect());
|
2014-06-23 17:26:35 +00:00
|
|
|
}
|
|
|
|
|
2014-05-26 19:24:51 +00:00
|
|
|
// Each column needs to have its invisible colour-formatting
|
|
|
|
// characters stripped before it has its width calculated, or the
|
|
|
|
// width will be incorrect and the columns won't line up properly.
|
|
|
|
// This is fairly expensive to do (it uses a regex), so the
|
|
|
|
// results are cached.
|
|
|
|
|
2014-05-25 16:14:50 +00:00
|
|
|
let lengths: Vec<Vec<uint>> = table.iter()
|
2014-12-12 14:06:48 +00:00
|
|
|
.map(|row| row.iter().map(|col| strip_formatting(col.as_slice()).len()).collect())
|
2014-05-25 16:14:50 +00:00
|
|
|
.collect();
|
|
|
|
|
2014-07-06 16:33:40 +00:00
|
|
|
let column_widths: Vec<uint> = range(0, columns.len())
|
2014-11-24 01:24:45 +00:00
|
|
|
.map(|n| lengths.iter().map(|row| row[n]).max().unwrap_or(0))
|
2014-05-22 00:02:47 +00:00
|
|
|
.collect();
|
2014-05-03 10:30:37 +00:00
|
|
|
|
2014-06-28 14:40:12 +00:00
|
|
|
for (field_widths, row) in lengths.iter().zip(table.iter()) {
|
2014-07-06 16:33:40 +00:00
|
|
|
for (num, column) in columns.iter().enumerate() {
|
2014-06-20 18:43:15 +00:00
|
|
|
if num != 0 {
|
2014-12-14 18:30:41 +00:00
|
|
|
print!(" "); // Separator
|
2014-05-03 11:15:35 +00:00
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-07-06 16:33:40 +00:00
|
|
|
if num == columns.len() - 1 {
|
2014-12-14 18:30:41 +00:00
|
|
|
// The final column doesn't need to have trailing spaces
|
2014-11-23 21:57:33 +00:00
|
|
|
print!("{}", row[num]);
|
2014-06-20 18:43:15 +00:00
|
|
|
}
|
|
|
|
else {
|
2014-07-21 21:05:04 +00:00
|
|
|
let padding = column_widths[num] - field_widths[num];
|
2014-11-23 21:29:11 +00:00
|
|
|
print!("{}", column.alignment().pad_string(&row[num], padding));
|
2014-06-20 18:43:15 +00:00
|
|
|
}
|
2014-05-03 11:15:35 +00:00
|
|
|
}
|
|
|
|
print!("\n");
|
2014-05-03 10:30:37 +00:00
|
|
|
}
|
|
|
|
}
|