2015-12-08 02:42:08 +00:00
|
|
|
#![crate_name = "uu_whoami"]
|
2013-10-18 12:00:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the uutils coreutils package.
|
|
|
|
*
|
|
|
|
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* last synced with: whoami (GNU coreutils) 8.21 */
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
extern crate getopts;
|
2013-10-18 12:00:38 +00:00
|
|
|
|
2015-11-24 01:00:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate uucore;
|
|
|
|
|
2015-05-21 18:42:42 +00:00
|
|
|
use getopts::Options;
|
2015-04-27 21:31:53 +00:00
|
|
|
use std::io::Write;
|
2014-02-07 06:39:07 +00:00
|
|
|
|
2015-04-27 21:31:53 +00:00
|
|
|
mod platform;
|
2013-10-18 12:00:38 +00:00
|
|
|
|
2014-02-07 06:39:07 +00:00
|
|
|
static NAME: &'static str = "whoami";
|
2015-11-25 09:52:10 +00:00
|
|
|
static VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
2014-02-07 06:39:07 +00:00
|
|
|
|
2015-02-06 13:48:07 +00:00
|
|
|
pub fn uumain(args: Vec<String>) -> i32 {
|
2015-05-21 18:42:42 +00:00
|
|
|
let mut opts = Options::new();
|
|
|
|
|
|
|
|
opts.optflag("h", "help", "display this help and exit");
|
|
|
|
opts.optflag("V", "version", "output version information and exit");
|
|
|
|
|
|
|
|
let matches = match opts.parse(&args[1..]) {
|
2013-10-18 12:00:38 +00:00
|
|
|
Ok(m) => m,
|
2014-06-15 10:50:40 +00:00
|
|
|
Err(f) => crash!(1, "{}", f),
|
2013-10-18 12:00:38 +00:00
|
|
|
};
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("help") {
|
2015-05-21 18:42:42 +00:00
|
|
|
println!("{} {}", NAME, VERSION);
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("");
|
|
|
|
println!("Usage:");
|
2015-05-21 18:42:42 +00:00
|
|
|
println!(" {} [OPTIONS]", NAME);
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("");
|
2015-05-21 18:42:42 +00:00
|
|
|
println!("{}", opts.usage("print effective userid"));
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2013-10-18 12:00:38 +00:00
|
|
|
}
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("version") {
|
2015-05-21 18:42:42 +00:00
|
|
|
println!("{} {}", NAME, VERSION);
|
2014-06-08 07:56:37 +00:00
|
|
|
return 0;
|
2013-10-18 12:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exec();
|
2014-06-08 07:56:37 +00:00
|
|
|
|
2014-06-12 04:41:53 +00:00
|
|
|
0
|
2013-10-18 12:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exec() {
|
|
|
|
unsafe {
|
2015-09-18 08:40:28 +00:00
|
|
|
match platform::getusername() {
|
|
|
|
Ok(username) => println!("{}", username),
|
2015-09-18 09:51:59 +00:00
|
|
|
Err(err) => match err.raw_os_error() {
|
|
|
|
Some(0) | None => crash!(1, "failed to get username"),
|
|
|
|
Some(_) => crash!(1, "failed to get username: {}", err),
|
|
|
|
}
|
2015-09-18 08:40:28 +00:00
|
|
|
}
|
2013-10-18 12:00:38 +00:00
|
|
|
}
|
|
|
|
}
|