use lsp_types::Url;
use std::{
error::Error,
fmt::{self, Debug, Display, Formatter},
};
mod error_custom;
pub type Result<T> = std::result::Result<T, NoteError>;
#[derive(Debug)]
pub struct NoteError {
kind: Box<NoteErrorKind>,
file: Option<Url>,
range: (u32, u32),
}
#[derive(Debug)]
pub enum NoteErrorKind {
IOError(std::io::Error),
FormatError {},
LanguageError(String),
StructureError(String),
UnexpectedToken(String),
TypeMismatch(String),
RuntimeError(String),
Unreachable,
}
impl NoteError {
pub fn set_url(self, url: Url) -> Self {
Self { kind: self.kind, file: Some(url), range: self.range }
}
pub fn set_range(self, range: (u32, u32)) -> Self {
Self { kind: self.kind, file: self.file, range }
}
pub fn unreachable() -> Self {
Self { kind: Box::new(NoteErrorKind::Unreachable), file: None, range: (0, 0) }
}
pub fn type_mismatch(msg: impl Into<String>) -> NoteError {
let kind = NoteErrorKind::TypeMismatch(msg.into());
Self { kind: Box::new(kind), file: None, range: (0, 0) }
}
pub fn runtime_error(msg: impl Into<String>) -> NoteError {
let kind = NoteErrorKind::RuntimeError(msg.into());
Self { kind: Box::new(kind), file: None, range: (0, 0) }
}
}
impl Error for NoteError {}
impl Display for NoteError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let path = match &self.file {
Some(s) => s.path(),
None => "<Anonymous>",
};
writeln!(f, "at ({}, {}) of {}", self.range.0, self.range.1, path)?;
write!(f, "{:indent$}{}", "", self.kind, indent = 4)
}
}
impl Display for NoteErrorKind {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
match self {
Self::IOError { .. } => {
unimplemented!()
}
Self::FormatError { .. } => {
unimplemented!()
}
Self::LanguageError(_) => {
unimplemented!()
}
Self::StructureError(_) => {
unimplemented!()
}
Self::UnexpectedToken(_) => {
unimplemented!()
}
Self::TypeMismatch(msg) => {
f.write_str("TypeMismatch: ")?;
f.write_str(msg)
}
Self::RuntimeError(_) => {
unimplemented!()
}
Self::Unreachable => {
f.write_str("InternalError: ")?;
f.write_str("Entered unreachable code!")
}
}
}
}