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
use crate::data::Snapshot;
use crate::registry::{MetricRegistry, ScopeRegistry};
use futures::prelude::*;
use metrics_core::{AsyncSnapshotProvider, SnapshotProvider};
use std::error::Error;
use std::fmt;
use std::sync::Arc;

/// Error during snapshot retrieval.
#[derive(Debug, Clone)]
pub enum SnapshotError {
    /// The future was polled again after returning the snapshot.
    AlreadyUsed,

    #[doc(hidden)]
    _NonExhaustive,
}

impl Error for SnapshotError {}

impl fmt::Display for SnapshotError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            SnapshotError::AlreadyUsed => write!(f, "snapshot already returned from future"),
            SnapshotError::_NonExhaustive => write!(f, "non-exhaustive matching"),
        }
    }
}

/// Handle for acquiring snapshots.
///
/// `Controller` is [`metrics-core`]-compatible as a snapshot provider, both for synchronous and
/// asynchronous snapshotting.
///
/// [`metrics-core`]: https://docs.rs/metrics-core
#[derive(Clone)]
pub struct Controller {
    metric_registry: Arc<MetricRegistry>,
    scope_registry: Arc<ScopeRegistry>,
}

impl Controller {
    pub(crate) fn new(
        metric_registry: Arc<MetricRegistry>,
        scope_registry: Arc<ScopeRegistry>,
    ) -> Controller {
        Controller {
            metric_registry,
            scope_registry,
        }
    }
}

impl SnapshotProvider for Controller {
    type Snapshot = Snapshot;
    type SnapshotError = SnapshotError;

    /// Gets a snapshot.
    fn get_snapshot(&self) -> Result<Snapshot, SnapshotError> {
        let snapshot = self.metric_registry.get_snapshot();
        Ok(snapshot)
    }
}

impl AsyncSnapshotProvider for Controller {
    type Snapshot = Snapshot;
    type SnapshotError = SnapshotError;
    type SnapshotFuture = SnapshotFuture;

    /// Gets a snapshot asynchronously.
    fn get_snapshot_async(&self) -> Self::SnapshotFuture {
        let snapshot = self.metric_registry.get_snapshot();
        SnapshotFuture::new(snapshot)
    }
}

/// A future representing collecting a snapshot.
pub struct SnapshotFuture {
    snapshot: Option<Snapshot>,
}

impl SnapshotFuture {
    pub fn new(snapshot: Snapshot) -> Self {
        SnapshotFuture {
            snapshot: Some(snapshot),
        }
    }
}

impl Future for SnapshotFuture {
    type Item = Snapshot;
    type Error = SnapshotError;

    fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
        self.snapshot
            .take()
            .ok_or(SnapshotError::AlreadyUsed)
            .map(Async::Ready)
    }
}