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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
//! Parsing encodings from their string representation.

mod encoding;
mod multi;

use crate::Encoding;

pub use self::encoding::{StrEncoding, ParseEncodingError};

const QUALIFIERS: &'static [char] = &[
    'r', // const
    'n', // in
    'N', // inout
    'o', // out
    'O', // bycopy
    'R', // byref
    'V', // oneway
];

fn chomp(s: &str) -> Option<(&str, &str)> {
    chomp_ptr(s)
        .or_else(|| chomp_nested_delims(s, '[', ']'))
        .or_else(|| chomp_nested_delims(s, '{', '}'))
        .or_else(|| chomp_nested_delims(s, '(', ')'))
        .or_else(|| chomp_primitive(s).map(|(_, t)| s.len() - t.len()))
        .map(|head_len| s.split_at(head_len))
}

fn chomp_ptr(s: &str) -> Option<usize> {
    if s.starts_with('^') {
        chomp(&s[1..]).map(|(h, _)| h.len() + 1)
    } else {
        None
    }
}

fn chomp_nested_delims(s: &str, open: char, close: char) -> Option<usize> {
    if !s.starts_with(open) {
        return None;
    }

    let mut depth = 0;
    let close_index = s.find(|c: char| {
        if c == open {
            depth += 1;
        } else if c == close {
            depth -= 1;
        }
        // when the depth hits 0, we've found the close delim
        depth == 0
    });
    // the total length is 1 more than the index of the close delim
    close_index.map(|i| i + 1)
}

fn chomp_primitive(s: &str) -> Option<(Encoding<'static>, &str)> {
    let (h, t) = {
        let mut chars = s.chars();
        match chars.next() {
            Some(h) => (h, chars.as_str()),
            None => return None,
        }
    };

    let primitive = match h {
        'c' => Encoding::Char,
        's' => Encoding::Short,
        'i' => Encoding::Int,
        'l' => Encoding::Long,
        'q' => Encoding::LongLong,
        'C' => Encoding::UChar,
        'S' => Encoding::UShort,
        'I' => Encoding::UInt,
        'L' => Encoding::ULong,
        'Q' => Encoding::ULongLong,
        'f' => Encoding::Float,
        'd' => Encoding::Double,
        'B' => Encoding::Bool,
        'v' => Encoding::Void,
        '*' => Encoding::String,
        '@' => {
            // Special handling for blocks
            if t.starts_with('?') {
                return Some((Encoding::Block, &t[1..]));
            }
            Encoding::Object
        }
        '#' => Encoding::Class,
        ':' => Encoding::Sel,
        '?' => Encoding::Unknown,
        'b' => {
            return chomp_number(t).map(|(b, t)| (Encoding::BitField(b), t));
        }
        _ => return None,
    };
    Some((primitive, t))
}

fn chomp_number(s: &str) -> Option<(u32, &str)> {
    // Chomp until we hit a non-digit
    let (num, t) = match s.find(|c: char| !c.is_digit(10)) {
        Some(i) => s.split_at(i),
        None => (s, ""),
    };
    num.parse().map(|n| (n, t)).ok()
}

