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
use crate::prelude::*;
use std::borrow::Cow;
/// CGROUP records indicate when a new cgroup is created and activated.
///
/// This struct corresponds to `PERF_RECORD_CGROUP`. See the [manpage] for more
/// documentation.
///
/// [manpage]: http://man7.org/linux/man-pages/man2/perf_event_open.2.html
#[derive(Clone, Debug)]
pub struct CGroup<'a> {
    /// The cgroup ID.
    pub id: u64,
    /// Path of the cgroup from the root.
    pub path: Cow<'a, [u8]>,
}
impl<'a> CGroup<'a> {
    /// Get `path` as a [`Path`](std::path::Path).
    #[cfg(unix)]
    pub fn path_os(&self) -> &std::path::Path {
        use std::ffi::OsStr;
        use std::os::unix::ffi::OsStrExt;
        use std::path::Path;
        Path::new(OsStr::from_bytes(&self.path))
    }
    /// Convert all the borrowed data in this `CGroup` into owned data.
    pub fn into_owned(self) -> CGroup<'static> {
        CGroup {
            path: self.path.into_owned().into(),
            ..self
        }
    }
}
impl<'p> Parse<'p> for CGroup<'p> {
    fn parse<B, E>(p: &mut Parser<B, E>) -> ParseResult<Self>
    where
        E: Endian,
        B: ParseBuf<'p>,
    {
        Ok(Self {
            id: p.parse()?,
            path: p.parse_rest_trim_nul()?,
        })
    }
}