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
//! VCF record IDs.

pub mod id;

pub use self::id::Id;

use std::{error, fmt, ops::Deref, ops::DerefMut, str::FromStr};

use indexmap::IndexSet;

const DELIMITER: char = ';';

/// VCF record IDs (`ID`).
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct Ids(IndexSet<Id>);

impl Deref for Ids {
    type Target = IndexSet<Id>;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl DerefMut for Ids {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}

impl fmt::Display for Ids {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        for (i, id) in self.iter().enumerate() {
            if i > 0 {
                write!(f, "{DELIMITER}")?;
            }

            f.write_str(id)?;
        }

        Ok(())
    }
}

/// An error returned when a raw VCF record ID fails to parse.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
    /// The input is empty.
    Empty,
    /// The list of IDs has a duplicate.
    DuplicateId(String),
    /// An ID is invalid.
    InvalidId(id::ParseError),
}

impl error::Error for ParseError {
    fn source(&self) -> Option<&(dyn error::Error + 'static)> {
        match self {
            Self::InvalidId(e) => Some(e),
            _ => None,
        }
    }
}

impl fmt::Display for ParseError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Empty => f.write_str("empty input"),
            Self::DuplicateId(id) => write!(f, "duplicate ID: {id}"),
            Self::InvalidId(_) => f.write_str("invalid ID"),
        }
    }
}

impl FromStr for Ids {
    type Err = ParseError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if s.is_empty() {
            return Err(ParseError::Empty);
        }

        let mut ids = IndexSet::new();

        for raw_id in s.split(DELIMITER) {
            let id = raw_id.parse().map_err(ParseError::InvalidId)?;

            if !ids.insert(id) {
                return Err(ParseError::DuplicateId(raw_id.into()));
            }
        }

        Ok(Self(ids))
    }
}

impl Extend<Id> for Ids {
    fn extend<T: IntoIterator<Item = Id>>(&mut self, iter: T) {
        self.0.extend(iter);
    }
}

impl FromIterator<Id> for Ids {
    fn from_iter<T: IntoIterator<Item = Id>>(iter: T) -> Self {
        let mut ids = Self::default();
        ids.extend(iter);
        ids
    }
}

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

    #[test]
    fn test_fmt() -> Result<(), id::ParseError> {
        assert!(Ids::default().to_string().is_empty());

        let id0: Id = "nd0".parse()?;
        let id1: Id = "nd1".parse()?;

        let ids: Ids = [id0.clone()].into_iter().collect();
        assert_eq!(ids.to_string(), "nd0");

        let ids: Ids = [id0, id1].into_iter().collect();
        assert_eq!(ids.to_string(), "nd0;nd1");

        Ok(())
    }

    #[test]
    fn test_from_str() -> Result<(), id::ParseError> {
        let id0: Id = "nd0".parse()?;
        let id1: Id = "nd1".parse()?;

        let expected: Ids = [id0.clone()].into_iter().collect();
        assert_eq!("nd0".parse(), Ok(expected));

        let expected: Ids = [id0, id1].into_iter().collect();
        assert_eq!("nd0;nd1".parse(), Ok(expected));

        assert_eq!("".parse::<Ids>(), Err(ParseError::Empty));
        assert_eq!(
            "nd0;nd0".parse::<Ids>(),
            Err(ParseError::DuplicateId(String::from("nd0")))
        );
        assert!(matches!(".".parse::<Ids>(), Err(ParseError::InvalidId(_))));
        assert!(matches!(
            "nd 0".parse::<Ids>(),
            Err(ParseError::InvalidId(_))
        ));
        assert!(matches!(
            ";nd0".parse::<Ids>(),
            Err(ParseError::InvalidId(_))
        ));
        assert!(matches!(
            "nd0;;nd1".parse::<Ids>(),
            Err(ParseError::InvalidId(_))
        ));
        assert!(matches!(
            "nd0;".parse::<Ids>(),
            Err(ParseError::InvalidId(_))
        ));

        Ok(())
    }
}