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
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
use lazy_static::lazy_static;
use std::collections::HashMap;

/// `parser` parses `BinaryElement` files.
pub mod parser;

/// `writer` writes `BinaryElement` files.
pub mod writer;

/// `serialize` serializes and deserializes `BinEl`s.
pub mod serialize;

/// Holds `BinaryElement` files.
#[derive(Debug, PartialEq, Clone, Default)]
pub struct BinFile {
    pub package: String,
    pub root: BinEl
}

/// A value stored in an attribute inside a `BinEl`. Unlike XML, attributes are strongly typed.
#[derive(Debug, PartialEq, Clone)]
pub enum BinElAttr {
    Bool(bool),
    Int(i32),
    Float(f32),
    Text(String)
}

/// An element stored in a `BinFile`. Based on XML.
#[derive(PartialEq, Debug, Clone, Default)]
pub struct BinEl {
    /// The name of the `BinEl`.
    pub name: String,
    /// All attributes of the `BinEl`. Unlike XML, these are strongly typed.
    pub attributes: HashMap<String, BinElAttr>,
    children: HashMap<String, Vec<BinEl>>
}

lazy_static! {
    static ref CHILDLESS_BINEL_VEC: Vec<BinEl> = vec![];
}

impl BinEl {
    /// Create a new `BinEl`.
    #[inline]
    pub fn new(name: &str) -> Self {
        Self {
            name: name.to_string(),
            children: HashMap::new(),
            attributes: HashMap::new()
        }
    }

    /// Get the text content of the `BinEl`, if it exists.
    #[inline]
    pub fn text(&self) -> Option<&String> {
        match self.attributes.get("innerText")? {
            BinElAttr::Text(text) => Some(&text),
            _ => None
        }
    }

    /// Get the mutable text content of the `BinEl`, if it exists.
    #[inline]
    pub fn text_mut(&mut self) -> Option<&mut String> {
        match self.attributes.get_mut("innerText")? {
            BinElAttr::Text(ref mut text) => Some(text),
            _ => None
        }
    }

    /// Set the text content of the `BinEl`.
    #[inline]
    pub fn set_text(&mut self, text: &str) -> Option<BinElAttr> {
        self.attributes
            .insert("innerText".to_string(), BinElAttr::Text(text.to_string()))
    }

    /// Add a child to the `BinEl`.
    #[inline]
    pub fn insert(&mut self, child: Self) {
        self.get_mut(&child.name).push(child);
    }

    /// Get all children of the `BinEl`.
    #[inline]
    pub fn children<'a>(&'a self) -> impl Iterator<Item = &Self> + 'a {
        self.children.values().flatten()
    }

    /// Get all children of the `BinEl`, mutable.
    #[inline]
    pub fn children_mut<'a>(&'a mut self) -> impl Iterator<Item = &mut Self> + 'a {
        self.children.values_mut().flatten()
    }

    /// Get children of the `BinEl` by name.
    #[inline]
    pub fn get(&self, name: &str) -> &Vec<Self> {
        self.children.get(name).unwrap_or(&CHILDLESS_BINEL_VEC)
    }

    /// Get mutable children of the `BinEl` by name.
    #[inline]
    pub fn get_mut(&mut self, name: &str) -> &mut Vec<Self> {
        self.children
            .entry(name.to_string())
            .or_insert_with(|| vec![])
    }

    /// Drain all children of the `BinEl`.
    #[inline]
    pub fn drain<'a>(&'a mut self) -> impl Iterator<Item = Self> + 'a {
        self.children.drain().map(|(_k, v)| v).flatten()
    }
}

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

    #[test]
    fn insert_child() {
        let mut file = BinFile {
            package: "pkg".to_string(),
            root: BinEl::new("root")
        };
        file.root.insert(BinEl::new("one"));
        file.root.insert(BinEl::new("two"));
    }

    #[test]
    fn get_child() {
        let empty_binel: Vec<BinEl> = vec![];
        let mut file = BinFile {
            package: "pkg".to_string(),
            root: BinEl::new("root")
        };
        file.root.insert(BinEl::new("one"));
        file.root.insert(BinEl::new("two"));
        assert_eq!(file.root.get_mut("one")[0].set_text("hello"), None);
        assert_eq!(
            file.root.get_mut("two")[0]
                .attributes
                .insert("word".to_string(), BinElAttr::Text("world".to_string())),
            None
        );

        assert_eq!(file.root.get("one")[0].text(), Some(&"hello".to_string()));
        assert_eq!(file.root.get("two")[0].text(), None);
        assert_eq!(
            file.root.get("two")[0].attributes.get("word"),
            Some(&BinElAttr::Text("world".to_string()))
        );
        assert_eq!(file.root.get("three"), &empty_binel);
    }
}