micromegas-analytics 0.11.0

analytics module of micromegas
Documentation
use datafusion::parquet::data_type::AsBytes;
use std::sync::Arc;
use xxhash_rust::xxh32::xxh32;

/// A description of a scope, including its name, location, and hash.
#[derive(Debug)]
pub struct ScopeDesc {
    pub name: Arc<String>,
    pub filename: Arc<String>,
    pub target: Arc<String>,
    pub line: u32,
    pub hash: u32,
}

/// A hash map of scope descriptions, keyed by their hash.
pub type ScopeHashMap = std::collections::HashMap<u32, ScopeDesc>;

impl ScopeDesc {
    pub fn new(name: Arc<String>, filename: Arc<String>, target: Arc<String>, line: u32) -> Self {
        let hash = compute_scope_hash(&name, &filename, &target, line);
        Self {
            name,
            filename,
            target,
            line,
            hash,
        }
    }
}

/// Computes the hash of a scope.
pub fn compute_scope_hash(name: &str, filename: &str, target: &str, line: u32) -> u32 {
    let hash_name = xxh32(name.as_bytes(), 0);
    let hash_with_filename = xxh32(filename.as_bytes(), hash_name);
    let hash_with_target = xxh32(target.as_bytes(), hash_with_filename);
    xxh32(line.as_bytes(), hash_with_target)
}