coreutils/du/du.rs

225 lines
8.4 KiB
Rust
Raw Normal View History

2013-12-04 02:08:42 +00:00
#[link(name="du", vers="1.0.0", author="Derek Chiang")];
/*
* This file is part of the uutils coreutils package.
*
* (c) Derek Chiang <derekchiang93@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
extern mod extra;
use std::os;
use std::io::stderr;
use std::io::fs;
use std::io::FileStat;
2013-12-08 07:44:32 +00:00
use std::option::Option;
2013-12-04 02:08:42 +00:00
use std::path::Path;
use extra::arc::Arc;
use extra::future::Future;
2013-12-08 07:44:32 +00:00
use extra::getopts::groups;
2013-12-04 02:08:42 +00:00
static VERSION: &'static str = "1.0.0";
2013-12-08 07:44:32 +00:00
struct Options {
all: bool,
max_depth: Option<uint>,
total: bool
}
2013-12-08 07:44:32 +00:00
fn du(path: &Path, options_arc: Arc<Options>, depth: uint) -> ~[Arc<FileStat>] {
2013-12-04 02:08:42 +00:00
let mut stats = ~[];
let mut futures = ~[];
2013-12-08 07:44:32 +00:00
let options = options_arc.get();
let mut my_stat = path.stat();
2013-12-04 02:08:42 +00:00
for f in fs::readdir(path).move_iter() {
match f.is_file() {
true => {
let stat = f.stat();
my_stat.size += stat.size;
2013-12-08 07:44:32 +00:00
if options.all {
stats.push(Arc::new(stat))
}
}
false => {
2013-12-08 07:44:32 +00:00
let oa_clone = options_arc.clone();
futures.push(do Future::spawn { du(&f, oa_clone, depth + 1) })
}
2013-12-04 02:08:42 +00:00
}
}
for future in futures.mut_iter() {
for stat_arc in future.get().move_rev_iter() {
let stat = stat_arc.get();
if stat.path.dir_path() == my_stat.path {
my_stat.size += stat.size;
}
2013-12-08 07:44:32 +00:00
if options.max_depth == None || depth < options.max_depth.unwrap() {
stats.push(stat_arc.clone());
}
}
2013-12-04 02:08:42 +00:00
}
stats.push(Arc::new(my_stat));
2013-12-04 02:08:42 +00:00
return stats;
}
fn main() {
let args = os::args();
let program = args[0].clone();
let opts = ~[
// In task
2013-12-04 02:08:42 +00:00
groups::optflag("a", "all", " write counts for all files, not just directories"),
// // In main
// groups::optflag("", "apparent-size", "print apparent sizes, rather than disk usage;
// although the apparent size is usually smaller, it may be larger due to holes
// in ('sparse') files, internal fragmentation, indirect blocks, and the like"),
// In main
// groups::optopt("B", "block-size", "scale sizes by SIZE before printing them.
// E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below.",
// "SIZE"),
// // In main
// groups::optflag("b", "bytes", "equivalent to '--apparent-size --block-size=1'"),
// In main
groups::optflag("c", "total", "produce a grand total"),
// In task
// groups::optflag("D", "dereference-args", "dereference only symlinks that are listed
// on the command line"),
// In main
// groups::optopt("", "files0-from", "summarize disk usage of the NUL-terminated file
// names specified in file F;
// If F is - then read names from standard input", "F"),
// // In task
// groups::optflag("H", "", "equivalent to --dereference-args (-D)"),
// In main
groups::optflag("h", "human-readable", "print sizes in human readable format (e.g., 1K 234M 2G)"),
// In main
groups::optflag("", "si", "like -h, but use powers of 1000 not 1024"),
// In main
groups::optflag("k", "", "like --block-size=1K"),
// // In task
// groups::optflag("l", "count-links", "count sizes many times if hard linked"),
// // In main
// groups::optflag("m", "", "like --block-size=1M"),
// // In task
// groups::optflag("L", "dereference", "dereference all symbolic links"),
// // In task
// groups::optflag("P", "no-dereference", "don't follow any symbolic links (this is the default)"),
// // In main
groups::optflag("0", "null", "end each output line with 0 byte rather than newline"),
// In main?
groups::optflag("S", "separate-dirs", "do not include size of subdirectories"),
// In main
groups::optflag("s", "summarize", "display only a total for each argument"),
// // In task
// groups::optflag("x", "one-file-system", "skip directories on different file systems"),
// // In task
// groups::optopt("X", "exclude-from", "exclude files that match any pattern in FILE", "FILE"),
// // In task
// groups::optopt("", "exclude", "exclude files that match PATTERN", "PATTERN"),
// // In main
groups::optopt("d", "max-depth", "print the total for a directory (or file, with --all)
only if it is N or fewer levels below the command
line argument; --max-depth=0 is the same as --summarize", "N"),
// // In main
// groups::optflag("", "time", "show time of the last modification of any file in the
// directory, or any of its subdirectories"),
// // In main
// groups::optopt("", "time", "show time as WORD instead of modification time:
// atime, access, use, ctime or status", "WORD"),
// // In main
// groups::optopt("", "time-style", "show times using style STYLE:
// full-iso, long-iso, iso, +FORMAT FORMAT is interpreted like 'date'", "STYLE"),
2013-12-04 02:08:42 +00:00
groups::optflag("", "help", "display this help and exit"),
groups::optflag("", "version", "output version information and exit"),
];
let matches = match groups::getopts(args.tail(), opts) {
Ok(m) => m,
Err(f) => {
writeln!(&mut stderr() as &mut Writer,
"Invalid options\n{}", f.to_err_msg());
os::set_exit_status(1);
return
}
};
if matches.opt_present("help") {
println("du " + VERSION + " - estimate file space usage");
println("");
println("Usage:");
println!(" {0:s} [OPTION]... [FILE]...", program);
println!(" {0:s} [OPTION]... --files0-from=F", program);
println("");
println(groups::usage("Summarize disk usage of each FILE, recursively for directories.", opts));
println("Display values are in units of the first available SIZE from
--block-size, and the DU_BLOCK_SIZE, BLOCK_SIZE and BLOCKSIZE environ
ment variables. Otherwise, units default to 1024 bytes (or 512 if
POSIXLY_CORRECT is set).
2013-12-04 02:08:42 +00:00
SIZE is an integer and optional unit (example: 10M is 10*1024*1024).
Units are K, M, G, T, P, E, Z, Y (powers of 1024) or KB, MB, ... (pow
ers of 1000).");
return
2013-12-04 02:08:42 +00:00
}
2013-12-08 07:44:32 +00:00
let options = Options{
all: matches.opt_present("all"),
max_depth: match (matches.opt_present("summarize"), matches.opt_str("max-depth")) {
(true, Some(s)) => match from_str::<uint>(s) {
Some(_) => {
println!("du: warning: summarizing conflicts with --max-depth={:s}", s);
return
},
None => {
println!("du: invalid maximum depth '{:s}'", s);
return
}
},
(true, None) => Some(0),
(false, Some(s)) => match from_str::<uint>(s) {
Some(u) => Some(u),
None => {
println!("du: invalid maximum depth '{:s}'", s);
return
}
},
(false, None) => None
},
total: matches.opt_present("total")
};
let strs = matches.free.clone();
let strs = match strs.is_empty() {
true => ~[~"./"],
false => strs
2013-12-04 02:08:42 +00:00
};
2013-12-08 07:44:32 +00:00
let options_arc = Arc::new(options);
2013-12-08 07:44:32 +00:00
let mut grand_total = 0;
2013-12-04 02:08:42 +00:00
for path_str in strs.iter() {
let path = Path::init(path_str.clone());
2013-12-08 07:44:32 +00:00
let iter = du(&path, options_arc.clone(), 0).move_iter();
let (_, len) = iter.size_hint();
let len = len.unwrap();
for (index, stat_arc) in iter.enumerate() {
2013-12-04 02:08:42 +00:00
let stat = stat_arc.get();
println!("{:<10} {}", stat.size, stat.path.display());
2013-12-08 07:44:32 +00:00
if options.total && index == (len - 1) {
// The last element will be the total size of the the path under
// path_str. We add it to the grand total.
grand_total += stat.size;
}
2013-12-04 02:08:42 +00:00
}
}
2013-12-08 07:44:32 +00:00
if options.total {
println!("{:<10} total", grand_total);
}
2013-12-04 02:08:42 +00:00
}