dust/dust-lang/src/context.rs

201 lines
5.6 KiB
Rust
Raw Normal View History

2024-02-25 18:49:26 +00:00
use std::{
collections::BTreeMap,
sync::{Arc, RwLock, RwLockReadGuard},
2024-02-25 18:49:26 +00:00
};
2024-03-06 23:15:25 +00:00
use crate::{
2024-03-25 04:16:55 +00:00
abstract_tree::Type,
2024-03-19 22:31:52 +00:00
error::{RwLockPoisonError, ValidationError},
2024-03-25 04:16:55 +00:00
identifier::Identifier,
2024-03-24 00:36:23 +00:00
Value,
2024-03-06 23:15:25 +00:00
};
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 {
2024-04-22 07:41:21 +00:00
variables: Arc<RwLock<BTreeMap<Identifier, (ValueData, UsageData)>>>,
2024-04-22 11:56:03 +00:00
is_clean: bool,
2024-02-25 18:49:26 +00:00
}
impl Context {
pub fn new() -> Self {
Self {
2024-04-22 07:41:21 +00:00
variables: Arc::new(RwLock::new(BTreeMap::new())),
2024-04-22 11:56:03 +00:00
is_clean: true,
2024-03-06 23:15:25 +00:00
}
}
2024-03-20 08:42:13 +00:00
pub fn inner(
&self,
) -> Result<RwLockReadGuard<BTreeMap<Identifier, (ValueData, UsageData)>>, RwLockPoisonError>
{
2024-04-22 07:41:21 +00:00
Ok(self.variables.read()?)
2024-03-20 08:42:13 +00:00
}
2024-03-17 17:36:31 +00:00
pub fn inherit_types_from(&self, other: &Context) -> Result<(), RwLockPoisonError> {
2024-04-22 07:41:21 +00:00
let mut self_data = self.variables.write()?;
2024-04-22 07:41:21 +00:00
for (identifier, (value_data, usage_data)) in other.variables.read()?.iter() {
if let ValueData::Type(Type::Function { .. }) = value_data {
2024-04-22 07:41:21 +00:00
log::trace!("Inheriting type of variable {identifier}.");
self_data.insert(identifier.clone(), (value_data.clone(), usage_data.clone()));
}
}
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> {
2024-04-22 07:41:21 +00:00
let mut self_data = self.variables.write()?;
for (identifier, (value_data, usage_data)) in other.variables.read()?.iter() {
log::trace!("Inheriting variable {identifier}.");
self_data.insert(identifier.clone(), (value_data.clone(), usage_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> {
2024-04-22 07:41:21 +00:00
log::trace!("Checking that {identifier} exists.");
Ok(self.variables.read()?.contains_key(identifier))
2024-03-12 01:57:27 +00:00
}
2024-03-19 22:31:52 +00:00
pub fn get_type(&self, identifier: &Identifier) -> Result<Option<Type>, ValidationError> {
2024-04-22 07:41:21 +00:00
if let Some((value_data, _)) = self.variables.read()?.get(identifier) {
log::trace!("Using {identifier}'s type.");
2024-03-17 17:36:31 +00:00
let r#type = match value_data {
2024-03-20 12:36:18 +00:00
ValueData::Type(r#type) => r#type.clone(),
2024-03-19 22:31:52 +00:00
ValueData::Value(value) => value.r#type(self)?,
2024-03-12 01:57:27 +00:00
};
2024-03-23 12:15:48 +00:00
Ok(Some(r#type.clone()))
} else {
Ok(None)
2024-03-18 12:15:30 +00:00
}
2024-03-06 23:15:25 +00:00
}
pub fn use_value(&self, identifier: &Identifier) -> Result<Option<Value>, RwLockPoisonError> {
2024-04-22 09:50:26 +00:00
if let Some((ValueData::Value(value), usage_data)) = self.variables.read()?.get(identifier)
{
log::trace!("Using {identifier}'s value.");
2024-04-22 09:50:26 +00:00
usage_data.inner().write()?.actual += 1;
2024-03-17 17:36:31 +00:00
Ok(Some(value.clone()))
2024-03-12 01:57:27 +00:00
} else {
2024-03-18 12:15:30 +00:00
Ok(None)
2024-02-25 18:49:26 +00:00
}
}
2024-04-22 11:56:03 +00:00
pub fn get_value(&self, identifier: &Identifier) -> Result<Option<Value>, RwLockPoisonError> {
if let Some((ValueData::Value(value), _)) = self.variables.read()?.get(identifier) {
log::trace!("Getting {identifier}'s value.");
Ok(Some(value.clone()))
} else {
Ok(None)
}
}
2024-03-06 23:15:25 +00:00
pub fn set_type(&self, identifier: Identifier, r#type: Type) -> Result<(), RwLockPoisonError> {
2024-04-22 07:41:21 +00:00
log::debug!("Setting {identifier} to type {}.", r#type);
2024-04-22 07:41:21 +00:00
self.variables
2024-03-06 23:15:25 +00:00
.write()?
.insert(identifier, (ValueData::Type(r#type), UsageData::new()));
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-04-22 07:41:21 +00:00
log::debug!("Setting {identifier} to value {value}.");
2024-04-22 07:41:21 +00:00
let mut variables = self.variables.write()?;
let old_usage_data = variables
.remove(&identifier)
.map(|(_, usage_data)| usage_data);
if let Some(usage_data) = old_usage_data {
2024-04-22 07:41:21 +00:00
variables.insert(identifier, (ValueData::Value(value), usage_data));
} else {
2024-04-22 07:41:21 +00:00
variables.insert(identifier, (ValueData::Value(value), UsageData::new()));
}
2024-02-25 18:49:26 +00:00
Ok(())
}
2024-03-23 12:47:57 +00:00
pub fn clean(&mut self) -> Result<(), RwLockPoisonError> {
2024-04-22 11:56:03 +00:00
if self.is_clean {
return Ok(());
}
2024-04-22 07:41:21 +00:00
self.variables
.write()?
2024-04-22 11:56:03 +00:00
.retain(|identifier, (value_data, usage_data)| {
if let ValueData::Value(_) = value_data {
let usage = usage_data.inner().read().unwrap();
2024-04-22 09:50:26 +00:00
2024-04-22 11:56:03 +00:00
if usage.actual < usage.expected {
true
} else {
log::trace!("Removing variable {identifier}.");
2024-04-22 11:56:03 +00:00
false
}
} else {
false
}
2024-04-22 07:41:21 +00:00
});
2024-04-22 11:56:03 +00:00
self.is_clean = true;
Ok(())
}
pub fn add_expected_use(&self, identifier: &Identifier) -> Result<bool, RwLockPoisonError> {
2024-04-22 09:50:26 +00:00
if let Some((_, usage_data)) = self.variables.read()?.get(identifier) {
log::trace!("Adding expected use for variable {identifier}.");
2024-04-22 09:50:26 +00:00
usage_data.inner().write()?.expected += 1;
Ok(true)
} else {
Ok(false)
}
}
2024-02-25 18:49:26 +00:00
}
2024-03-17 17:36:31 +00:00
#[derive(Clone, Debug, PartialEq)]
pub enum ValueData {
Type(Type),
Value(Value),
}
#[derive(Clone, Debug)]
2024-04-22 09:50:26 +00:00
pub struct UsageData(Arc<RwLock<UsageDataInner>>);
impl UsageData {
pub fn inner(&self) -> &Arc<RwLock<UsageDataInner>> {
&self.0
}
}
#[derive(Clone, Debug)]
pub struct UsageDataInner {
pub actual: u32,
pub expected: u32,
}
impl UsageData {
pub fn new() -> Self {
2024-04-22 09:50:26 +00:00
UsageData(Arc::new(RwLock::new(UsageDataInner {
actual: 0,
expected: 0,
2024-04-22 09:50:26 +00:00
})))
}
}