coreutils/mkdir/mkdir.rs

162 lines
4.9 KiB
Rust
Raw Normal View History

2014-01-01 08:08:27 +00:00
#[crate_id(name="mkdir", vers="1.0.0", author="Nicholas Juszczak")];
2014-01-03 23:32:39 +00:00
/**
2014-01-01 08:08:27 +00:00
* This file is part of the uutils coreutils package.
*
* (c) Nicholas Juszczak <juszczakn@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;
2014-02-05 03:39:17 +00:00
use std::io::{fs, stderr};
2014-01-03 23:32:39 +00:00
use std::num::strconv;
2014-01-01 08:08:27 +00:00
use extra::getopts::groups;
static VERSION: &'static str = "1.0.0";
2014-01-03 23:32:39 +00:00
/**
* Handles option parsing
*/
2014-01-01 08:08:27 +00:00
fn main() {
let args = os::args();
2014-01-01 08:08:27 +00:00
let opts = ~[
2014-01-03 23:32:39 +00:00
// Linux-specific options, not implemented
// groups::optflag("Z", "context", "set SELinux secutiry context" +
// " of each created directory to CTX"),
2014-01-03 23:32:39 +00:00
groups::optopt("m", "mode", "set file mode", "755"),
2014-01-01 08:08:27 +00:00
groups::optflag("p", "parents", "make parent directories as needed"),
groups::optflag("v", "verbose",
"print a message for each printed directory"),
groups::optflag("h", "help", "display this help"),
2014-02-06 02:51:41 +00:00
groups::optflag("V", "version", "display this version")
];
2014-01-01 08:08:27 +00:00
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;
}
};
2014-01-03 23:32:39 +00:00
if args.len() == 1 || matches.opt_present("help") {
2014-01-01 08:08:27 +00:00
print_help(opts);
return;
}
if matches.opt_present("version") {
println!("mkdir v{}", VERSION);
2014-01-01 08:08:27 +00:00
return;
}
let verbose_flag = matches.opt_present("verbose");
let mk_parents = matches.opt_present("parents");
2014-01-03 23:32:39 +00:00
// Translate a ~str in octal form to u32, default to 755
// Not tested on Windows
let mode_match = matches.opts_str(&[~"mode"]);
let mode: u32 = if mode_match.is_some() {
let m = mode_match.unwrap();
2014-01-03 23:32:39 +00:00
let res = strconv::from_str_common(m, 8, false, false, false,
strconv::ExpNone,
false, false);
if res.is_some() {
res.unwrap()
} else {
writeln!(&mut stderr() as &mut Writer,
"Error: no mode given");
os::set_exit_status(1);
return;
}
} else {
0o755
};
let dirs = matches.free;
2014-01-03 23:32:39 +00:00
exec(dirs, mk_parents, mode, verbose_flag);
2014-01-01 08:08:27 +00:00
}
fn print_help(opts: &[groups::OptGroup]) {
println!("mkdir v{} - make a new directory with the given path", VERSION);
println!("");
println!("Usage:");
print!("{}", groups::usage("Create the given DIRECTORY(ies)" +
" if they do not exist", opts));
2014-01-01 08:08:27 +00:00
}
2014-01-03 23:32:39 +00:00
/**
* Create the list of new directories
*/
fn exec(dirs: ~[~str], mk_parents: bool, mode: u32, verbose: bool) {
let mut parent_dirs: ~[~str] = ~[];
2014-01-05 22:03:13 +00:00
if mk_parents {
for dir in dirs.iter() {
let path = Path::new((*dir).clone());
// Build list of parent dirs which need to be created
let parent = path.dirname_str();
match parent {
Some(p) => {
if !Path::new(p).exists() {
parent_dirs.push(p.into_owned())
}
},
None => ()
}
}
2014-01-03 23:32:39 +00:00
}
// Recursively build parent dirs that are needed
if !parent_dirs.is_empty() {
exec(parent_dirs, mk_parents, mode, verbose);
}
for dir in dirs.iter() {
let path = Path::new((*dir).clone());
// Determine if parent directory to the one to
// be created exists
let parent = match path.dirname_str() {
2014-01-03 23:32:39 +00:00
Some(p) => p,
None => ""
};
let parent_exists = Path::new(parent).exists();
2014-01-03 23:32:39 +00:00
if parent_exists && !path.exists() {
// if mkdir failed return
if !mkdir(&path, mode) {return;}
if verbose {println!("{}", *dir);}
2014-01-03 23:32:39 +00:00
} else {
let mut error_msg = ~"";
2014-01-03 23:32:39 +00:00
if !parent_exists {
error_msg.push_str("Error: parent directory '");
error_msg.push_str(parent);
error_msg.push_str("' does not exist");
} else {
error_msg.push_str("Error: directory '");
error_msg.push_str(*dir);
error_msg.push_str("' already exists");
}
writeln!(&mut stderr() as &mut Writer,
"{}", error_msg);
2014-01-04 04:33:05 +00:00
os::set_exit_status(1);
2014-01-03 23:32:39 +00:00
}
}
}
/**
* Wrapper to catch errors, return false if failed
*/
fn mkdir(path: &Path, mode: u32) -> bool {
2014-02-05 03:39:17 +00:00
match fs::mkdir(path, mode) {
2014-01-03 23:32:39 +00:00
Ok(_) => true,
Err(e) => {
writeln!(&mut stderr() as &mut Writer,
"mkdir: test {}", e.to_str());
os::set_exit_status(1);
false
}
}
}