coreutils/src/bin/uutils.rs

114 lines
3.3 KiB
Rust
Raw Normal View History

2014-07-06 08:13:36 +00:00
#![crate_name = "uutils"]
2014-05-28 11:43:37 +00:00
/*
* This file is part of the uutils coreutils package.
*
* (c) Michael Gehring <mg@ebfe.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
include!(concat!(env!("OUT_DIR"), "/uutils_crates.rs"));
2014-05-28 11:43:37 +00:00
2014-11-04 06:19:52 +00:00
use std::collections::hash_map::HashMap;
use std::io::Write;
2020-01-28 05:14:11 +00:00
use std::path::Path;
extern crate uucore;
2014-05-28 11:43:37 +00:00
static NAME: &str = "uutils";
static VERSION: &str = env!("CARGO_PKG_VERSION");
2014-05-28 11:43:37 +00:00
include!(concat!(env!("OUT_DIR"), "/uutils_map.rs"));
fn usage(cmap: &UtilityMap) {
2014-06-19 20:05:43 +00:00
println!("{} {}", NAME, VERSION);
println!();
2014-06-19 20:05:43 +00:00
println!("Usage:");
println!(" {} [util [arguments...]]\n", NAME);
2014-06-19 20:05:43 +00:00
println!("Currently defined functions:");
#[allow(clippy::map_clone)]
let mut utils: Vec<&str> = cmap.keys().map(|&s| s).collect();
2014-06-19 20:05:43 +00:00
utils.sort();
2016-01-05 19:42:52 +00:00
for util in utils {
2014-06-19 20:05:43 +00:00
println!("\t{}", util);
}
2014-05-28 11:43:37 +00:00
}
fn main() {
uucore::panic::install_sigpipe_hook();
2014-05-28 11:43:37 +00:00
let umap = util_map();
let mut args: Vec<String> = uucore::args().collect();
2014-05-28 11:43:37 +00:00
// try binary name as util name.
let args0 = args[0].clone();
let binary = Path::new(&args0[..]);
let binary_as_util = binary.file_stem().unwrap().to_str().unwrap();
2014-07-01 15:04:39 +00:00
2016-03-24 11:15:01 +00:00
if let Some(&uumain) = umap.get(binary_as_util) {
std::process::exit(uumain(args));
2014-07-01 15:04:39 +00:00
}
2020-01-28 05:14:11 +00:00
if binary_as_util.ends_with("uutils")
|| binary_as_util.starts_with("uutils")
|| binary_as_util.ends_with("busybox")
|| binary_as_util.starts_with("busybox")
2018-03-12 08:20:58 +00:00
{
args.remove(0);
} else {
let mut found = false;
for util in umap.keys() {
if binary_as_util.ends_with(util) {
2016-03-24 11:15:01 +00:00
args[0] = (*util).to_owned();
found = true;
break;
}
}
2018-03-12 08:20:58 +00:00
if !found {
println!("{}: applet not found", binary_as_util);
std::process::exit(1);
}
2014-05-28 11:43:37 +00:00
}
// try first arg as util name.
if !args.is_empty() {
let util = &args[0][..];
2014-07-01 15:04:39 +00:00
match umap.get(util) {
2014-07-01 15:04:39 +00:00
Some(&uumain) => {
std::process::exit(uumain(args.clone()));
2014-07-01 15:04:39 +00:00
}
None => {
if &args[0][..] == "--help" || &args[0][..] == "-h" {
2014-07-01 15:04:39 +00:00
// see if they want help on a specific util
if args.len() >= 2 {
let util = &args[1][..];
match umap.get(util) {
2014-07-01 15:04:39 +00:00
Some(&uumain) => {
let code = uumain(vec![util.to_owned(), "--help".to_owned()]);
std::io::stdout().flush().expect("could not flush stdout");
std::process::exit(code);
2014-07-01 15:04:39 +00:00
}
None => {
println!("{}: applet not found", util);
std::process::exit(1);
2014-07-01 15:04:39 +00:00
}
}
}
usage(&umap);
std::process::exit(0);
} else {
println!("{}: applet not found", util);
std::process::exit(1);
}
}
2014-05-28 11:43:37 +00:00
}
} else {
// no arguments provided
usage(&umap);
std::process::exit(0);
2014-05-28 11:43:37 +00:00
}
}