dust/src/abstract_tree/identifier.rs

70 lines
1.8 KiB
Rust
Raw Normal View History

2024-01-06 10:00:36 +00:00
use std::fmt::{self, Display, Formatter};
2023-10-06 17:32:58 +00:00
use serde::{Deserialize, Serialize};
use tree_sitter::Node;
2024-01-06 13:11:09 +00:00
use crate::{AbstractTree, Error, Format, Map, Result, Type, Value};
2023-10-06 17:32:58 +00:00
/// A string by which a variable is known to a context.
///
/// Every variable is a key-value pair. An identifier holds the key part of that
/// pair. Its inner value can be used to retrieve a Value instance from a Map.
2023-10-06 17:32:58 +00:00
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
pub struct Identifier(String);
impl Identifier {
2024-01-06 13:11:09 +00:00
pub fn new<T: Into<String>>(inner: T) -> Self {
Identifier(inner.into())
2023-10-06 17:32:58 +00:00
}
pub fn take_inner(self) -> String {
self.0
}
pub fn inner(&self) -> &String {
&self.0
}
}
impl AbstractTree for Identifier {
2023-11-30 03:54:46 +00:00
fn from_syntax_node(source: &str, node: Node, _context: &Map) -> Result<Self> {
2023-11-15 02:24:47 +00:00
Error::expect_syntax_node(source, "identifier", node)?;
2023-10-22 18:33:08 +00:00
2023-11-30 03:54:46 +00:00
let text = &source[node.byte_range()];
2023-10-06 17:32:58 +00:00
debug_assert!(!text.is_empty());
2023-11-30 03:54:46 +00:00
Ok(Identifier(text.to_string()))
2023-10-06 17:32:58 +00:00
}
2023-11-30 00:23:42 +00:00
fn run(&self, _source: &str, context: &Map) -> Result<Value> {
2023-12-09 22:15:41 +00:00
if let Some((value, _)) = context.variables()?.get(&self.0) {
2024-01-03 20:36:03 +00:00
if !value.is_none() {
return Ok(value.clone());
}
2023-10-29 23:31:06 +00:00
}
2024-01-03 20:36:03 +00:00
Err(Error::VariableIdentifierNotFound(self.0.clone()))
2023-10-06 17:32:58 +00:00
}
2023-11-30 00:23:42 +00:00
2023-12-05 22:08:22 +00:00
fn expected_type(&self, context: &Map) -> Result<Type> {
2023-12-12 23:21:16 +00:00
if let Some((_value, r#type)) = context.variables()?.get(&self.0) {
Ok(r#type.clone())
2023-11-30 00:23:42 +00:00
} else {
2023-12-26 22:19:12 +00:00
Ok(Type::None)
2023-11-30 00:23:42 +00:00
}
}
2023-10-06 17:32:58 +00:00
}
2024-01-06 10:00:36 +00:00
2024-01-06 13:11:09 +00:00
impl Format for Identifier {
2024-01-06 13:53:31 +00:00
fn format(&self, output: &mut String, _indent_level: u8) {
2024-01-06 13:11:09 +00:00
output.push_str(&self.0);
}
}
2024-01-06 10:00:36 +00:00
impl Display for Identifier {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "{}", self.0)
}
}