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
use std::io::Result;
use std::path::{Path, PathBuf};

use SysClass;

/// A block device in /sys/class/block
#[derive(Clone)]
pub struct Block {
    path: PathBuf
}

impl SysClass for Block {
    fn class() -> &'static str {
        "block"
    }

    unsafe fn from_path_unchecked(path: PathBuf) -> Self {
        Self { path }
    }

    fn path(&self) -> &Path {
        &self.path
    }
}

impl Block {
    pub fn partition(&self) -> Result<u8> {
        self.parse_file("partition")
    }

    pub fn removable(&self) -> Result<u8> {
        self.parse_file("removable")
    }

    pub fn size(&self) -> Result<u64> {
        self.parse_file("size")
    }
}