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
use crate::internal::consts;

//===========================================================================//

/// The type of a directory entry.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ObjType {
    Unallocated,
    Storage,
    Stream,
    Root,
}

impl ObjType {
    pub fn as_byte(&self) -> u8 {
        match self {
            ObjType::Unallocated => consts::OBJ_TYPE_UNALLOCATED,
            ObjType::Storage => consts::OBJ_TYPE_STORAGE,
            ObjType::Stream => consts::OBJ_TYPE_STREAM,
            ObjType::Root => consts::OBJ_TYPE_ROOT,
        }
    }

    pub fn from_byte(byte: u8) -> Option<ObjType> {
        if byte == consts::OBJ_TYPE_UNALLOCATED {
            Some(ObjType::Unallocated)
        } else if byte == consts::OBJ_TYPE_STORAGE {
            Some(ObjType::Storage)
        } else if byte == consts::OBJ_TYPE_STREAM {
            Some(ObjType::Stream)
        } else if byte == consts::OBJ_TYPE_ROOT {
            Some(ObjType::Root)
        } else {
            None
        }
    }
}

//===========================================================================//

#[cfg(test)]
mod tests {
    use super::ObjType;

    #[test]
    fn round_trip() {
        for &obj_type in &[
            ObjType::Unallocated,
            ObjType::Storage,
            ObjType::Stream,
            ObjType::Root,
        ] {
            assert_eq!(ObjType::from_byte(obj_type.as_byte()), Some(obj_type));
        }
    }
}

//===========================================================================//