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

use serde_json::Value;

use crate::client::Options;
use crate::errors::Result;
use crate::event::Event;
use crate::fields::FieldHolder;

/// Shorthand type for the function to be passed to the `add_dynamic_field` calls
pub type DynamicFieldFunc = fn() -> Value;

impl FieldHolder for Builder {
    fn add(&mut self, data: HashMap<String, Value>) {
        self.fields.extend(data);
    }

    /// add_field adds a field to the current (event/builder) fields
    fn add_field(&mut self, name: &str, value: Value) {
        self.fields.insert(name.to_string(), value);
    }

    /// add_func iterates over the results from func (until Err) and adds the results to
    /// the event/builder fields
    fn add_func<F>(&mut self, func: F)
    where
        F: Fn() -> Result<(String, Value)>,
    {
        while let Ok((name, value)) = func() {
            self.add_field(&name, value);
        }
    }
}

/// Builder is used to create templates for new events, specifying default fields and
/// override settings.
#[derive(Debug, Clone)]
pub struct Builder {
    /// Client Options
    pub options: Options,
    pub(crate) fields: HashMap<String, Value>,
    dynamic_fields: Vec<(String, DynamicFieldFunc)>,
}

impl Builder {
    /// Creates a new event Builder with emtpy Static or Dynamic fields.
    pub fn new(options: Options) -> Self {
        Self {
            options,
            fields: HashMap::new(),
            dynamic_fields: Vec::new(),
        }
    }

    /// add_dynamic_field adds a dynamic field to the builder. Any events created from
    /// this builder will get this metric added.
    pub fn add_dynamic_field(&mut self, name: &str, func: DynamicFieldFunc) {
        self.dynamic_fields.push((name.to_string(), func));
    }

    /// new_event creates a new Event prepopulated with fields, dynamic field values, and
    /// configuration inherited from the builder.
    pub fn new_event(&self) -> Event {
        let mut e = Event::new(&self.options);
        e.fields = self.fields.clone();
        for (name, func) in &self.dynamic_fields {
            e.add_field(name, func())
        }
        e
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_builder_add() {
        let mut builder = Builder::new(Options::default());
        let mut d: HashMap<String, Value> = HashMap::new();
        d.insert("key".to_string(), Value::String("value".to_string()));
        builder.add(d);

        assert!(builder.fields.contains_key("key"));
        assert_eq!(builder.fields["key"], Value::String("value".to_string()));
    }

    #[test]
    fn test_builder_add_conflict() {
        let mut builder = Builder::new(Options::default());
        let mut data1: HashMap<String, Value> = HashMap::new();
        data1.insert("key".to_string(), Value::String("value".to_string()));
        builder.add(data1);
        let mut data2: HashMap<String, Value> = HashMap::new();
        data2.insert("key".to_string(), serde_json::json!(["1", "2"]));
        builder.add(data2);

        assert_eq!(builder.fields["key"], serde_json::json!(["1", "2"]));
    }
}