#[derive(Debug, PartialEq, Eq)]
enum ParseResult<'a> {
    Primitive(Encoding<'static>),
    Pointer(&'a str),
    Array(u32, &'a str),
    Struct(&'a str, &'a str),
    Union(&'a str, &'a str),
    Error,
}

fn parse_parts(s: &str, open: char, sep: char, close: char)
        -> Option<(&str, &str)> {
    if s.starts_with(open) && s.ends_with(close) {
        s.find(sep).map(|i| (&s[1..i], &s[i + 1..s.len() - 1]))
    } else {
        None
    }
}

fn parse(s: &str) -> ParseResult {
    // strip qualifiers
    let s = s.trim_start_matches(QUALIFIERS);

    if s.starts_with('^') {
        ParseResult::Pointer(&s[1..])
    } else if s.starts_with('[') {
        if !s.ends_with(']') {
            ParseResult::Error
        } else {
            chomp_number(&s[1..s.len() - 1])
                .map(|(len, item)| ParseResult::Array(len, item))
                .unwrap_or(ParseResult::Error)
        }
    } else if s.starts_with('{') {
        parse_parts(s, '{', '=', '}')
            .map(|(name, fields)| ParseResult::Struct(name, fields))
            .unwrap_or(ParseResult::Error)
    } else if s.starts_with('(') {
        parse_parts(s, '(', '=', ')')
            .map(|(name, members)| ParseResult::Union(name, members))
            .unwrap_or(ParseResult::Error)
    } else {
        match chomp_primitive(s) {
            Some((p, t)) if t.is_empty() => ParseResult::Primitive(p),
            _ => ParseResult::Error,
        }
    }
}

fn is_valid(s: &str) -> bool {
    match parse(s) {
        ParseResult::Primitive(_) => true,
        ParseResult::Pointer(s) |
        ParseResult::Array(_, s) => {
            is_valid(s)
        }
        ParseResult::Struct(_, mut members) |
        ParseResult::Union(_, mut members) => {
            while !members.is_empty() {
                members = match chomp(members) {
                    Some((h, t)) if is_valid(h) => t,
                    _ => return false,
                };
            }
            true
        }
        ParseResult::Error => false,
    }
}

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

    fn assert_chomped(mut s: &str, expected: &[&str]) {
        for expected in expected.iter().cloned() {
            let (h, t) = chomp(s).unwrap();
            assert_eq!(h, expected);
            s = t;
        }
        assert!(s.is_empty());
    }

    #[test]
    fn test_chomp() {
        let s = "{A={B=ci^{C=c}}ci}c^i{C=c}";
        let expected = ["{A={B=ci^{C=c}}ci}", "c", "^i", "{C=c}"];
        assert_chomped(s, &expected);
    }

    #[test]
    fn test_chomp_delims() {
        let s = "{A=(B=ci)ci}[12{C=c}]c(D=ci)i";
        let expected = ["{A=(B=ci)ci}", "[12{C=c}]", "c", "(D=ci)", "i"];
        assert_chomped(s, &expected);
    }

    #[test]
    fn test_chomp_bad_delims() {
        assert_eq!(chomp("{A={B=ci}ci"), None);
        assert_eq!(chomp("}A=ci{ci"), None);

        let s = "{A=(B=ci}[12{C=c})]";
        let expected = ["{A=(B=ci}", "[12{C=c})]"];
        assert_chomped(s, &expected);
    }

    #[test]
    fn test_parse_block() {
        assert_eq!(parse("@?"), ParseResult::Primitive(Encoding::Block));
        assert_eq!(parse("@??"), ParseResult::Error);
        assert_eq!(chomp_primitive("@?c"), Some((Encoding::Block, "c")));
        assert_eq!(chomp_primitive("@c?"), Some((Encoding::Object, "c?")));
    }

    #[test]
    fn test_parse_bitfield() {
        assert_eq!(parse("b32"), ParseResult::Primitive(Encoding::BitField(32)));
        assert_eq!(parse("b-32"), ParseResult::Error);
        assert_eq!(parse("b32f"), ParseResult::Error);
        assert_eq!(chomp_primitive("b32b32"), Some((Encoding::BitField(32), "b32")));
        assert_eq!(chomp_primitive("bb32"), None);
    }

    #[test]
    fn test_validation() {
        assert!(is_valid("c"));
        assert!(is_valid("{A={B=ci^{C=c}}ci}"));
        assert!(!is_valid("z"));
        assert!(!is_valid("{A=[12{C=c}}]"));
    }

    #[test]
    fn test_qualifiers() {
        assert_eq!(parse("Vv"), ParseResult::Primitive(Encoding::Void));
        assert_eq!(parse("r*"), ParseResult::Primitive(Encoding::String));
    }

    #[test]
    fn test_parse_garbage() {
        assert_eq!(parse("☃"), ParseResult::Error);
        assert!(!is_valid("☃"));

        assert_eq!(parse(""), ParseResult::Error);
        assert!(!is_valid(""));

        // Ensure combining characters don't crash the parser
        assert_eq!(parse("{́A=́ci}"), ParseResult::Struct("́A", "́ci"));

        assert_eq!(parse("{☃=ci}"), ParseResult::Struct("☃", "ci"));
        assert!(is_valid("{☃=ci}"));

    }
}