2020-01-31 17:19:44 +01:00
|
|
|
pub type Source = Box<dyn std::error::Error>;
|
|
|
|
|
|
|
|
pub enum Kind
|
|
|
|
{
|
|
|
|
Logic(&'static str),
|
|
|
|
UnsupportedLanguageFeature(&'static str),
|
|
|
|
NotYetImplemented(&'static str),
|
|
|
|
DecodeIdentifier,
|
2020-02-02 17:57:27 +01:00
|
|
|
Translate,
|
2020-02-02 19:20:16 +01:00
|
|
|
ReadFile(std::path::PathBuf),
|
2020-01-31 17:19:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Error
|
|
|
|
{
|
|
|
|
pub kind: Kind,
|
|
|
|
pub source: Option<Source>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error
|
|
|
|
{
|
|
|
|
pub(crate) fn new(kind: Kind) -> Self
|
|
|
|
{
|
|
|
|
Self
|
|
|
|
{
|
|
|
|
kind,
|
|
|
|
source: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn with<S: Into<Source>>(mut self, source: S) -> Self
|
|
|
|
{
|
|
|
|
self.source = Some(source.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_logic(description: &'static str) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::Logic(description))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_unsupported_language_feature(description: &'static str) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::UnsupportedLanguageFeature(description))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_not_yet_implemented(description: &'static str) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::NotYetImplemented(description))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_decode_identifier<S: Into<Source>>(source: S) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::DecodeIdentifier).with(source)
|
|
|
|
}
|
2020-02-02 17:57:27 +01:00
|
|
|
|
|
|
|
pub(crate) fn new_translate<S: Into<Source>>(source: S) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::Translate).with(source)
|
|
|
|
}
|
2020-02-02 19:20:16 +01:00
|
|
|
|
|
|
|
pub(crate) fn new_read_file<S: Into<Source>>(path: std::path::PathBuf, source: S) -> Self
|
|
|
|
{
|
|
|
|
Self::new(Kind::ReadFile(path)).with(source)
|
|
|
|
}
|
2020-01-31 17:19:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Debug for Error
|
|
|
|
{
|
|
|
|
fn fmt(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result
|
|
|
|
{
|
|
|
|
match &self.kind
|
|
|
|
{
|
|
|
|
Kind::Logic(ref description) => write!(formatter,
|
|
|
|
"logic error, please report to bug tracker ({})", description),
|
|
|
|
Kind::UnsupportedLanguageFeature(ref description) => write!(formatter,
|
|
|
|
"language feature not yet supported ({})", description),
|
|
|
|
Kind::NotYetImplemented(ref description) => write!(formatter,
|
|
|
|
"not yet implemented ({})", description),
|
|
|
|
Kind::DecodeIdentifier => write!(formatter, "could not decode identifier"),
|
2020-02-02 17:57:27 +01:00
|
|
|
Kind::Translate => write!(formatter, "could not translate input program"),
|
2020-02-02 19:20:16 +01:00
|
|
|
Kind::ReadFile(path) => write!(formatter, "could not read file “{}”", path.display()),
|
2020-01-31 17:19:44 +01:00
|
|
|
}?;
|
|
|
|
|
|
|
|
if let Some(source) = &self.source
|
|
|
|
{
|
|
|
|
write!(formatter, "\nerror source: {}", source)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for Error
|
|
|
|
{
|
|
|
|
fn fmt(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result
|
|
|
|
{
|
|
|
|
write!(formatter, "{:?}", self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::error::Error for Error
|
|
|
|
{
|
|
|
|
fn source(&self) -> Option<&(dyn std::error::Error + 'static)>
|
|
|
|
{
|
|
|
|
match &self.source
|
|
|
|
{
|
|
|
|
Some(source) => Some(source.as_ref()),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|