2014-05-22 00:02:47 +00:00
|
|
|
#![feature(phase)]
|
|
|
|
extern crate regex;
|
2014-06-18 12:39:55 +00:00
|
|
|
#[phase(plugin)] extern crate regex_macros;
|
2014-07-01 18:00:36 +00:00
|
|
|
extern crate ansi_term;
|
2014-07-21 21:05:39 +00:00
|
|
|
extern crate unicode;
|
|
|
|
|
2014-05-03 10:30:37 +00:00
|
|
|
use std::os;
|
2014-05-04 20:33:14 +00:00
|
|
|
|
|
|
|
use file::File;
|
2014-06-16 23:27:05 +00:00
|
|
|
use dir::Dir;
|
2014-07-06 16:33:40 +00:00
|
|
|
use column::{Column, Left};
|
2014-07-22 19:47:30 +00:00
|
|
|
use options::{Options, Details, Lines, Grid};
|
2014-06-21 16:50:37 +00:00
|
|
|
use unix::Unix;
|
2014-05-03 10:30:37 +00:00
|
|
|
|
2014-07-04 08:54:14 +00:00
|
|
|
use ansi_term::{Paint, Plain, strip_formatting};
|
2014-07-01 18:00:36 +00:00
|
|
|
|
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 format;
|
|
|
|
pub mod file;
|
2014-06-17 08:35:40 +00:00
|
|
|
pub mod filetype;
|
2014-05-05 10:29:50 +00:00
|
|
|
pub mod unix;
|
2014-05-24 01:17:43 +00:00
|
|
|
pub mod options;
|
2014-06-01 10:54:31 +00:00
|
|
|
pub mod sort;
|
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-05-26 19:24:51 +00:00
|
|
|
let args = os::args();
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-05-25 16:14:50 +00:00
|
|
|
match Options::getopts(args) {
|
2014-06-18 12:39:55 +00:00
|
|
|
Err(err) => println!("Invalid options:\n{}", err),
|
2014-07-05 21:36:43 +00:00
|
|
|
Ok(opts) => exa(&opts),
|
2014-05-05 09:51:24 +00:00
|
|
|
};
|
2014-05-03 10:30:37 +00:00
|
|
|
}
|
|
|
|
|
2014-07-05 21:36:43 +00:00
|
|
|
fn exa(opts: &Options) {
|
|
|
|
let mut first = true;
|
|
|
|
|
|
|
|
// It's only worth printing out directory names if the user supplied
|
|
|
|
// more than one of them.
|
|
|
|
let print_dir_names = opts.dirs.len() > 1;
|
|
|
|
|
|
|
|
for dir_name in opts.dirs.clone().move_iter() {
|
|
|
|
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) => {
|
|
|
|
if print_dir_names { println!("{}:", dir_name); }
|
2014-07-06 16:33:40 +00:00
|
|
|
match opts.view {
|
2014-07-22 19:47:30 +00:00
|
|
|
Details(ref cols) => details_view(opts, cols, dir),
|
|
|
|
Lines => lines_view(opts, dir),
|
|
|
|
Grid(across, width) => grid_view(opts, across, width, dir),
|
2014-07-06 16:33:40 +00:00
|
|
|
}
|
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-07-22 19:47:30 +00:00
|
|
|
fn lines_view(options: &Options, dir: Dir) {
|
|
|
|
let unsorted_files = dir.files();
|
|
|
|
let files: Vec<&File> = options.transform_files(&unsorted_files);
|
|
|
|
|
|
|
|
for file in files.iter() {
|
|
|
|
println!("{}", file.file_name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn grid_view(options: &Options, across: bool, console_width: uint, dir: Dir) {
|
2014-07-06 16:33:40 +00:00
|
|
|
let unsorted_files = dir.files();
|
|
|
|
let files: Vec<&File> = options.transform_files(&unsorted_files);
|
|
|
|
|
2014-07-22 14:41:20 +00:00
|
|
|
let max_column_length = files.iter().map(|f| f.file_name_width()).max().unwrap();
|
2014-07-07 17:42:09 +00:00
|
|
|
let num_columns = (console_width + 1) / (max_column_length + 1);
|
2014-07-07 18:18:09 +00:00
|
|
|
let count = files.len();
|
2014-07-07 17:42:09 +00:00
|
|
|
|
2014-07-07 18:18:09 +00:00
|
|
|
let mut num_rows = count / num_columns;
|
|
|
|
if count % num_columns != 0 {
|
2014-07-07 17:42:09 +00:00
|
|
|
num_rows += 1;
|
|
|
|
}
|
2014-07-06 16:33:40 +00:00
|
|
|
|
2014-07-07 17:42:09 +00:00
|
|
|
for y in range(0, num_rows) {
|
2014-07-06 16:33:40 +00:00
|
|
|
for x in range(0, num_columns) {
|
2014-07-07 18:18:09 +00:00
|
|
|
let num = if across {
|
|
|
|
y * num_columns + x
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
y + num_rows * x
|
|
|
|
};
|
|
|
|
|
|
|
|
if num >= count {
|
2014-07-07 17:42:09 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-07-21 21:05:04 +00:00
|
|
|
let file = files[num];
|
2014-07-06 17:00:27 +00:00
|
|
|
let file_name = file.name.clone();
|
|
|
|
let styled_name = file.file_colour().paint(file_name.as_slice());
|
2014-07-07 19:11:30 +00:00
|
|
|
if x == num_columns - 1 {
|
|
|
|
print!("{}", styled_name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print!("{}", Left.pad_string(&styled_name, max_column_length - file_name.len() + 1));
|
|
|
|
}
|
2014-07-06 16:33:40 +00:00
|
|
|
}
|
|
|
|
print!("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-22 19:47:30 +00:00
|
|
|
fn details_view(options: &Options, columns: &Vec<Column>, dir: Dir) {
|
2014-06-16 23:27:05 +00:00
|
|
|
let unsorted_files = dir.files();
|
|
|
|
let files: Vec<&File> = options.transform_files(&unsorted_files);
|
2014-05-25 16:14:50 +00:00
|
|
|
|
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-06-21 16:50:37 +00:00
|
|
|
let mut cache = Unix::empty_cache();
|
|
|
|
|
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-07-06 16:33:40 +00:00
|
|
|
table.unshift(columns.iter().map(|c| Plain.underline().paint(c.header())).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-07-02 20:47:43 +00:00
|
|
|
.map(|row| row.iter().map(|col| strip_formatting(col.clone()).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-07-21 21:05:04 +00:00
|
|
|
.map(|n| lengths.iter().map(|row| row[n]).max().unwrap())
|
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-05-03 11:15:35 +00:00
|
|
|
print!(" ");
|
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2014-07-06 16:33:40 +00:00
|
|
|
if num == columns.len() - 1 {
|
2014-06-28 14:17:57 +00:00
|
|
|
print!("{}", row.get(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-06-28 14:40:12 +00:00
|
|
|
print!("{}", column.alignment().pad_string(row.get(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
|
|
|
}
|
|
|
|
}
|