| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- extern crate getopts;
- use file::File;
- use std::cmp::lexical_ordering;
- use column::{Column, Permissions, FileName, FileSize, User, Group};
- pub enum SortField {
- Name, Extension, Size
- }
- pub struct Options {
- pub showInvisibles: bool,
- pub sortField: SortField,
- pub reverse: bool,
- pub dirs: Vec<String>,
- pub columns: ~[Column],
- }
- impl SortField {
- fn from_word(word: String) -> SortField {
- match word.as_slice() {
- "name" => Name,
- "size" => Size,
- "ext" => Extension,
- _ => fail!("Invalid sorting order"),
- }
- }
- }
- impl Options {
- pub fn getopts(args: Vec<String>) -> Result<Options, getopts::Fail_> {
- let opts = ~[
- getopts::optflag("a", "all", "show dot-files"),
- getopts::optflag("b", "binary", "use binary prefixes in file sizes"),
- 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.clone(),
- columns: Options::columns(matches),
- })
- }
- }
- fn columns(matches: getopts::Matches) -> ~[Column] {
- return ~[
- Permissions,
- FileSize(matches.opt_present("binary")),
- User,
- Group,
- FileName,
- ];
- }
- fn show(&self, f: &File) -> bool {
- if self.showInvisibles {
- true
- } else {
- !f.name.starts_with(".")
- }
- }
- pub fn transform_files<'a>(&self, unordered_files: &'a Vec<File<'a>>) -> Vec<&'a File<'a>> {
- let mut files: Vec<&'a File<'a>> = unordered_files.iter()
- .filter(|&f| self.show(f))
- .collect();
- match self.sortField {
- Name => files.sort_by(|a, b| a.name.cmp(&b.name)),
- Size => files.sort_by(|a, b| a.stat.size.cmp(&b.stat.size)),
- Extension => files.sort_by(|a, b| {
- let exts = a.ext.cmp(&b.ext);
- let names = a.name.cmp(&b.name);
- lexical_ordering(exts, names)
- }),
- }
- if self.reverse {
- files.reverse();
- }
- return files;
- }
- }
|