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
//! GFF record attributes and entry.

pub mod entry;

pub use self::entry::Entry;

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

const DELIMITER: char = ';';

/// GFF record attributes.
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct Attributes(Vec<Entry>);

impl Deref for Attributes {
    type Target = [Entry];

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

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

            write!(f, "{}", entry)?;
        }

        Ok(())
    }
}

/// An error returned when raw attributes fail to parse.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
    /// The input attributes has an invalid entry.
    InvalidEntry(entry::ParseError),
}

impl error::Error for ParseError {}

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

impl From<Vec<Entry>> for Attributes {
    fn from(entries: Vec<Entry>) -> Self {
        Self(entries)
    }
}

impl FromStr for Attributes {
    type Err = ParseError;

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

        s.split(DELIMITER)
            .map(|t| t.parse())
            .collect::<Result<Vec<_>, _>>()
            .map(Self::from)
            .map_err(ParseError::InvalidEntry)
    }
}

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

    #[test]
    fn test_fmt() {
        let attributes = Attributes::default();
        assert!(attributes.to_string().is_empty());

        let attributes = Attributes::from(vec![Entry::new("gene_id", "ndls0")]);

        assert_eq!(attributes.to_string(), "gene_id=ndls0");

        let attributes = Attributes::from(vec![
            Entry::new("gene_id", "ndls0"),
            Entry::new("gene_name", "gene0"),
        ]);

        assert_eq!(attributes.to_string(), "gene_id=ndls0;gene_name=gene0")
    }

    #[test]
    fn test_from_str() -> Result<(), ParseError> {
        let s = "gene_id=ndls0;gene_name=gene0";
        let actual = s.parse::<Attributes>()?;
        let expected = Attributes::from(vec![
            Entry::new("gene_id", "ndls0"),
            Entry::new("gene_name", "gene0"),
        ]);
        assert_eq!(actual, expected);

        let s = "gene_id=ndls0";
        let actual = s.parse::<Attributes>()?;
        let expected = Attributes::from(vec![Entry::new(
            String::from("gene_id"),
            String::from("ndls0"),
        )]);
        assert_eq!(actual, expected);

        let actual = "".parse::<Attributes>()?;
        let expected = Attributes::default();
        assert_eq!(actual, expected);

        Ok(())
    }
}