dust/src/context.rs

112 lines
3.0 KiB
Rust
Raw Normal View History

2024-02-25 18:49:26 +00:00
use std::{
collections::BTreeMap,
sync::{Arc, RwLock},
};
2024-03-06 23:15:25 +00:00
use crate::{
abstract_tree::{Identifier, Type},
error::RwLockPoisonError,
2024-03-17 17:36:31 +00:00
value::BuiltInFunction,
2024-03-06 23:15:25 +00:00
Value,
};
2024-02-25 18:49:26 +00:00
2024-03-12 01:57:27 +00:00
#[derive(Clone, Debug)]
2024-03-17 17:36:31 +00:00
pub struct Context {
inner: Arc<RwLock<BTreeMap<Identifier, ValueData>>>,
2024-02-25 18:49:26 +00:00
}
impl Context {
pub fn new() -> Self {
Self {
inner: Arc::new(RwLock::new(BTreeMap::new())),
}
}
2024-03-17 17:36:31 +00:00
pub fn with_data(data: BTreeMap<Identifier, ValueData>) -> Self {
2024-02-25 18:49:26 +00:00
Self {
2024-03-06 23:15:25 +00:00
inner: Arc::new(RwLock::new(data)),
}
}
2024-03-17 17:36:31 +00:00
pub fn inherit_types_from(&self, other: &Context) -> Result<(), RwLockPoisonError> {
let mut self_data = self.inner.write()?;
2024-03-17 17:36:31 +00:00
for (identifier, value_data) in other.inner.read()?.iter() {
2024-03-11 18:49:44 +00:00
if let ValueData::Type(r#type) = value_data {
if let Type::Function { .. } = r#type {
2024-03-17 17:36:31 +00:00
self_data.insert(identifier.clone(), value_data.clone());
2024-03-11 18:49:44 +00:00
}
}
}
2024-03-17 17:36:31 +00:00
Ok(())
}
2024-03-17 17:36:31 +00:00
pub fn inherit_data_from(&self, other: &Context) -> Result<(), RwLockPoisonError> {
let mut self_data = self.inner.write()?;
2024-03-17 17:36:31 +00:00
for (identifier, value_data) in other.inner.read()?.iter() {
self_data.insert(identifier.clone(), value_data.clone());
}
2024-03-17 17:36:31 +00:00
Ok(())
}
2024-03-17 17:36:31 +00:00
pub fn contains(&self, identifier: &Identifier) -> Result<bool, RwLockPoisonError> {
Ok(self.inner.read()?.contains_key(identifier))
2024-03-12 01:57:27 +00:00
}
2024-03-17 17:36:31 +00:00
pub fn get_type(&self, identifier: &Identifier) -> Result<Option<Type>, RwLockPoisonError> {
if let Some(value_data) = self.inner.read()?.get(identifier) {
let r#type = match value_data {
ValueData::Type(r#type) => r#type.clone(),
ValueData::Value(value) => value.r#type(),
2024-03-12 01:57:27 +00:00
};
2024-03-09 11:55:19 +00:00
return Ok(Some(r#type.clone()));
2024-03-06 23:15:25 +00:00
}
2024-03-09 11:55:19 +00:00
let r#type = match identifier.as_str() {
"output" => BuiltInFunction::Output.r#type(),
_ => return Ok(None),
};
Ok(Some(r#type))
2024-03-06 23:15:25 +00:00
}
2024-03-17 17:36:31 +00:00
pub fn get_value(&self, identifier: &Identifier) -> Result<Option<Value>, RwLockPoisonError> {
if let Some(ValueData::Value(value)) = self.inner.read()?.get(identifier) {
Ok(Some(value.clone()))
2024-03-12 01:57:27 +00:00
} else {
2024-03-17 17:36:31 +00:00
let value = match identifier.as_str() {
"output" => Value::built_in_function(BuiltInFunction::Output),
_ => return Ok(None),
};
2024-03-12 01:57:27 +00:00
2024-03-17 17:36:31 +00:00
Ok(Some(value))
2024-02-25 18:49:26 +00:00
}
}
2024-03-06 23:15:25 +00:00
pub fn set_type(&self, identifier: Identifier, r#type: Type) -> Result<(), RwLockPoisonError> {
self.inner
.write()?
2024-03-17 17:36:31 +00:00
.insert(identifier, ValueData::Type(r#type));
2024-02-25 18:49:26 +00:00
2024-03-06 23:15:25 +00:00
Ok(())
2024-02-25 18:49:26 +00:00
}
2024-03-06 23:15:25 +00:00
pub fn set_value(&self, identifier: Identifier, value: Value) -> Result<(), RwLockPoisonError> {
2024-03-12 01:57:27 +00:00
let mut inner = self.inner.write()?;
2024-03-17 17:36:31 +00:00
inner.insert(identifier, ValueData::Value(value));
2024-02-25 18:49:26 +00:00
Ok(())
}
}
2024-03-17 17:36:31 +00:00
#[derive(Clone, Debug, PartialEq)]
pub enum ValueData {
Type(Type),
Value(Value),
}