just/src/compile_error.rs

286 lines
8.1 KiB
Rust
Raw Normal View History

use super::*;
2017-11-16 23:30:08 -08:00
#[derive(Debug, PartialEq)]
pub(crate) struct CompileError<'src> {
pub(crate) token: Token<'src>,
pub(crate) kind: Box<CompileErrorKind<'src>>,
2017-11-16 23:30:08 -08:00
}
impl<'src> CompileError<'src> {
pub(crate) fn context(&self) -> Token<'src> {
self.token
}
pub(crate) fn new(token: Token<'src>, kind: CompileErrorKind<'src>) -> CompileError<'src> {
Self {
token,
kind: Box::new(kind),
}
}
}
impl Display for CompileError<'_> {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
use CompileErrorKind::*;
2017-11-16 23:30:08 -08:00
match &*self.kind {
AliasInvalidAttribute { alias, attr } => {
write!(
f,
"Alias {} has an invalid attribute `{}`",
alias,
attr.to_str()
)?;
}
AliasShadowsRecipe { alias, recipe_line } => {
write!(
f,
"Alias `{}` defined on line {} shadows recipe `{}` defined on line {}",
alias,
self.token.line.ordinal(),
alias,
2019-04-19 02:17:43 -07:00
recipe_line.ordinal(),
)?;
}
BacktickShebang => {
write!(f, "Backticks may not start with `#!`")?;
}
CircularRecipeDependency { recipe, ref circle } => {
2017-11-16 23:30:08 -08:00
if circle.len() == 2 {
2022-12-15 16:53:21 -08:00
write!(f, "Recipe `{recipe}` depends on itself")?;
2017-11-16 23:30:08 -08:00
} else {
write!(
f,
"Recipe `{}` has circular dependency `{}`",
recipe,
circle.join(" -> ")
)?;
}
}
CircularVariableDependency {
variable,
ref circle,
} => {
2017-11-16 23:30:08 -08:00
if circle.len() == 2 {
2022-12-15 16:53:21 -08:00
write!(f, "Variable `{variable}` is defined in terms of itself")?;
2017-11-16 23:30:08 -08:00
} else {
write!(
f,
"Variable `{}` depends on its own value: `{}`",
variable,
circle.join(" -> ")
)?;
}
}
DependencyArgumentCountMismatch {
dependency,
found,
min,
max,
} => {
write!(
f,
"Dependency `{}` got {} {} but takes ",
dependency,
found,
Count("argument", *found),
)?;
if min == max {
let expected = min;
2022-12-15 16:53:21 -08:00
write!(f, "{expected} {}", Count("argument", *expected))?;
} else if found < min {
2022-12-15 16:53:21 -08:00
write!(f, "at least {min} {}", Count("argument", *min))?;
} else {
2022-12-15 16:53:21 -08:00
write!(f, "at most {max} {}", Count("argument", *max))?;
}
}
DuplicateAlias { alias, first } => {
write!(
f,
"Alias `{}` first defined on line {} is redefined on line {}",
alias,
2019-04-19 02:17:43 -07:00
first.ordinal(),
self.token.line.ordinal(),
)?;
}
DuplicateAttribute { attribute, first } => {
write!(
f,
"Recipe attribute `{}` first used on line {} is duplicated on line {}",
attribute,
first.ordinal(),
self.token.line.ordinal(),
)?;
}
DuplicateParameter { recipe, parameter } => {
write!(f, "Recipe `{recipe}` has duplicate parameter `{parameter}`")?;
}
DuplicateRecipe { recipe, first } => {
write!(
f,
"Recipe `{}` first defined on line {} is redefined on line {}",
recipe,
2019-04-19 02:17:43 -07:00
first.ordinal(),
self.token.line.ordinal()
)?;
}
DuplicateSet { setting, first } => {
write!(
f,
"Setting `{}` first set on line {} is redefined on line {}",
setting,
first.ordinal(),
self.token.line.ordinal(),
)?;
}
DuplicateVariable { variable } => {
2022-12-15 16:53:21 -08:00
write!(f, "Variable `{variable}` has multiple definitions")?;
}
ExpectedKeyword { expected, found } => {
if found.kind == TokenKind::Identifier {
write!(
f,
"Expected keyword {} but found identifier `{}`",
List::or_ticked(expected),
found.lexeme()
)?;
} else {
write!(
f,
"Expected keyword {} but found `{}`",
List::or_ticked(expected),
found.kind
)?;
}
}
2017-11-16 23:30:08 -08:00
ExtraLeadingWhitespace => {
write!(f, "Recipe line has extra leading whitespace")?;
}
FunctionArgumentCountMismatch {
function,
found,
expected,
} => {
write!(
f,
"Function `{}` called with {} {} but takes {}",
function,
found,
Count("argument", *found),
expected.display(),
)?;
}
InconsistentLeadingWhitespace { expected, found } => {
write!(
f,
"Recipe line has inconsistent leading whitespace. Recipe started with `{}` but found \
line with `{}`",
ShowWhitespace(expected),
ShowWhitespace(found)
2017-11-16 23:30:08 -08:00
)?;
}
Internal { ref message } => {
write!(
f,
"Internal error, this may indicate a bug in just: {message}\n\
consider filing an issue: https://github.com/casey/just/issues/new"
)?;
}
InvalidEscapeSequence { character } => {
let representation = match character {
'`' => r"\`".to_owned(),
'\\' => r"\".to_owned(),
'\'' => r"'".to_owned(),
'"' => r#"""#.to_owned(),
_ => character.escape_default().collect(),
};
2022-12-15 16:53:21 -08:00
write!(f, "`\\{representation}` is not a valid escape sequence")?;
}
MismatchedClosingDelimiter {
open,
open_line,
close,
} => {
write!(
f,
"Mismatched closing delimiter `{}`. (Did you mean to close the `{}` on line {}?)",
close.close(),
open.open(),
open_line.ordinal(),
)?;
}
MixedLeadingWhitespace { whitespace } => {
write!(
f,
"Found a mix of tabs and spaces in leading whitespace: `{}`\nLeading whitespace may \
consist of tabs or spaces, but not both",
ShowWhitespace(whitespace)
)?;
}
ParameterFollowsVariadicParameter { parameter } => {
2022-12-15 16:53:21 -08:00
write!(f, "Parameter `{parameter}` follows variadic parameter")?;
}
ParsingRecursionDepthExceeded => {
write!(f, "Parsing recursion depth exceeded")?;
}
RequiredParameterFollowsDefaultParameter { parameter } => {
write!(
f,
"Non-default parameter `{parameter}` follows default parameter"
)?;
}
UndefinedVariable { variable } => {
2022-12-15 16:53:21 -08:00
write!(f, "Variable `{variable}` not defined")?;
}
UnexpectedCharacter { expected } => {
2022-12-15 16:53:21 -08:00
write!(f, "Expected character `{expected}`")?;
}
UnexpectedClosingDelimiter { close } => {
write!(f, "Unexpected closing delimiter `{}`", close.close())?;
}
UnexpectedEndOfToken { expected } => {
2022-12-15 16:53:21 -08:00
write!(f, "Expected character `{expected}` but found end-of-file")?;
}
UnexpectedToken {
ref expected,
found,
} => {
2022-12-15 16:53:21 -08:00
write!(f, "Expected {}, but found {found}", List::or(expected))?;
}
UnknownAliasTarget { alias, target } => {
2022-12-15 16:53:21 -08:00
write!(f, "Alias `{alias}` has an unknown target `{target}`")?;
}
UnknownAttribute { attribute } => {
2022-12-15 16:53:21 -08:00
write!(f, "Unknown attribute `{attribute}`")?;
}
UnknownDependency { recipe, unknown } => {
2022-12-15 16:53:21 -08:00
write!(f, "Recipe `{recipe}` has unknown dependency `{unknown}`",)?;
}
UnknownFunction { function } => {
2022-12-15 16:53:21 -08:00
write!(f, "Call to unknown function `{function}`")?;
}
UnknownSetting { setting } => {
2022-12-15 16:53:21 -08:00
write!(f, "Unknown setting `{setting}`")?;
}
UnknownStartOfToken => {
write!(f, "Unknown start of token:")?;
}
UnpairedCarriageReturn => {
write!(f, "Unpaired carriage return")?;
}
UnterminatedBacktick => {
write!(f, "Unterminated backtick")?;
}
UnterminatedInterpolation => {
write!(f, "Unterminated interpolation")?;
}
UnterminatedString => {
write!(f, "Unterminated string")?;
}
2017-11-16 23:30:08 -08:00
}
Ok(())
2017-11-16 23:30:08 -08:00
}
}