2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
2020-07-22 06:40:45 -05:00
|
|
|
use std::fmt;
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2020-07-21 12:30:17 -05:00
|
|
|
use cfg_if::cfg_if;
|
2019-06-30 05:30:17 -05:00
|
|
|
|
|
|
|
pub struct MemoryUsage {
|
|
|
|
pub allocated: Bytes,
|
|
|
|
pub resident: Bytes,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MemoryUsage {
|
|
|
|
pub fn current() -> MemoryUsage {
|
2020-07-21 12:30:17 -05:00
|
|
|
cfg_if! {
|
2020-07-22 06:40:45 -05:00
|
|
|
if #[cfg(target_os = "linux")] {
|
2020-07-21 12:30:17 -05:00
|
|
|
// Note: This is incredibly slow.
|
|
|
|
let alloc = unsafe { libc::mallinfo() }.uordblks as u32 as usize;
|
|
|
|
MemoryUsage { allocated: Bytes(alloc), resident: Bytes(0) }
|
|
|
|
} else {
|
|
|
|
MemoryUsage { allocated: Bytes(0), resident: Bytes(0) }
|
|
|
|
}
|
2019-06-30 05:30:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for MemoryUsage {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(fmt, "{} allocated {} resident", self.allocated, self.resident,)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-30 06:40:01 -05:00
|
|
|
#[derive(Default, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)]
|
2019-06-30 05:30:17 -05:00
|
|
|
pub struct Bytes(usize);
|
|
|
|
|
2020-07-25 03:35:45 -05:00
|
|
|
impl Bytes {
|
|
|
|
pub fn megabytes(self) -> usize {
|
|
|
|
self.0 / 1024 / 1024
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-30 05:30:17 -05:00
|
|
|
impl fmt::Display for Bytes {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let bytes = self.0;
|
2019-06-30 06:40:01 -05:00
|
|
|
let mut value = bytes;
|
|
|
|
let mut suffix = "b";
|
|
|
|
if value > 4096 {
|
|
|
|
value /= 1024;
|
|
|
|
suffix = "kb";
|
|
|
|
if value > 4096 {
|
|
|
|
value /= 1024;
|
|
|
|
suffix = "mb";
|
|
|
|
}
|
2019-06-30 05:30:17 -05:00
|
|
|
}
|
2019-06-30 06:40:01 -05:00
|
|
|
f.pad(&format!("{}{}", value, suffix))
|
2019-06-30 05:30:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::AddAssign<usize> for Bytes {
|
|
|
|
fn add_assign(&mut self, x: usize) {
|
|
|
|
self.0 += x;
|
|
|
|
}
|
|
|
|
}
|
2019-06-30 06:40:01 -05:00
|
|
|
|
|
|
|
impl std::ops::Sub for Bytes {
|
|
|
|
type Output = Bytes;
|
|
|
|
fn sub(self, rhs: Bytes) -> Bytes {
|
|
|
|
Bytes(self.0 - rhs.0)
|
|
|
|
}
|
|
|
|
}
|