1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
use std::borrow::Cow;
use std::fmt;
use std::sync::Arc;
use crate::compiler::tokens::Span;
/// Represents template errors.
///
/// If debug mode is enabled a template error contains additional debug
/// information that can be displayed by formatting an error with the
/// alternative formatting (``format!("{:#}", err)``). That information
/// is also shown for the [`Debug`] display where the extended information
/// is hidden when the alternative formatting is used.
///
/// Since MiniJinja takes advantage of chained errors it's recommended
/// to render the entire chain to better understand the causes.
///
/// # Example
///
/// Here is an example of how you might want to render errors:
///
/// ```rust
/// # let mut env = minijinja::Environment::new();
/// # env.add_template("", "");
/// # let template = env.get_template("").unwrap(); let ctx = ();
/// match template.render(ctx) {
/// Ok(result) => println!("{}", result),
/// Err(err) => {
/// eprintln!("Could not render template: {:#}", err);
/// // render causes as well
/// let mut err = &err as &dyn std::error::Error;
/// while let Some(next_err) = err.source() {
/// eprintln!();
/// eprintln!("caused by: {:#}", next_err);
/// err = next_err;
/// }
/// }
/// }
/// ```
pub struct Error {
repr: Box<ErrorRepr>,
}
/// The internal error data
#[derive(Clone)]
struct ErrorRepr {
kind: ErrorKind,
detail: Option<Cow<'static, str>>,
name: Option<String>,
lineno: usize,
span: Option<Span>,
source: Option<Arc<dyn std::error::Error + Send + Sync>>,
#[cfg(feature = "debug")]
debug_info: Option<Arc<crate::debug::DebugInfo>>,
}
impl fmt::Debug for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut err = f.debug_struct("Error");
err.field("kind", &self.kind());
if let Some(ref detail) = self.repr.detail {
err.field("detail", detail);
}
if let Some(ref name) = self.name() {
err.field("name", name);
}
if let Some(line) = self.line() {
err.field("line", &line);
}
if let Some(ref source) = std::error::Error::source(self) {
err.field("source", source);
}
ok!(err.finish());
// so this is a bit questionable, but because of how commonly errors are just
// unwrapped i think it's sensible to spit out the debug info following the
// error struct dump.
#[cfg(feature = "debug")]
{
if !f.alternate() && self.debug_info().is_some() {
ok!(writeln!(f));
ok!(writeln!(f, "{}", self.display_debug_info()));
}
}
Ok(())
}
}
/// An enum describing the error kind.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
#[non_exhaustive]
pub enum ErrorKind {
/// A non primitive value was encountered where one was expected.
NonPrimitive,
/// A value is not valid for a key in a map.
NonKey,
/// An invalid operation was attempted.
InvalidOperation,
/// The template has a syntax error
SyntaxError,
/// A template was not found.
TemplateNotFound,
/// Too many arguments were passed to a function.
TooManyArguments,
/// A expected argument was missing
MissingArgument,
/// A filter is unknown
UnknownFilter,
/// A test is unknown
UnknownTest,
/// A function is unknown
UnknownFunction,
/// Un unknown method was called
UnknownMethod,
/// A bad escape sequence in a string was encountered.
BadEscape,
/// An operation on an undefined value was attempted.
UndefinedError,
/// Not able to serialize this value.
BadSerialization,
/// Not able to deserialize this value.
#[cfg(feature = "deserialization")]
CannotDeserialize,
/// An error happened in an include.
BadInclude,
/// An error happened in a super block.
EvalBlock,
/// Unable to unpack a value.
CannotUnpack,
/// Failed writing output.
WriteFailure,
/// Engine ran out of fuel
#[cfg(feature = "fuel")]
OutOfFuel,
#[cfg(feature = "custom_syntax")]
/// Error creating aho-corasick delimiters
InvalidDelimiter,
/// An unknown block was called
#[cfg(feature = "multi_template")]
UnknownBlock,
}
impl ErrorKind {
fn description(self) -> &'static str {
match self {
ErrorKind::NonPrimitive => "not a primitive",
ErrorKind::NonKey => "not a key type",
ErrorKind::InvalidOperation => "invalid operation",
ErrorKind::SyntaxError => "syntax error",
ErrorKind::TemplateNotFound => "template not found",
ErrorKind::TooManyArguments => "too many arguments",
ErrorKind::MissingArgument => "missing argument",
ErrorKind::UnknownFilter => "unknown filter",
ErrorKind::UnknownFunction => "unknown function",
ErrorKind::UnknownTest => "unknown test",
ErrorKind::UnknownMethod => "unknown method",
ErrorKind::BadEscape => "bad string escape",
ErrorKind::UndefinedError => "undefined value",
ErrorKind::BadSerialization => "could not serialize to value",
ErrorKind::BadInclude => "could not render include",
ErrorKind::EvalBlock => "could not render block",
ErrorKind::CannotUnpack => "cannot unpack",
ErrorKind::WriteFailure => "failed to write output",
#[cfg(feature = "deserialization")]
ErrorKind::CannotDeserialize => "cannot deserialize",
#[cfg(feature = "fuel")]
ErrorKind::OutOfFuel => "engine ran out of fuel",
#[cfg(feature = "custom_syntax")]
ErrorKind::InvalidDelimiter => "invalid custom delimiters",
#[cfg(feature = "multi_template")]
ErrorKind::UnknownBlock => "unknown block",
}
}
}
impl fmt::Display for ErrorKind {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.description())
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if let Some(ref detail) = self.repr.detail {
ok!(write!(f, "{}: {}", self.kind(), detail));
} else {
ok!(write!(f, "{}", self.kind()));
}
if let Some(ref filename) = self.name() {
ok!(write!(f, " (in {}:{})", filename, self.line().unwrap_or(0)))
}
#[cfg(feature = "debug")]
{
if f.alternate() && self.debug_info().is_some() {
ok!(write!(f, "{}", self.display_debug_info()));
}
}
Ok(())
}
}
impl Error {
/// Creates a new error with kind and detail.
pub fn new<D: Into<Cow<'static, str>>>(kind: ErrorKind, detail: D) -> Error {
Error {
repr: Box::new(ErrorRepr {
kind,
detail: Some(detail.into()),
name: None,
lineno: 0,
span: None,
source: None,
#[cfg(feature = "debug")]
debug_info: None,
}),
}
}
pub(crate) fn internal_clone(&self) -> Error {
Error {
repr: self.repr.clone(),
}
}
pub(crate) fn set_filename_and_line(&mut self, filename: &str, lineno: usize) {
self.repr.name = Some(filename.into());
self.repr.lineno = lineno;
}
pub(crate) fn set_filename_and_span(&mut self, filename: &str, span: Span) {
self.repr.name = Some(filename.into());
self.repr.span = Some(span);
self.repr.lineno = span.start_line as usize;
}
pub(crate) fn new_not_found(name: &str) -> Error {
Error::new(
ErrorKind::TemplateNotFound,
format!("template {name:?} does not exist"),
)
}
/// Attaches another error as source to this error.
pub fn with_source<E: std::error::Error + Send + Sync + 'static>(mut self, source: E) -> Self {
self.repr.source = Some(Arc::new(source));
self
}
/// Returns the error kind
pub fn kind(&self) -> ErrorKind {
self.repr.kind
}
/// Returns the error detail
///
/// The detail is an error message that provides further details about
/// the error kind.
pub fn detail(&self) -> Option<&str> {
self.repr.detail.as_deref()
}
/// Overrides the detail.
pub(crate) fn set_detail<D: Into<Cow<'static, str>>>(&mut self, d: D) {
self.repr.detail = Some(d.into());
}
/// Returns the filename of the template that caused the error.
pub fn name(&self) -> Option<&str> {
self.repr.name.as_deref()
}
/// Returns the line number where the error occurred.
pub fn line(&self) -> Option<usize> {
if self.repr.lineno > 0 {
Some(self.repr.lineno)
} else {
None
}
}
/// Returns the byte range of where the error occurred if available.
///
/// In combination with [`template_source`](Self::template_source) this can be
/// used to better visualize where the error is coming from. By indexing into
/// the template source one ends up with the source of the failing expression.
///
/// Note that debug mode ([`Environment::set_debug`](crate::Environment::set_debug))
/// needs to be enabled, and the `debug` feature must be turned on. The engine
/// usually keeps track of spans in all cases, but there is no absolute guarantee
/// that it is able to provide a range in all error cases.
///
/// ```
/// # use minijinja::{Error, Environment, context};
/// # let mut env = Environment::new();
/// # env.set_debug(true);
/// let tmpl = env.template_from_str("Hello {{ foo + bar }}!").unwrap();
/// let err = tmpl.render(context!(foo => "a string", bar => 0)).unwrap_err();
/// let src = err.template_source().unwrap();
/// assert_eq!(&src[err.range().unwrap()], "foo + bar");
/// ```
#[cfg(feature = "debug")]
#[cfg_attr(docsrs, doc(cfg(feature = "debug")))]
pub fn range(&self) -> Option<std::ops::Range<usize>> {
self.repr
.span
.map(|x| x.start_offset as usize..x.end_offset as usize)
}
/// Helper function that renders all known debug info on format.
///
/// This method returns an object that when formatted prints out the debug information
/// that is contained on that error. Normally this is automatically rendered when the
/// error is displayed but in some cases you might want to decide for yourself when and
/// how to display that information.
#[cfg(feature = "debug")]
#[cfg_attr(docsrs, doc(cfg(feature = "debug")))]
pub fn display_debug_info(&self) -> impl fmt::Display + '_ {
struct Proxy<'a>(&'a Error);
impl<'a> fmt::Display for Proxy<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if let Some(info) = self.0.debug_info() {
crate::debug::render_debug_info(
f,
self.0.name(),
self.0.kind(),
self.0.line(),
self.0.span(),
info,
)
} else {
Ok(())
}
}
}
Proxy(self)
}
/// Returns the template source if available.
#[cfg(feature = "debug")]
#[cfg_attr(docsrs, doc(cfg(feature = "debug")))]
pub fn template_source(&self) -> Option<&str> {
self.debug_info().and_then(|x| x.source())
}
/// Returns the line number where the error occurred.
#[cfg(feature = "debug")]
pub(crate) fn span(&self) -> Option<Span> {
self.repr.span
}
/// Returns the template debug information is available.
///
/// The debug info snapshot is only embedded into the error if the debug
/// mode is enabled on the environment
/// ([`Environment::set_debug`](crate::Environment::set_debug)).
#[cfg(feature = "debug")]
pub(crate) fn debug_info(&self) -> Option<&crate::debug::DebugInfo> {
self.repr.debug_info.as_deref()
}
#[cfg(feature = "debug")]
#[cfg_attr(docsrs, doc(cfg(feature = "debug")))]
pub(crate) fn attach_debug_info(&mut self, value: crate::debug::DebugInfo) {
self.repr.debug_info = Some(Arc::new(value));
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
self.repr.source.as_ref().map(|err| err.as_ref() as _)
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Self {
Error {
repr: Box::new(ErrorRepr {
kind,
detail: None,
name: None,
lineno: 0,
span: None,
source: None,
#[cfg(feature = "debug")]
debug_info: None,
}),
}
}
}
impl From<fmt::Error> for Error {
fn from(_: fmt::Error) -> Self {
Error::new(ErrorKind::WriteFailure, "formatting failed")
}
}
pub fn attach_basic_debug_info<T>(rv: Result<T, Error>, source: &str) -> Result<T, Error> {
#[cfg(feature = "debug")]
{
match rv {
Ok(rv) => Ok(rv),
Err(mut err) => {
err.repr.debug_info = Some(Arc::new(crate::debug::DebugInfo {
template_source: Some(source.to_string()),
..Default::default()
}));
Err(err)
}
}
}
#[cfg(not(feature = "debug"))]
{
let _source = source;
rv
}
}