From 91e3c88d8f6428d41326869bbd8f6ece99145627 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sat, 1 Jul 2023 15:44:04 +0200 Subject: derive: define separate ParseError type --- askama_derive/src/parser/mod.rs | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'askama_derive/src/parser/mod.rs') diff --git a/askama_derive/src/parser/mod.rs b/askama_derive/src/parser/mod.rs index f81bcc8..0bf68ca 100644 --- a/askama_derive/src/parser/mod.rs +++ b/askama_derive/src/parser/mod.rs @@ -1,5 +1,5 @@ use std::cell::Cell; -use std::str; +use std::{fmt, str}; use nom::branch::alt; use nom::bytes::complete::{escaped, is_not, tag, take_till}; @@ -13,7 +13,6 @@ use nom::{error_position, AsChar, IResult, InputTakeAtPosition}; pub(crate) use self::expr::Expr; pub(crate) use self::node::{Cond, CondTest, Loop, Macro, Node, Target, When, Whitespace, Ws}; -use crate::CompileError; mod expr; mod node; @@ -57,11 +56,11 @@ impl From for Whitespace { } } -pub(crate) fn parse<'a>(src: &'a str, syntax: &Syntax<'_>) -> Result>, CompileError> { +pub(crate) fn parse<'a>(src: &'a str, syntax: &Syntax<'_>) -> Result>, ParseError> { match Node::parse(src, &State::new(syntax)) { Ok((left, res)) => { if !left.is_empty() { - Err(format!("unable to parse template:\n\n{left:?}").into()) + Err(ParseError(format!("unable to parse template:\n\n{left:?}"))) } else { Ok(res) } @@ -86,10 +85,22 @@ pub(crate) fn parse<'a>(src: &'a str, syntax: &Syntax<'_>) -> Result Err("parsing incomplete".into()), + Err(nom::Err::Incomplete(_)) => Err(ParseError("parsing incomplete".into())), + } +} + +#[derive(Debug, Clone, PartialEq, Eq)] +pub(crate) struct ParseError(String); + +impl std::error::Error for ParseError {} + +impl fmt::Display for ParseError { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + self.0.fmt(f) } } -- cgit