1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//! Linux-specific extensions

/// Reference: https://gitlab.com/procps-ng/procps/blob/master/proc/sysinfo.c

use heim_common::units::{Information, information};

use crate::Memory;

/// Linux-specific extension to [`Memory`]
pub trait MemoryExt {
    /// The amount of physical RAM used.
    ///
    /// It is designed for informational purposes only and might vary vastly
    /// from platform to platform.
    fn used(&self) -> Information;

    /// The amount of physical RAM used for file buffers.
    fn buffers(&self) -> Information;

    /// The amount of physical RAM used as cache memory.
    fn cached(&self) -> Information;

    /// The amount of memory that may be simultaneously accessed by multiple processes.
    fn shared(&self) -> Information;

    /// The total amount of buffer or page cache memory, that is in active use.
    ///
    /// This is memory that has been recently used and is usually not reclaimed for other purposes.
    fn active(&self) -> Information;

    ///  The total amount of buffer or page cache memory, that are free and available.
    ///
    /// This is memory that has not been recently used and can be reclaimed for other purposes.
    fn inactive(&self) -> Information;
}

#[cfg(target_os = "linux")]
impl MemoryExt for Memory {
    fn used(&self) -> Information {
        let inner = self.as_ref();

        let mut used = inner.total() - inner.free() - self.cached() - self.buffers();
        if used <= Information::new::<information::byte>(0) {
            // May be symptomatic of running within a LCX container where such
            // values will be dramatically distorted over those of the host.
            // Source: psutil
            used = inner.total() - inner.free()
        }

        used
    }

    fn buffers(&self) -> Information {
        self.as_ref().buffers()
    }

    fn cached(&self) -> Information {
        self.as_ref().cached()
    }

    fn shared(&self) -> Information {
        self.as_ref().shared()
    }

    fn active(&self) -> Information {
        self.as_ref().active()
    }

    fn inactive(&self) -> Information {
        self.as_ref().inactive()
    }
}