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
use std::{iter, str};

use noodles_vcf as vcf;

/// BCF record IDs.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Ids<'a>(&'a [u8]);

impl<'a> Ids<'a> {
    pub(super) fn new(src: &'a [u8]) -> Self {
        Self(src)
    }
}

impl<'a> AsRef<[u8]> for Ids<'a> {
    fn as_ref(&self) -> &[u8] {
        self.0
    }
}

impl<'a> vcf::variant::record::Ids for Ids<'a> {
    fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    fn len(&self) -> usize {
        self.iter().count()
    }

    fn iter(&self) -> Box<dyn Iterator<Item = &str> + '_> {
        const DELIMITER: u8 = b';';

        if self.is_empty() {
            Box::new(iter::empty())
        } else {
            Box::new(
                self.0
                    .split(|&b| b == DELIMITER)
                    .map(|buf| str::from_utf8(buf).unwrap()), // TODO
            )
        }
    }
}

#[cfg(test)]
mod tests {
    use vcf::variant::record::Ids as _;

    use super::*;

    #[test]
    fn test_is_empty() {
        assert!(Ids::new(b"").is_empty());
        assert!(!Ids::new(b"nd0").is_empty());
        assert!(!Ids::new(b"nd0;nd1").is_empty());
    }

    #[test]
    fn test_len() {
        assert_eq!(Ids::new(b"").len(), 0);
        assert_eq!(Ids::new(b"nd0").len(), 1);
        assert_eq!(Ids::new(b"nd0;nd1").len(), 2);
    }

    #[test]
    fn test_iter() {
        let ids = Ids::new(b"");
        assert!(ids.iter().next().is_none());

        let ids = Ids::new(b"nd0;nd1");
        let actual: Vec<_> = ids.iter().collect();
        let expected = ["nd0", "nd1"];
        assert_eq!(actual, expected);
    }
}