micromegas-analytics 0.19.0

analytics module of micromegas
Documentation
use anyhow::Result;
use micromegas_telemetry::property::Property;
use micromegas_transit::value::{Object, Value};
use std::sync::Arc;

/// A set of properties, backed by a `transit` object.
#[derive(Debug, Clone)]
pub struct PropertySet {
    obj: Arc<Object>,
}

impl PropertySet {
    pub fn new(obj: Arc<Object>) -> Self {
        Self { obj }
    }

    pub fn empty() -> Self {
        lazy_static::lazy_static! {
            static ref TYPE_NAME: Arc<String> = Arc::new("EmptyPropertySet".into());
            static ref EMPTY_SET: PropertySet = PropertySet::new( Arc::new( Object{ type_name: TYPE_NAME.clone(), members: vec![] }) );
        }
        EMPTY_SET.clone()
    }

    /// Iterates over the properties in the set.
    pub fn for_each_property<Fun: FnMut(Property) -> Result<()>>(
        &self,
        mut fun: Fun,
    ) -> Result<()> {
        for (key, value) in &self.obj.members {
            if let Value::String(value_str) = value {
                fun(Property::new(key.clone(), value_str.clone()))?;
            }
        }
        Ok(())
    }

    /// Get a reference to the underlying `Arc<Object>` for pointer-based operations.
    ///
    /// This is used by custom dictionary builders for efficient deduplication
    /// based on Arc pointer addresses rather than content hashing.
    pub fn as_arc_object(&self) -> &Arc<Object> {
        &self.obj
    }
}

impl From<Arc<Object>> for PropertySet {
    fn from(value: Arc<Object>) -> Self {
        Self::new(value)
    }
}