just/src/compilation_error.rs

233 lines
6.5 KiB
Rust
Raw Normal View History

use crate::common::*;
2017-11-16 23:30:08 -08:00
#[derive(Debug, PartialEq)]
pub(crate) struct CompilationError<'src> {
pub(crate) token: Token<'src>,
pub(crate) kind: CompilationErrorKind<'src>,
2017-11-16 23:30:08 -08:00
}
impl Error for CompilationError<'_> {}
impl Display for CompilationError<'_> {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
2017-11-16 23:30:08 -08:00
use CompilationErrorKind::*;
let message = Color::fmt(f).message();
write!(f, "{}", message.prefix())?;
2017-11-16 23:30:08 -08:00
match self.kind {
AliasShadowsRecipe { alias, recipe_line } => {
writeln!(
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(),
)?;
}
CircularRecipeDependency { recipe, ref circle } => {
2017-11-16 23:30:08 -08:00
if circle.len() == 2 {
writeln!(f, "Recipe `{}` depends on itself", recipe)?;
} else {
writeln!(
f,
"Recipe `{}` has circular dependency `{}`",
recipe,
circle.join(" -> ")
)?;
2017-11-16 23:30:08 -08:00
}
}
CircularVariableDependency {
variable,
ref circle,
} => {
2017-11-16 23:30:08 -08:00
if circle.len() == 2 {
writeln!(f, "Variable `{}` is defined in terms of itself", variable)?;
} else {
writeln!(
f,
"Variable `{}` depends on its own value: `{}`",
variable,
circle.join(" -> ")
)?;
2017-11-16 23:30:08 -08:00
}
}
InvalidEscapeSequence { character } => {
let representation = match character {
'`' => r"\`".to_string(),
'\\' => r"\".to_string(),
'\'' => r"'".to_string(),
'"' => r#"""#.to_string(),
_ => character.escape_default().collect(),
};
writeln!(f, "`\\{}` is not a valid escape sequence", representation)?;
2017-11-16 23:30:08 -08:00
}
DuplicateParameter { recipe, parameter } => {
writeln!(
f,
"Recipe `{}` has duplicate parameter `{}`",
recipe, parameter
)?;
2017-11-16 23:30:08 -08:00
}
DuplicateVariable { variable } => {
2017-11-16 23:30:08 -08:00
writeln!(f, "Variable `{}` has multiple definitions", variable)?;
}
UnexpectedToken {
ref expected,
found,
} => {
writeln!(f, "Expected {}, but found {}", List::or(expected), found)?;
2017-11-16 23:30:08 -08:00
}
DuplicateAlias { alias, first } => {
writeln!(
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(),
)?;
}
DuplicateRecipe { recipe, first } => {
writeln!(
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()
)?;
2017-11-16 23:30:08 -08:00
}
DuplicateSet { setting, first } => {
writeln!(
f,
"Setting `{}` first set on line {} is redefined on line {}",
setting,
first.ordinal(),
self.token.line.ordinal(),
)?;
}
DependencyArgumentCountMismatch {
dependency,
found,
min,
max,
} => {
write!(
f,
"Dependency `{}` got {} {} but takes ",
dependency,
found,
Count("argument", found),
)?;
if min == max {
let expected = min;
writeln!(f, "{} {}", expected, Count("argument", expected))?;
} else if found < min {
writeln!(f, "at least {} {}", min, Count("argument", min))?;
} else {
writeln!(f, "at most {} {}", max, Count("argument", max))?;
}
2017-11-16 23:30:08 -08:00
}
ParameterShadowsVariable { parameter } => {
writeln!(
f,
"Parameter `{}` shadows variable of the same name",
parameter
)?;
2017-11-16 23:30:08 -08:00
}
RequiredParameterFollowsDefaultParameter { parameter } => {
writeln!(
f,
"Non-default parameter `{}` follows default parameter",
parameter
)?;
2017-11-16 23:30:08 -08:00
}
ParameterFollowsVariadicParameter { parameter } => {
2017-11-16 23:30:08 -08:00
writeln!(f, "Parameter `{}` follows variadic parameter", parameter)?;
}
MixedLeadingWhitespace { whitespace } => {
writeln!(
f,
2017-11-16 23:30:08 -08:00
"Found a mix of tabs and spaces in leading whitespace: `{}`\n\
Leading whitespace may consist of tabs or spaces, but not both",
ShowWhitespace(whitespace)
2017-11-16 23:30:08 -08:00
)?;
}
ExtraLeadingWhitespace => {
writeln!(f, "Recipe line has extra leading whitespace")?;
}
FunctionArgumentCountMismatch {
function,
found,
expected,
} => {
writeln!(
f,
"Function `{}` called with {} {} but takes {}",
function,
found,
Count("argument", found),
expected
)?;
}
InconsistentLeadingWhitespace { expected, found } => {
writeln!(
f,
2017-11-16 23:30:08 -08:00
"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
)?;
}
UnknownAliasTarget { alias, target } => {
writeln!(f, "Alias `{}` has an unknown target `{}`", alias, target)?;
}
UnknownDependency { recipe, unknown } => {
writeln!(
f,
"Recipe `{}` has unknown dependency `{}`",
recipe, unknown
)?;
2017-11-16 23:30:08 -08:00
}
UndefinedVariable { variable } => {
2017-11-16 23:30:08 -08:00
writeln!(f, "Variable `{}` not defined", variable)?;
}
UnknownFunction { function } => {
writeln!(f, "Call to unknown function `{}`", function)?;
}
UnknownSetting { setting } => {
writeln!(f, "Unknown setting `{}`", setting)?;
}
2017-11-16 23:30:08 -08:00
UnknownStartOfToken => {
writeln!(f, "Unknown start of token:")?;
}
UnpairedCarriageReturn => {
writeln!(f, "Unpaired carriage return")?;
}
UnterminatedInterpolation => {
writeln!(f, "Unterminated interpolation")?;
}
2017-11-16 23:30:08 -08:00
UnterminatedString => {
writeln!(f, "Unterminated string")?;
}
UnterminatedBacktick => {
writeln!(f, "Unterminated backtick")?;
}
Internal { ref message } => {
writeln!(
f,
"Internal error, this may indicate a bug in just: {}\n\
consider filing an issue: https://github.com/casey/just/issues/new",
message
)?;
2017-11-16 23:30:08 -08:00
}
}
write!(f, "{}", message.suffix())?;
self.token.write_context(f, Color::fmt(f).error())
2017-11-16 23:30:08 -08:00
}
}