2015-02-22 12:26:52 +00:00
|
|
|
#![feature(collections, core, env, libc, old_io, old_path, plugin, std_misc)]
|
2015-02-09 16:33:27 +00:00
|
|
|
|
2014-07-01 18:00:36 +00:00
|
|
|
extern crate ansi_term;
|
2015-02-09 16:33:27 +00:00
|
|
|
extern crate datetime;
|
2015-01-31 16:10:40 +00:00
|
|
|
extern crate getopts;
|
2015-02-10 16:08:10 +00:00
|
|
|
extern crate locale;
|
2015-01-31 16:10:40 +00:00
|
|
|
extern crate natord;
|
2014-12-18 07:00:31 +00:00
|
|
|
extern crate number_prefix;
|
2015-02-09 16:33:27 +00:00
|
|
|
extern crate pad;
|
2014-12-18 07:00:31 +00:00
|
|
|
extern crate users;
|
2014-07-21 21:05:39 +00:00
|
|
|
|
2015-01-27 15:01:17 +00:00
|
|
|
#[cfg(feature="git")]
|
|
|
|
extern crate git2;
|
|
|
|
|
2015-02-05 15:25:59 +00:00
|
|
|
use std::env;
|
2015-01-28 16:55:34 +00:00
|
|
|
use std::old_io::{fs, FileType};
|
2014-05-04 20:33:14 +00:00
|
|
|
|
2014-12-12 11:17:55 +00:00
|
|
|
use dir::Dir;
|
|
|
|
use file::File;
|
2015-02-05 14:39:56 +00:00
|
|
|
use options::{Options, View, DirAction};
|
|
|
|
use output::lines_view;
|
2014-12-12 11:17:55 +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 file;
|
2014-06-17 08:35:40 +00:00
|
|
|
pub mod filetype;
|
2014-05-24 01:17:43 +00:00
|
|
|
pub mod options;
|
2015-01-12 20:08:42 +00:00
|
|
|
pub mod output;
|
2014-07-22 14:41:20 +00:00
|
|
|
pub mod term;
|
2015-02-22 12:26:52 +00:00
|
|
|
pub mod attr;
|
2014-05-04 16:01:54 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
struct Exa<'a> {
|
|
|
|
count: usize,
|
|
|
|
options: Options,
|
|
|
|
dirs: Vec<Path>,
|
|
|
|
files: Vec<File<'a>>,
|
|
|
|
}
|
2015-01-12 18:44:39 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
impl<'a> Exa<'a> {
|
|
|
|
fn new(options: Options) -> Exa<'a> {
|
|
|
|
Exa {
|
|
|
|
count: 0,
|
|
|
|
options: options,
|
|
|
|
dirs: Vec::new(),
|
|
|
|
files: Vec::new(),
|
|
|
|
}
|
2014-11-26 08:05:07 +00:00
|
|
|
}
|
2014-11-25 01:27:26 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
fn load<T>(&mut self, iter: T) where T: Iterator<Item = &'a String> {
|
|
|
|
// 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 iter {
|
|
|
|
let path = Path::new(file);
|
|
|
|
match fs::stat(&path) {
|
|
|
|
Ok(stat) => {
|
|
|
|
if stat.kind == FileType::Directory {
|
|
|
|
if self.options.dir_action == DirAction::Tree {
|
|
|
|
self.files.push(File::with_stat(stat, &path, None, true));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.dirs.push(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.files.push(File::with_stat(stat, &path, None, false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => println!("{}: {}", file, e),
|
|
|
|
}
|
2014-11-25 01:27:26 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
self.count += 1;
|
|
|
|
}
|
2014-11-26 08:05:07 +00:00
|
|
|
}
|
2014-12-12 11:17:55 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
fn print_files(&self) {
|
|
|
|
if !self.files.is_empty() {
|
2015-02-21 13:54:35 +00:00
|
|
|
self.print(None, &self.files[..]);
|
2014-06-20 20:07:53 +00:00
|
|
|
}
|
2015-02-05 14:39:56 +00:00
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
fn print_dirs(&mut self) {
|
|
|
|
let mut first = self.files.is_empty();
|
|
|
|
|
|
|
|
// Directories are put on a stack rather than just being iterated through,
|
|
|
|
// as the vector can change as more directories are added.
|
|
|
|
loop {
|
|
|
|
let dir_path = match self.dirs.pop() {
|
|
|
|
None => break,
|
|
|
|
Some(f) => f,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Put a gap between directories, or between the list of files and the
|
|
|
|
// first directory.
|
|
|
|
if first {
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print!("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
match Dir::readdir(&dir_path) {
|
|
|
|
Ok(ref dir) => {
|
|
|
|
let mut files = dir.files(false);
|
|
|
|
self.options.transform_files(&mut files);
|
|
|
|
|
|
|
|
// When recursing, add any directories to the dirs stack
|
|
|
|
// backwards: the *last* element of the stack is used each
|
|
|
|
// time, so by inserting them backwards, they get displayed in
|
|
|
|
// the correct sort order.
|
|
|
|
if self.options.dir_action == DirAction::Recurse {
|
|
|
|
for dir in files.iter().filter(|f| f.stat.kind == FileType::Directory).rev() {
|
|
|
|
self.dirs.push(dir.path.clone());
|
|
|
|
}
|
2015-02-01 02:14:31 +00:00
|
|
|
}
|
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
if self.count > 1 {
|
|
|
|
println!("{}:", dir_path.display());
|
|
|
|
}
|
|
|
|
self.count += 1;
|
|
|
|
|
2015-02-21 13:54:35 +00:00
|
|
|
self.print(Some(dir), &files[..]);
|
2015-02-05 14:39:56 +00:00
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
println!("{}: {}", dir_path.display(), e);
|
|
|
|
return;
|
2014-07-22 21:19:51 +00:00
|
|
|
}
|
2015-02-05 14:39:56 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2014-07-22 21:19:51 +00:00
|
|
|
|
2015-02-05 14:39:56 +00:00
|
|
|
fn print(&self, dir: Option<&Dir>, files: &[File]) {
|
|
|
|
match self.options.view {
|
|
|
|
View::Grid(g) => g.view(files),
|
|
|
|
View::Details(d) => d.view(dir, files),
|
|
|
|
View::Lines => lines_view(files),
|
|
|
|
}
|
2014-06-21 17:12:29 +00:00
|
|
|
}
|
2014-07-05 21:36:43 +00:00
|
|
|
}
|
2015-01-12 21:14:27 +00:00
|
|
|
|
|
|
|
fn main() {
|
2015-02-12 22:33:01 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2015-01-12 21:14:27 +00:00
|
|
|
|
2015-01-12 21:47:05 +00:00
|
|
|
match Options::getopts(args.tail()) {
|
2015-02-05 14:39:56 +00:00
|
|
|
Ok((options, paths)) => {
|
|
|
|
let mut exa = Exa::new(options);
|
|
|
|
exa.load(paths.iter());
|
|
|
|
exa.print_files();
|
|
|
|
exa.print_dirs();
|
|
|
|
},
|
2015-01-23 19:27:06 +00:00
|
|
|
Err(e) => {
|
2015-01-12 21:14:27 +00:00
|
|
|
println!("{}", e);
|
2015-02-05 15:25:59 +00:00
|
|
|
env::set_exit_status(e.error_code());
|
2015-01-12 23:31:30 +00:00
|
|
|
},
|
2015-01-12 21:14:27 +00:00
|
|
|
};
|
|
|
|
}
|