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};
|
|
|
|
|
2024-01-10 20:03:52 +00:00
|
|
|
use crate::{AbstractTree, Error, Format, Map, Result, SyntaxNode, Type, Value};
|
2023-10-06 17:32:58 +00:00
|
|
|
|
2023-12-06 18:48:38 +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 {
|
2024-01-10 20:03:52 +00:00
|
|
|
fn from_syntax(node: SyntaxNode, source: &str, _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
|
|
|
|
2023-12-31 14:47:20 +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-06 16:17:08 +00:00
|
|
|
Ok(value.clone())
|
|
|
|
} else {
|
|
|
|
Err(Error::VariableIdentifierNotFound(self.0.clone()))
|
2023-10-29 23:31:06 +00:00
|
|
|
}
|
2024-01-06 16:17:08 +00:00
|
|
|
}
|
2024-01-03 20:36:03 +00:00
|
|
|
|
2024-01-10 01:38:40 +00:00
|
|
|
fn check_type(&self, _source: &str, _context: &Map) -> Result<()> {
|
|
|
|
Ok(())
|
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 {
|
2024-01-06 16:17:08 +00:00
|
|
|
Err(Error::VariableIdentifierNotFound(self.0.clone()))
|
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)
|
|
|
|
}
|
|
|
|
}
|