dust/dust-lang/src/abstract_tree/map_index.rs

146 lines
4.6 KiB
Rust
Raw Normal View History

2024-06-04 18:47:15 +00:00
use serde::{Deserialize, Serialize};
2024-03-18 01:07:03 +00:00
use crate::{
context::Context,
error::{RuntimeError, ValidationError},
value::ValueInner,
};
use super::{AbstractNode, Action, Expression, Type, ValueNode, WithPosition};
2024-03-18 01:07:03 +00:00
2024-06-04 18:47:15 +00:00
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
2024-03-18 01:07:03 +00:00
pub struct MapIndex {
collection: Expression,
index: Expression,
2024-03-18 01:07:03 +00:00
}
impl MapIndex {
pub fn new(left: Expression, right: Expression) -> Self {
Self {
collection: left,
index: right,
}
2024-03-18 01:07:03 +00:00
}
}
impl AbstractNode for MapIndex {
2024-04-22 12:25:20 +00:00
fn expected_type(&self, context: &mut Context) -> Result<Type, ValidationError> {
if let (Expression::Identifier(collection), Expression::Identifier(index)) =
(&self.collection, &self.index)
2024-03-18 01:07:03 +00:00
{
let collection = if let Some(collection) = context.get_value(&collection.item)? {
collection
} else {
return Err(ValidationError::VariableNotFound {
identifier: collection.item.clone(),
position: collection.position,
});
};
2024-03-18 01:07:03 +00:00
if let ValueInner::Map(map) = collection.inner().as_ref() {
2024-04-22 07:41:21 +00:00
return if let Some(value) = map.get(&index.item) {
2024-03-19 22:31:52 +00:00
Ok(value.r#type(context)?)
2024-03-18 01:07:03 +00:00
} else {
2024-03-18 09:39:09 +00:00
Err(ValidationError::PropertyNotFound {
2024-04-22 07:41:21 +00:00
identifier: index.item.clone(),
position: index.position,
2024-03-18 09:39:09 +00:00
})
2024-03-18 01:07:03 +00:00
};
};
}
2024-03-25 04:16:55 +00:00
if let (
Expression::Value(WithPosition {
2024-04-22 07:41:21 +00:00
item: ValueNode::Map(properties),
2024-03-25 04:16:55 +00:00
..
}),
Expression::Identifier(index),
) = (&self.collection, &self.index)
2024-03-18 01:07:03 +00:00
{
return if let Some(type_result) =
properties
.iter()
.find_map(|(property, type_option, expression)| {
2024-04-22 07:41:21 +00:00
if property == &index.item {
2024-03-18 01:07:03 +00:00
if let Some(r#type) = type_option {
2024-04-22 07:41:21 +00:00
Some(r#type.item.expected_type(context))
2024-03-18 01:07:03 +00:00
} else {
2024-03-25 04:16:55 +00:00
Some(expression.expected_type(context))
2024-03-18 01:07:03 +00:00
}
} else {
None
}
})
{
type_result
} else {
Ok(Type::None)
};
}
2024-03-24 21:34:36 +00:00
if let (
2024-03-25 04:16:55 +00:00
Expression::Value(WithPosition {
2024-04-22 07:41:21 +00:00
item: ValueNode::Structure { fields, .. },
2024-03-25 04:16:55 +00:00
..
}),
Expression::Identifier(index),
) = (&self.collection, &self.index)
2024-03-24 21:34:36 +00:00
{
return if let Some(type_result) = fields.iter().find_map(|(property, expression)| {
2024-04-22 07:41:21 +00:00
if property == &index.item {
2024-03-25 04:16:55 +00:00
Some(expression.expected_type(context))
2024-03-24 21:34:36 +00:00
} else {
None
}
}) {
type_result
} else {
Ok(Type::None)
};
}
Err(ValidationError::CannotIndex {
r#type: self.collection.expected_type(context)?,
position: self.collection.position(),
2024-03-18 01:07:03 +00:00
})
}
2024-04-22 12:25:20 +00:00
fn validate(
&self,
_context: &mut Context,
_manage_memory: bool,
) -> Result<(), ValidationError> {
2024-04-22 11:56:03 +00:00
self.collection.validate(_context, _manage_memory)
2024-03-18 01:07:03 +00:00
}
2024-04-22 11:56:03 +00:00
fn run(self, context: &mut Context, _manage_memory: bool) -> Result<Action, RuntimeError> {
let collection_position = self.collection.position();
2024-04-22 11:56:03 +00:00
let action = self.collection.run(context, _manage_memory)?;
2024-03-18 09:39:09 +00:00
let collection = if let Action::Return(value) = action {
value
} else {
return Err(RuntimeError::ValidationFailure(
2024-03-25 04:16:55 +00:00
ValidationError::InterpreterExpectedReturn(collection_position),
2024-03-18 09:39:09 +00:00
));
};
2024-03-18 01:07:03 +00:00
if let (ValueInner::Map(map), Expression::Identifier(index)) =
(collection.inner().as_ref(), self.index)
{
2024-03-18 01:07:03 +00:00
let action = map
.get(&index.item)
2024-03-18 01:07:03 +00:00
.map(|value| Action::Return(value.clone()))
.unwrap_or(Action::None);
Ok(action)
} else {
Err(RuntimeError::ValidationFailure(
ValidationError::CannotIndex {
r#type: collection.r#type(context)?,
position: collection_position,
2024-03-18 01:07:03 +00:00
},
))
}
}
}