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
use core::*;
use scores::*;
use publish::*;
use std::fmt::Debug;
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
pub fn aggregate<E, M>(capacity: usize, stat_fn: E, to_chain: Chain<M>) -> Chain<Aggregate>
    where
        E: Fn(Kind, &str, ScoreType) -> Option<(Kind, Vec<&str>, Value)> + Send + Sync + 'static,
        M: Clone + Send + Sync + Debug + 'static,
{
    let metrics = Arc::new(RwLock::new(HashMap::with_capacity(capacity)));
    let metrics0 = metrics.clone();
    let publish = Arc::new(Publisher::new(stat_fn, to_chain));
    Chain::new(
        move |kind, name, _rate| {
            metrics.write().unwrap()
                .entry(name.to_string())
                .or_insert_with(|| Arc::new(Scoreboard::new(kind, name.to_string()))
            ).clone()
        },
        move |_auto_flush| {
            let metrics = metrics0.clone();
            let publish = publish.clone();
            Arc::new(move |cmd| match cmd {
                ScopeCmd::Write(metric, value) => metric.update(value),
                ScopeCmd::Flush => {
                    let metrics = metrics.read().expect("Lock scoreboards for a snapshot.");
                    let snapshot = metrics.values().flat_map(|score| score.reset()).collect();
                    publish.publish(snapshot);
                }
            })
        },
    )
}
#[derive(Debug, Clone)]
pub struct Aggregator {
    metrics: Arc<RwLock<HashMap<String, Arc<Scoreboard>>>>,
    publish: Arc<Publish>,
}
impl Aggregator {
    
    pub fn with_capacity(size: usize, publish: Arc<Publish>) -> Aggregator {
        Aggregator {
            metrics: Arc::new(RwLock::new(HashMap::with_capacity(size))),
            publish: publish.clone(),
        }
    }
    
    pub fn cleanup(&self) {
        let orphans: Vec<String> = self.metrics.read().unwrap().iter()
            
            .filter(|&(_k, v)| Arc::strong_count(v) == 1)
            .map(|(k, _v)| k.to_string())
            .collect();
        if !orphans.is_empty() {
            let mut remover = self.metrics.write().unwrap();
            orphans.iter().for_each(|k| {remover.remove(k);});
        }
    }
}
pub type Aggregate = Arc<Scoreboard>;
#[cfg(feature = "bench")]
mod bench {
    use super::*;
    use test;
    use core::Kind::*;
    use output::*;
    #[bench]
    fn time_bench_write_event(b: &mut test::Bencher) {
        let sink = aggregate(4, summary, to_void());
        let metric = sink.define_metric(Marker, "event_a", 1.0);
        let scope = sink.open_scope(false);
        b.iter(|| test::black_box(scope(ScopeCmd::Write(&metric, 1))));
    }
    #[bench]
    fn time_bench_write_count(b: &mut test::Bencher) {
        let sink = aggregate(4, summary, to_void());
        let metric = sink.define_metric(Counter, "count_a", 1.0);
        let scope = sink.open_scope(false);
        b.iter(|| test::black_box(scope(ScopeCmd::Write(&metric, 1))));
    }
    #[bench]
    fn time_bench_read_event(b: &mut test::Bencher) {
        let sink = aggregate(4, summary, to_void());
        let metric = sink.define_metric(Marker, "marker_a", 1.0);
        b.iter(|| test::black_box(metric.reset()));
    }
    #[bench]
    fn time_bench_read_count(b: &mut test::Bencher) {
        let sink = aggregate(4, summary, to_void());
        let metric = sink.define_metric(Counter, "count_a", 1.0);
        b.iter(|| test::black_box(metric.reset()));
    }
}