noodles_gtf/record/attributes/
entry.rs

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
//! GTF record attribute entry.

use std::{error, fmt, str::FromStr};

const SEPARATOR: char = ' ';
const DOUBLE_QUOTES: char = '"';
pub(super) const DELIMITER: char = ';';

/// A GTF record attribute entry.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Entry {
    key: String,
    value: String,
}

impl Entry {
    /// Creates a GTF record attribute entry.
    ///
    /// # Examples
    ///
    /// ```
    /// use noodles_gtf::record::attributes::Entry;
    /// let entry = Entry::new("gene_id", "gene0");
    /// ```
    pub fn new<K, V>(key: K, value: V) -> Self
    where
        K: Into<String>,
        V: Into<String>,
    {
        Self {
            key: key.into(),
            value: value.into(),
        }
    }

    /// Creates a GTF record attribute entry.
    ///
    /// # Examples
    ///
    /// ```
    /// use noodles_gtf::record::attributes::Entry;
    /// let entry = Entry::new("gene_id", "gene0");
    /// assert_eq!(entry.key(), "gene_id");
    /// ```
    pub fn key(&self) -> &str {
        &self.key
    }

    /// Creates a GTF record attribute entry.
    ///
    /// # Examples
    ///
    /// ```
    /// use noodles_gtf::record::attributes::Entry;
    /// let entry = Entry::new("gene_id", "gene0");
    /// assert_eq!(entry.value(), "gene0");
    /// ```
    pub fn value(&self) -> &str {
        &self.value
    }
}

impl fmt::Display for Entry {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, r#"{}{}"{}""#, self.key(), SEPARATOR, self.value())
    }
}

/// An error returned when a raw GTF record attribute entry fails to parse.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
    /// The input is empty.
    Empty,
    /// The input is invalid.
    Invalid,
}

impl error::Error for ParseError {}

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

impl FromStr for Entry {
    type Err = ParseError;

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

pub(super) fn parse_entry(s: &mut &str) -> Result<Entry, ParseError> {
    let key = parse_key(s)?;
    let value = parse_value(s)?;
    discard_delimiter(s);
    Ok(Entry::new(key, value))
}

fn parse_key<'a>(s: &mut &'a str) -> Result<&'a str, ParseError> {
    let Some(i) = s.find(SEPARATOR) else {
        return Err(ParseError::Invalid);
    };

    let (key, rest) = s.split_at(i);
    *s = &rest[1..];

    Ok(key)
}

fn parse_value<'a>(s: &mut &'a str) -> Result<&'a str, ParseError> {
    if let Some(rest) = s.strip_prefix(DOUBLE_QUOTES) {
        *s = rest;
        parse_string(s)
    } else {
        parse_raw_value(s)
    }
}

fn parse_string<'a>(s: &mut &'a str) -> Result<&'a str, ParseError> {
    if let Some(i) = s.find(DOUBLE_QUOTES) {
        let (t, rest) = s.split_at(i);
        *s = &rest[1..];
        Ok(t)
    } else {
        Err(ParseError::Invalid)
    }
}

fn parse_raw_value<'a>(s: &mut &'a str) -> Result<&'a str, ParseError> {
    if let Some(i) = s.find(DELIMITER) {
        let (t, rest) = s.split_at(i);
        *s = rest;
        Ok(t)
    } else {
        Ok(s)
    }
}

fn discard_delimiter(s: &mut &str) {
    *s = s.trim_start();

    if let Some(rest) = s.strip_prefix(DELIMITER) {
        *s = rest;
    }

    *s = s.trim_start();
}

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

    #[test]
    fn test_fmt() {
        let entry = Entry::new("gene_id", "g0");
        assert_eq!(entry.to_string(), r#"gene_id "g0""#);
    }

    #[test]
    fn test_from_str() {
        assert_eq!(
            r#"gene_id "g0""#.parse::<Entry>(),
            Ok(Entry::new("gene_id", "g0"))
        );
        assert_eq!(
            r#"gene_ids "g0;g1""#.parse::<Entry>(),
            Ok(Entry::new("gene_ids", "g0;g1"))
        );
        assert_eq!(
            r#"gene_id """#.parse::<Entry>(),
            Ok(Entry::new("gene_id", ""))
        );
        assert_eq!(
            r#"gene_id 0"#.parse::<Entry>(),
            Ok(Entry::new("gene_id", "0"))
        );

        assert_eq!("".parse::<Entry>(), Err(ParseError::Empty));
        assert_eq!("gene_id".parse::<Entry>(), Err(ParseError::Invalid));
        assert_eq!(r#""""#.parse::<Entry>(), Err(ParseError::Invalid));
    }
}