rune 0.14.2

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
//! Constants storage.
//!
//! This maps the item of a global constant to its value. It's also used to
//! detect resolution cycles during constant evaluation.

use crate::alloc::{self, HashMap, HashSet};
use crate::compile::ItemId;
use crate::runtime::ConstValue;

/// State for constants processing.
#[derive(Default)]
pub(crate) struct Consts {
    /// Const expression that have been resolved.
    resolved: HashMap<ItemId, ConstValue>,
    /// Constant expressions being processed.
    processing: HashSet<ItemId>,
}

impl Consts {
    /// Mark that the given constant is being processed.
    ///
    /// Returns `true` if the given constant hasn't been marked yet. This is
    /// used to detect cycles during processing.
    pub(crate) fn mark(&mut self, item: ItemId) -> alloc::Result<bool> {
        self.processing.try_insert(item)
    }

    /// Get the value for the constant at the given item, if present.
    pub(crate) fn get(&self, item: ItemId) -> Option<&ConstValue> {
        self.resolved.get(&item)
    }

    /// Insert a constant value at the given item.
    pub(crate) fn insert(
        &mut self,
        item: ItemId,
        value: ConstValue,
    ) -> alloc::Result<Option<ConstValue>> {
        self.resolved.try_insert(item, value)
    }
}