use core::{Flush, MetricValue};
use core::input::InputKind;
use core::name::MetricName;
use core::void::Void;
use core::label::Labels;
use std::rc::Rc;
pub trait OutputScope: Flush {
fn new_metric(&self, name: MetricName, kind: InputKind) -> OutputMetric;
}
#[derive(Clone)]
pub struct OutputMetric {
inner: Rc<Fn(MetricValue, Labels)>
}
impl OutputMetric {
pub fn new<F: Fn(MetricValue, Labels) + 'static>(metric: F) -> OutputMetric {
OutputMetric { inner: Rc::new(metric) }
}
#[inline]
pub fn write(&self, value: MetricValue, labels: Labels) {
(self.inner)(value, labels)
}
}
pub trait Output: Send + Sync + 'static + OutputDyn {
type SCOPE: OutputScope;
fn output(&self) -> Self::SCOPE;
}
pub trait OutputDyn {
fn output_dyn(&self) -> Rc<OutputScope + 'static>;
}
impl<T: Output + Send + Sync + 'static> OutputDyn for T {
fn output_dyn(&self) -> Rc<OutputScope + 'static> {
Rc::new(self.output())
}
}
pub fn output_none() -> Void {
Void {}
}