use std::{cell::RefCell, fmt, thread};
use quote::ToTokens;
#[derive(Debug, Default)]
pub(crate) struct ErrorContext {
errors: RefCell<Option<Vec<syn::Error>>>,
}
impl ErrorContext {
pub fn new() -> Self {
ErrorContext {
errors: RefCell::new(Some(Vec::new())),
}
}
pub fn error_at<S: ToTokens, T: fmt::Display>(&self, source: S, msg: T) {
self.errors
.borrow_mut()
.as_mut()
.unwrap()
.push(syn::Error::new_spanned(source.into_token_stream(), msg));
}
pub fn syn_error(&self, err: syn::Error) {
self.errors.borrow_mut().as_mut().unwrap().push(err);
}
pub fn check(self) -> Result<(), Vec<syn::Error>> {
let errors = self.errors.borrow_mut().take().unwrap();
match errors.len() {
0 => Ok(()),
_ => Err(errors),
}
}
}
impl Drop for ErrorContext {
fn drop(&mut self) {
if !thread::panicking() && self.errors.borrow().is_some() {
panic!("forgot to check for errors");
}
}
}