exa/options.rs

83 lines
2.1 KiB
Rust
Raw Normal View History

2014-05-25 16:14:50 +00:00
extern crate getopts;
use file::File;
2014-05-24 01:32:57 +00:00
use std::cmp::lexical_ordering;
2014-05-25 18:42:31 +00:00
use column::{Column, Permissions, FileName, FileSize, User, Group};
pub enum SortField {
2014-05-24 01:32:57 +00:00
Name, Extension, Size
}
pub struct Options {
pub showInvisibles: bool,
pub sortField: SortField,
2014-05-24 20:45:24 +00:00
pub reverse: bool,
2014-05-26 10:08:33 +00:00
pub dirs: Vec<String>,
}
impl SortField {
2014-05-26 10:08:33 +00:00
pub fn from_word(word: String) -> SortField {
match word.as_slice() {
"name" => Name,
"size" => Size,
2014-05-24 01:32:57 +00:00
"ext" => Extension,
_ => fail!("Invalid sorting order"),
}
}
fn sort(&self, files: &mut Vec<File>) {
match *self {
Name => files.sort_by(|a, b| a.name.cmp(&b.name)),
Size => files.sort_by(|a, b| a.stat.size.cmp(&b.stat.size)),
2014-05-24 01:32:57 +00:00
Extension => files.sort_by(|a, b| {
let exts = a.ext.cmp(&b.ext);
2014-05-24 01:32:57 +00:00
let names = a.name.cmp(&b.name);
lexical_ordering(exts, names)
}),
}
}
}
impl Options {
2014-05-26 10:08:33 +00:00
pub fn getopts(args: Vec<String>) -> Result<Options, getopts::Fail_> {
2014-05-25 16:14:50 +00:00
let opts = ~[
getopts::optflag("a", "all", "show dot-files"),
getopts::optflag("r", "reverse", "reverse order of files"),
getopts::optopt("s", "sort", "field to sort by", "WORD"),
];
match getopts::getopts(args.tail(), opts) {
Err(f) => Err(f),
Ok(matches) => Ok(Options {
showInvisibles: matches.opt_present("all"),
reverse: matches.opt_present("reverse"),
sortField: matches.opt_str("sort").map(|word| SortField::from_word(word)).unwrap_or(Name),
dirs: matches.free,
})
}
}
pub fn sort(&self, files: &mut Vec<File>) {
self.sortField.sort(files);
}
pub fn show(&self, f: &File) -> bool {
if self.showInvisibles {
true
} else {
!f.name.starts_with(".")
}
}
2014-05-25 18:42:31 +00:00
pub fn columns(&self) -> ~[Column] {
return ~[
Permissions,
FileSize(false),
User,
Group,
FileName,
];
}
}