Refactor transpile module and error handling
This commit is contained in:
parent
4b52985992
commit
2ed6e56ef1
|
@ -10,8 +10,8 @@ pub enum Error {
|
|||
TokenizeError(#[from] crate::lexical::token::TokenizeError),
|
||||
#[error("An error occurred while parsing the source code.")]
|
||||
ParseError(#[from] crate::syntax::error::Error),
|
||||
#[error("An error occurred while compiling the source code.")]
|
||||
CompileError(#[from] crate::transpile::error::TranspileError),
|
||||
#[error("An error occurred while transpiling the source code.")]
|
||||
TranspileError(#[from] crate::transpile::error::TranspileError),
|
||||
#[error("An error occurred")]
|
||||
Other(&'static str),
|
||||
}
|
||||
|
|
12
src/lib.rs
12
src/lib.rs
|
@ -21,6 +21,8 @@ use std::{cell::Cell, fmt::Display, path::Path};
|
|||
|
||||
use base::{source_file::SourceFile, Handler, Result};
|
||||
use syntax::syntax_tree::program::Program;
|
||||
|
||||
#[cfg(feature = "shulkerbox")]
|
||||
use transpile::transpiler::Transpiler;
|
||||
|
||||
#[cfg(feature = "shulkerbox")]
|
||||
|
@ -103,8 +105,9 @@ pub fn transpile(path: &Path) -> Result<Datapack> {
|
|||
));
|
||||
}
|
||||
|
||||
let mut transpiler = Transpiler::new();
|
||||
let datapack = transpiler.transpile(&program, &printer)?;
|
||||
let mut transpiler = Transpiler::new("shulkerscript-pack", 27);
|
||||
transpiler.transpile(&program, &printer)?;
|
||||
let datapack = transpiler.into_datapack();
|
||||
|
||||
Ok(datapack)
|
||||
}
|
||||
|
@ -144,8 +147,9 @@ pub fn compile(path: &Path) -> Result<VFolder> {
|
|||
|
||||
// println!("program: {program:#?}");
|
||||
|
||||
let mut transpiler = Transpiler::new();
|
||||
let datapack = transpiler.transpile(&program, &printer)?;
|
||||
let mut transpiler = Transpiler::new("shulkerscript-pack", 27);
|
||||
transpiler.transpile(&program, &printer)?;
|
||||
let datapack = transpiler.into_datapack();
|
||||
|
||||
// println!("datapack: {datapack:#?}");
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//! Errors that can occur during compilation.
|
||||
//! Errors that can occur during transpilation.
|
||||
|
||||
/// Errors that can occur during compilation.
|
||||
/// Errors that can occur during transpilation.
|
||||
#[allow(clippy::module_name_repetitions, missing_docs)]
|
||||
#[derive(Debug, thiserror::Error, Clone, Copy)]
|
||||
pub enum TranspileError {
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
//! The transpile module is responsible for transpiling the abstract syntax tree into a data pack.
|
||||
|
||||
#[doc(hidden)]
|
||||
#[cfg(feature = "shulkerbox")]
|
||||
pub mod conversions;
|
||||
pub mod error;
|
||||
#[cfg(feature = "shulkerbox")]
|
||||
pub mod transpiler;
|
||||
|
|
|
@ -12,21 +12,37 @@ use crate::{
|
|||
use super::error::{self, TranspileError};
|
||||
|
||||
/// A transpiler for `ShulkerScript`.
|
||||
#[derive(Debug, Clone, Default)]
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Transpiler {
|
||||
functions: HashMap<String, (Vec<Statement>, AnnotationMap)>,
|
||||
datapack: shulkerbox::datapack::Datapack,
|
||||
functions: HashMap<String, FunctionData>,
|
||||
function_locations: HashMap<String, String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
struct FunctionData {
|
||||
namespace: String,
|
||||
statements: Vec<Statement>,
|
||||
annotations: HashMap<String, Option<String>>,
|
||||
}
|
||||
type AnnotationMap = HashMap<String, Option<String>>;
|
||||
|
||||
impl Transpiler {
|
||||
/// Creates a new transpiler.
|
||||
#[must_use]
|
||||
pub fn new() -> Self {
|
||||
pub fn new(pack_name: &str, pack_format: u8) -> Self {
|
||||
Self {
|
||||
datapack: shulkerbox::datapack::Datapack::new(pack_name, pack_format),
|
||||
functions: HashMap::new(),
|
||||
function_locations: HashMap::new(),
|
||||
}
|
||||
}
|
||||
|
||||
/// Consumes the transpiler and returns the resulting datapack.
|
||||
#[must_use]
|
||||
pub fn into_datapack(self) -> Datapack {
|
||||
self.datapack
|
||||
}
|
||||
|
||||
/// Transpiles the given program.
|
||||
///
|
||||
/// # Errors
|
||||
|
@ -35,8 +51,21 @@ impl Transpiler {
|
|||
&mut self,
|
||||
program: &Program,
|
||||
handler: &impl Handler<error::TranspileError>,
|
||||
) -> Result<Datapack, TranspileError> {
|
||||
) -> Result<(), TranspileError> {
|
||||
for declaration in program.declarations() {
|
||||
self.transpile_declaration(declaration);
|
||||
}
|
||||
|
||||
self.get_or_transpile_function("main").ok_or_else(|| {
|
||||
handler.receive(TranspileError::MissingMainFunction);
|
||||
TranspileError::MissingMainFunction
|
||||
})?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Transpiles the given declaration.
|
||||
fn transpile_declaration(&mut self, declaration: &Declaration) {
|
||||
match declaration {
|
||||
Declaration::Function(function) => {
|
||||
let name = function.identifier().span().str().to_string();
|
||||
|
@ -53,31 +82,46 @@ impl Transpiler {
|
|||
)
|
||||
})
|
||||
.collect();
|
||||
self.functions.insert(name, (statements, annotations))
|
||||
self.functions.insert(
|
||||
name,
|
||||
FunctionData {
|
||||
namespace: "shulkerscript".to_string(),
|
||||
statements,
|
||||
annotations,
|
||||
},
|
||||
);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
let Some((main_function, main_annotations)) = self.functions.get("main") else {
|
||||
handler.receive(TranspileError::MissingMainFunction);
|
||||
return Err(TranspileError::MissingMainFunction);
|
||||
};
|
||||
/// Gets the function at the given path, or transpiles it if it hasn't been transpiled yet.
|
||||
fn get_or_transpile_function(&mut self, path: &str) -> Option<&str> {
|
||||
let already_transpiled = self.function_locations.get(path);
|
||||
if already_transpiled.is_none() {
|
||||
let function_data = self.functions.get(path)?;
|
||||
let commands = compile_function(&function_data.statements);
|
||||
|
||||
let main_commands = compile_function(main_function);
|
||||
// TODO: change this
|
||||
let mut datapack = shulkerbox::datapack::Datapack::new("shulkerscript-pack", 27);
|
||||
let namespace = datapack.namespace_mut("shulkerscript");
|
||||
let main_function = namespace.function_mut("main");
|
||||
main_function.get_commands_mut().extend(main_commands);
|
||||
let function = self
|
||||
.datapack
|
||||
.namespace_mut(&function_data.namespace)
|
||||
.function_mut(path);
|
||||
function.get_commands_mut().extend(commands);
|
||||
|
||||
if main_annotations.contains_key("tick") {
|
||||
datapack.add_tick("shulkerscript:main");
|
||||
let function_location =
|
||||
format!("{namespace}:{path}", namespace = function_data.namespace);
|
||||
|
||||
if function_data.annotations.contains_key("tick") {
|
||||
self.datapack.add_tick(&function_location);
|
||||
}
|
||||
if main_annotations.contains_key("load") {
|
||||
datapack.add_load("shulkerscript:main");
|
||||
if function_data.annotations.contains_key("load") {
|
||||
self.datapack.add_load(&function_location);
|
||||
}
|
||||
|
||||
Ok(datapack)
|
||||
self.function_locations
|
||||
.insert(path.to_string(), function_location);
|
||||
}
|
||||
|
||||
self.function_locations.get(path).map(String::as_str)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue