use std::fmt::{self, Display};
use typed_arena::Arena;
mod error;
#[doc(inline)]
pub use error::{Error, ErrorBuilder};
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub enum Level {
Warning,
Error,
Bug,
}
impl Display for Level {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Level::Warning => f.write_str("warning"),
Level::Error => f.write_str("error"),
Level::Bug => f.write_str("bug"),
}
}
}
#[derive(Default)]
pub struct ErrorCtx {
errors: Arena<ErrorBuilder>,
}
impl fmt::Debug for ErrorCtx {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str("ErrorCtx { .. }")
}
}
#[allow(clippy::mut_from_ref)]
impl ErrorCtx {
pub fn new() -> Self {
Self::default()
}
pub fn is_empty(&self) -> bool {
self.errors.len() == 0
}
pub fn push(&self, err: ErrorBuilder) {
self.errors.alloc(err);
}
pub fn warn<S: Display>(&self, msg: S) -> &mut ErrorBuilder {
self.errors.alloc(ErrorBuilder::new(Level::Warning, msg))
}
pub fn error<S: Display>(&self, msg: S) -> &mut ErrorBuilder {
self.errors.alloc(ErrorBuilder::new(Level::Error, msg))
}
pub fn bug<S: Display>(&self, msg: S) -> &mut ErrorBuilder {
self.errors.alloc(ErrorBuilder::new(Level::Bug, msg))
}
pub fn into_vec(self) -> Vec<ErrorBuilder> {
self.errors.into_vec()
}
}