coreutils/src/common/util.rs

181 lines
4 KiB
Rust
Raw Normal View History

/*
* This file is part of the uutils coreutils package.
*
* (c) Arcterus <arcterus@mail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2014-03-31 16:40:21 +00:00
#![macro_escape]
extern crate libc;
#[macro_export]
2014-06-09 03:26:51 +00:00
macro_rules! show_error(
($($args:expr),+) => ({
2014-07-25 05:20:03 +00:00
pipe_write!(&mut ::std::io::stderr(), "{}: error: ", ::NAME);
pipe_writeln!(&mut ::std::io::stderr(), $($args),+);
})
)
#[macro_export]
macro_rules! show_warning(
($($args:expr),+) => ({
2014-07-25 05:20:03 +00:00
pipe_write!(&mut ::std::io::stderr(), "{}: warning: ", ::NAME);
pipe_writeln!(&mut ::std::io::stderr(), $($args),+);
})
)
#[macro_export]
macro_rules! show_info(
($($args:expr),+) => ({
2014-07-25 05:20:03 +00:00
pipe_write!(&mut ::std::io::stderr(), "{}: ", ::NAME);
pipe_writeln!(&mut ::std::io::stderr(), $($args),+);
})
)
2014-06-29 19:57:54 +00:00
#[macro_export]
macro_rules! eprint(
2014-07-25 05:20:03 +00:00
($($args:expr),+) => (pipe_write!(&mut ::std::io::stderr(), $($args),+))
2014-06-29 19:57:54 +00:00
)
#[macro_export]
macro_rules! eprintln(
2014-07-25 05:20:03 +00:00
($($args:expr),+) => (pipe_writeln!(&mut ::std::io::stderr(), $($args),+))
2014-06-29 19:57:54 +00:00
)
#[macro_export]
macro_rules! crash(
($exitcode:expr, $($args:expr),+) => ({
2014-07-25 05:20:03 +00:00
show_error!($($args),+);
unsafe { ::util::libc::exit($exitcode as ::util::libc::c_int); }
2014-04-03 13:59:58 +00:00
})
)
#[macro_export]
macro_rules! exit(
($exitcode:expr) => ({
unsafe { ::util::libc::exit($exitcode); }
})
)
2014-02-27 18:59:51 +00:00
#[macro_export]
macro_rules! crash_if_err(
($exitcode:expr, $exp:expr) => (
match $exp {
Ok(m) => m,
2014-07-09 08:29:50 +00:00
Err(f) => crash!($exitcode, "{}", f.to_string())
2014-02-27 18:59:51 +00:00
}
)
)
2014-07-22 01:50:53 +00:00
#[macro_export]
macro_rules! return_if_err(
($exitcode:expr, $exp:expr) => (
match $exp {
Ok(m) => m,
Err(f) => {
show_error!("{}", f);
return $exitcode;
}
}
)
)
2014-07-25 05:20:03 +00:00
// XXX: should the pipe_* macros return an Err just to show the write failed?
#[macro_export]
macro_rules! pipe_print(
($($args:expr),+) => (
2014-11-22 06:27:54 +00:00
match write!(&mut ::std::io::stdout(), $($args),+) {
2014-07-25 05:20:03 +00:00
Ok(_) => true,
Err(f) => {
if f.kind == ::std::io::BrokenPipe {
false
} else {
2014-10-30 09:06:47 +00:00
panic!("{}", f)
2014-07-25 05:20:03 +00:00
}
}
}
)
)
#[macro_export]
macro_rules! pipe_println(
($($args:expr),+) => (
2014-11-22 06:27:54 +00:00
match writeln!(&mut ::std::io::stdout(), $($args),+) {
2014-07-25 05:20:03 +00:00
Ok(_) => true,
Err(f) => {
if f.kind == ::std::io::BrokenPipe {
false
} else {
2014-10-30 09:06:47 +00:00
panic!("{}", f)
2014-07-25 05:20:03 +00:00
}
}
}
)
)
#[macro_export]
macro_rules! pipe_write(
($fd:expr, $($args:expr),+) => (
match write!($fd, $($args),+) {
Ok(_) => true,
Err(f) => {
if f.kind == ::std::io::BrokenPipe {
false
} else {
2014-10-30 09:06:47 +00:00
panic!("{}", f)
2014-07-25 05:20:03 +00:00
}
}
}
)
)
#[macro_export]
macro_rules! pipe_writeln(
($fd:expr, $($args:expr),+) => (
match writeln!($fd, $($args),+) {
2014-07-25 05:20:03 +00:00
Ok(_) => true,
Err(f) => {
if f.kind == ::std::io::BrokenPipe {
false
} else {
2014-10-30 09:06:47 +00:00
panic!("{}", f)
2014-07-25 05:20:03 +00:00
}
}
}
)
)
#[macro_export]
macro_rules! safe_write(
($fd:expr, $($args:expr),+) => (
match write!($fd, $($args),+) {
Ok(_) => {}
2014-10-30 09:06:47 +00:00
Err(f) => panic!(f.to_string())
}
)
)
#[macro_export]
macro_rules! safe_writeln(
($fd:expr, $($args:expr),+) => (
match writeln!($fd, $($args),+) {
Ok(_) => {}
2014-10-30 09:06:47 +00:00
Err(f) => panic!(f.to_string())
}
)
)
#[macro_export]
macro_rules! safe_unwrap(
($exp:expr) => (
match $exp {
Ok(m) => m,
2014-07-09 08:29:50 +00:00
Err(f) => crash!(1, "{}", f.to_string())
}
)
)