You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phetch/src/utils.rs

52 lines
1.3 KiB
Rust

4 years ago
//! Helper functions and macros.
4 years ago
/// Debug macro that appends a line to `phetch.log`.
/// Useful for printf-style debugging - add your `log!()` calls,
/// and `tail -f phetch.log` while running phetch to peek inside.
5 years ago
#[allow(unused_macros)]
macro_rules! log {
($e:expr) => {{
if cfg!(debug_assertions) {
if let Ok(mut file) = std::fs::OpenOptions::new()
.append(true)
.create(true)
.open("phetch.log")
{
use std::io::prelude::*;
5 years ago
file.write($e.as_ref());
file.write(b"\n");
}
}
}};
($e:expr, $($y:expr),*) => {
if cfg!(debug_assertions) {
log!(format!($e, $($y),*));
}
};
}
4 years ago
4 years ago
/// Creates an Other kind of io::Error.
5 years ago
macro_rules! error {
($e:expr) => {
std::io::Error::new(std::io::ErrorKind::Other, $e)
};
($e:expr, $($y:expr),*) => {
error!(format!($e, $($y),*));
};
}
5 years ago
4 years ago
/// Number of bytes in a human-ish readable format.
5 years ago
pub fn human_bytes(bytes: usize) -> String {
let (count, tag) = if bytes < 1000 {
(bytes, " bytes")
} else if bytes < 1_000_000 {
(bytes / 1000, "Kb")
} else if bytes < 1_000_000_000 {
(bytes / 1_000_000, "Mb")
} else {
5 years ago
(bytes / 1_000_000_000, "Gb")
5 years ago
};
format!("{}{}", count, tag)
}