coreutils/basename/basename.rs

112 lines
2.7 KiB
Rust
Raw Normal View History

2014-03-31 16:40:21 +00:00
#![feature(macro_rules)]
#![crate_id(name="basename", vers="1.0.0", author="Jimmy Lu")]
2013-12-03 04:41:16 +00:00
/*
* This file is part of the uutils coreutils package.
*
* (c) Jimmy Lu <jimmy.lu.2011@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
extern crate getopts;
extern crate libc;
2013-12-03 04:41:16 +00:00
use std::io::{print, println};
2013-12-03 04:41:16 +00:00
use std::os;
use std::str::StrSlice;
2014-02-23 22:17:48 +00:00
#[path = "../common/util.rs"]
mod util;
2013-12-03 04:41:16 +00:00
static NAME: &'static str = "basename";
static VERSION: &'static str = "1.0.0";
2014-02-05 10:23:53 +00:00
2013-12-03 04:41:16 +00:00
fn main() {
2014-05-17 10:32:14 +00:00
let args: Vec<StrBuf> = os::args().iter().map(|x| x.to_strbuf()).collect();
let program = strip_dir(os::args().get(0));
2013-12-03 04:41:16 +00:00
//
// Argument parsing
//
let opts = ~[
getopts::optflag("h", "help", "display this help and exit"),
getopts::optflag("V", "version", "output version information and exit"),
2013-12-03 04:41:16 +00:00
];
let matches = match getopts::getopts(args.tail(), opts) {
Ok(m) => m,
2014-02-05 10:23:53 +00:00
Err(f) => crash!(1, "Invalid options\n{}", f.to_err_msg())
2013-12-03 04:41:16 +00:00
};
if matches.opt_present("help") {
println!("Usage: {0:s} NAME [SUFFIX]", program);
println!(" or: {0:s} OPTION", program);
println!("Print NAME with any leading directory components removed.");
println!("If specified, also remove a trailing SUFFIX.");
2013-12-03 04:41:16 +00:00
2014-05-17 10:32:14 +00:00
print(getopts::usage("", opts).as_slice());
2013-12-03 04:41:16 +00:00
return;
}
if matches.opt_present("version") {
println(program + " " + VERSION);
2013-12-03 04:41:16 +00:00
return;
}
// too few arguments
if args.len() < 2 {
println(program + ": missing operand");
println("Try `" + program + " --help' for more information.");
2013-12-03 04:41:16 +00:00
return;
}
// too many arguments
else if args.len() > 3 {
2014-05-17 10:32:14 +00:00
println(program + ": extra operand `" + args.get(3).as_slice() + "'");
println("Try `" + program + " --help' for more information.");
2013-12-03 04:41:16 +00:00
return;
}
//
// Main Program Processing
//
2014-05-16 08:32:58 +00:00
let fullname = args.get(1).clone();
2013-12-03 04:41:16 +00:00
2014-05-17 10:32:14 +00:00
let mut name = strip_dir(&fullname.as_slice().to_owned());
2013-12-03 04:41:16 +00:00
if args.len() > 2 {
2014-05-16 08:32:58 +00:00
let suffix = args.get(2).clone();
2014-05-17 10:32:14 +00:00
name = strip_suffix(&name, &suffix.to_owned());
2013-12-03 04:41:16 +00:00
}
println(name);
2013-12-03 04:41:16 +00:00
}
2014-05-07 06:25:49 +00:00
fn strip_dir(fullname: &~str) -> ~str {
let mut name = StrBuf::new();
2013-12-03 04:41:16 +00:00
2014-05-07 06:25:49 +00:00
for c in fullname.chars().rev() {
2013-12-03 04:41:16 +00:00
if c == '/' || c == '\\' {
2014-05-07 06:25:49 +00:00
break;
2013-12-03 04:41:16 +00:00
}
2014-05-07 06:25:49 +00:00
name.push_char(c);
2013-12-03 04:41:16 +00:00
}
2014-05-07 06:25:49 +00:00
return name.as_slice().chars().rev().collect();
2013-12-03 04:41:16 +00:00
}
fn strip_suffix(name: &~str, suffix: &~str) -> ~str {
2013-12-03 04:41:16 +00:00
if name == suffix {
return name.clone();
}
if name.ends_with(*suffix) {
return name.slice_to(name.len() - suffix.len()).into_owned();
2013-12-03 04:41:16 +00:00
}
return name.clone();
}