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
// Copyright 2019 Palantir Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::borrow::Cow;
use std::collections::{btree_map, BTreeMap};

/// An identifier of a metric.
///
/// It consists of a name as well as a set of tags that can be used to further filter and partition the metrics.
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct MetricId {
    name: Cow<'static, str>,
    tags: Tags,
}

impl MetricId {
    /// Creates a new metric ID with the specified name and no tags.
    pub fn new<T>(name: T) -> MetricId
    where
        T: Into<Cow<'static, str>>,
    {
        MetricId {
            name: name.into(),
            tags: Tags(BTreeMap::new()),
        }
    }

    /// A builder-style method adding a tag to the metric ID.
    pub fn with_tag<K, V>(mut self, key: K, value: V) -> MetricId
    where
        K: Into<Cow<'static, str>>,
        V: Into<Cow<'static, str>>,
    {
        self.tags.0.insert(key.into(), value.into());
        self
    }

    /// Returns the ID's name.
    #[inline]
    pub fn name(&self) -> &str {
        &self.name
    }

    /// Returns the ID's tags.
    #[inline]
    pub fn tags(&self) -> &Tags {
        &self.tags
    }
}

impl From<String> for MetricId {
    #[inline]
    fn from(s: String) -> Self {
        MetricId::new(s)
    }
}

impl From<&'static str> for MetricId {
    #[inline]
    fn from(s: &'static str) -> Self {
        MetricId::new(s)
    }
}

impl From<Cow<'static, str>> for MetricId {
    #[inline]
    fn from(s: Cow<'static, str>) -> MetricId {
        MetricId::new(s)
    }
}

/// The tags associated with a metric ID.
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct Tags(BTreeMap<Cow<'static, str>, Cow<'static, str>>);

impl Tags {
    /// Returns an iterator over the tags.
    #[inline]
    pub fn iter(&self) -> TagsIter<'_> {
        TagsIter(self.0.iter())
    }
}

impl<'a> IntoIterator for &'a Tags {
    type Item = (&'a str, &'a str);
    type IntoIter = TagsIter<'a>;

    #[inline]
    fn into_iter(self) -> TagsIter<'a> {
        self.iter()
    }
}

/// An iterator over the key-value pairs of a metric ID's tags.
pub struct TagsIter<'a>(btree_map::Iter<'a, Cow<'static, str>, Cow<'static, str>>);

impl<'a> Iterator for TagsIter<'a> {
    type Item = (&'a str, &'a str);

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        self.0.next().map(|(k, v)| (&**k, &**v))
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.0.size_hint()
    }
}

impl<'a> ExactSizeIterator for TagsIter<'a> {}

#[cfg(test)]
mod test {
    use crate::MetricId;

    #[test]
    fn basic() {
        let id = MetricId::new("foo.bar")
            .with_tag("a", "b")
            .with_tag("fizz", "buzz")
            .with_tag("fizz", "bazz");

        assert_eq!(id.name(), "foo.bar");
        assert_eq!(
            id.tags().iter().collect::<Vec<_>>(),
            &[("a", "b"), ("fizz", "bazz")]
        );
    }
}