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
use std::collections::HashMap;

mod parser;

#[derive(Debug,PartialEq)]
pub enum MetricType {
    Gauge,
    Counter,
    Timing
}

#[derive(Debug,PartialEq)]
pub struct ParseResult {
    name: String,
    value: f64,
    sample_rate: f64,
    metric_type: MetricType,
    tags: HashMap<String, String>
}

pub fn parse<S: Into<String>>(input: S) -> ParseResult {
    parser::Parser::new(input.into()).parse()
}

#[cfg(test)]
mod tests {
    use super::{MetricType, ParseResult};
    use std::collections::HashMap;

    use super::parse;

    #[test]
    fn test_statsd_counter() {
        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 1.0,
            metric_type: MetricType::Counter,
            sample_rate: 0.0,
            tags: HashMap::new()
        };

        assert_eq!(parse("gorets:1|c"), expected);
    }

    #[test]
    fn test_statsd_gauge() {
        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 1.0,
            metric_type: MetricType::Gauge,
            sample_rate: 0.0,
            tags: HashMap::new()
        };

        assert_eq!(parse("gorets:1|g"), expected);
    }

    #[test]
    fn test_statsd_time() {
        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 233.0,
            metric_type: MetricType::Timing,
            sample_rate: 0.0,
            tags: HashMap::new()
        };

        assert_eq!(parse("gorets:233|ms"), expected);
    }

    #[test]
    fn test_statsd_counter_with_sample_rate() {
        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 1.0,
            metric_type: MetricType::Counter,
            sample_rate: 0.5,
            tags: HashMap::new()
        };

        assert_eq!(parse("gorets:1|c|@0.5"), expected);
    }

    #[test]
    fn test_statsd_counter_with_tags() {
        let mut tags = HashMap::new();
        tags.insert("foo".to_string(), "bar".to_string());

        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 1.0,
            metric_type: MetricType::Counter,
            sample_rate: 0.0,
            tags: tags
        };

        assert_eq!(parse("gorets:1|c|#foo:bar"), expected);
    }

    #[test]
    fn test_statsd_counter_with_sample_rate_and_tags() {
        let mut tags = HashMap::new();
        tags.insert("foo".to_string(), "bar".to_string());
        tags.insert("moo".to_string(), "maa".to_string());

        let expected = ParseResult {
            name: "gorets".to_string(),
            value: 1.0,
            metric_type: MetricType::Counter,
            sample_rate: 0.9,
            tags: tags
        };

        assert_eq!(parse("gorets:1|c|@0.9|#foo:bar,moo:maa"), expected);
    }
}