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
// WARNINGS.rs
// by Lut99
//
// Created:
// 05 Sep 2022, 16:08:42
// Last edited:
// 12 Dec 2023, 14:56:22
// Auto updated?
// Yes
//
// Description:
//! Defines warnings for the different compiler stages.
//
use std::fmt::{Debug, Display, Formatter, Result as FResult};
use std::io::Write;
use brane_dsl::TextRange;
use brane_dsl::spec::MergeStrategy;
use console::{Style, style};
use crate::errors::{ewrite_range, n};
use crate::spec::BuiltinClasses;
/***** HELPER FUNCTIONS *****/
/// Prettyprints a warning with only one 'reason' to the given [`Write`]r.
///
/// # Arguments
/// - `writer`: The [`Write`]-enabled object to write the serialized warning to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to extract the line from.
/// - `warn`: The Warning to print.
/// - `range`: The range of the warning.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
pub(crate) fn prettywrite_warn(
mut writer: impl Write,
file: impl AsRef<str>,
source: impl AsRef<str>,
warn: &dyn Display,
range: &TextRange,
) -> Result<(), std::io::Error> {
// Print the top line
writeln!(
&mut writer,
"{}: {}: {}",
style(format!("{}:{}:{}", file.as_ref(), n!(range.start.line), n!(range.start.col))).bold(),
style("warning").yellow().bold(),
warn
)?;
// Print the range
ewrite_range(&mut writer, source, range, Style::new().yellow().bold())?;
writeln!(&mut writer)?;
// Done
Ok(())
}
/// Prettyprints an warning with only one 'existing' value or type and one 'new' value or type.
///
/// # Arguments
/// - `writer`: The [`Write`]-enabled stream to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to extract the line from.
/// - `warn`: The Warning to print.
/// - `existing`: The range that indicates the existing value or type.
/// - `new`: The range that indicates the new value or type.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
fn prettywrite_warn_exist_new(
mut writer: impl Write,
file: impl AsRef<str>,
source: impl AsRef<str>,
err: &dyn Warning,
existing: &TextRange,
new: &TextRange,
) -> Result<(), std::io::Error> {
// Print the top line
writeln!(
&mut writer,
"{}: {}: {}",
style(format!("{}:{}:{}", file.as_ref(), n!(new.start.line), n!(new.start.col))).bold(),
style("warning").yellow().bold(),
err
)?;
// Print the normal range
ewrite_range(&mut writer, &source, new, Style::new().yellow().bold())?;
// Print the expected range
writeln!(&mut writer, "{}: Previous occurrence:", style("note").cyan().bold())?;
ewrite_range(&mut writer, source, existing, Style::new().cyan().bold())?;
writeln!(&mut writer)?;
// Done
Ok(())
}
/***** AUXILLARY *****/
/// A warning trait much like the Error trait.
pub trait Warning: Debug + Display {}
/***** LIBRARY *****/
// Defines toplevel warnings that occur in this crate.
#[derive(Debug)]
pub enum AstWarning {
/// An warning has occurred while processing attributes.
AttributesWarning(AttributesWarning),
/// An warning has occurred while analysing types.
TypeWarning(TypeWarning),
/// An warning has occurred while processing tags/metadata.
MetadataWarning(MetadataWarning),
/// An warning has occurred while doing the actual compiling.
CompileWarning(CompileWarning),
}
impl AstWarning {
/// Prints the warning in a pretty way to stderr.
///
/// # Arguments
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
#[inline]
pub fn prettyprint(&self, file: impl AsRef<str>, source: impl AsRef<str>) { self.prettywrite(std::io::stderr(), file, source).unwrap() }
/// Prints the warning in a pretty way to the given [`Write`]r.
///
/// # Arguments:
/// - `writer`: The [`Write`]-enabled object to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
#[inline]
pub fn prettywrite(&self, writer: impl Write, file: impl AsRef<str>, source: impl AsRef<str>) -> Result<(), std::io::Error> {
use AstWarning::*;
match self {
AttributesWarning(warn) => warn.prettywrite(writer, file, source),
TypeWarning(warn) => warn.prettywrite(writer, file, source),
MetadataWarning(warn) => warn.prettywrite(writer, file, source),
CompileWarning(warn) => warn.prettywrite(writer, file, source),
}
}
}
impl From<AttributesWarning> for AstWarning {
#[inline]
fn from(warn: AttributesWarning) -> Self { Self::AttributesWarning(warn) }
}
impl From<TypeWarning> for AstWarning {
#[inline]
fn from(warn: TypeWarning) -> Self { Self::TypeWarning(warn) }
}
impl From<MetadataWarning> for AstWarning {
#[inline]
fn from(warn: MetadataWarning) -> Self { Self::MetadataWarning(warn) }
}
impl From<CompileWarning> for AstWarning {
#[inline]
fn from(warn: CompileWarning) -> Self { Self::CompileWarning(warn) }
}
impl Display for AstWarning {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use AstWarning::*;
match self {
AttributesWarning(warn) => write!(f, "{warn}"),
TypeWarning(warn) => write!(f, "{warn}"),
MetadataWarning(warn) => write!(f, "{warn}"),
CompileWarning(warn) => write!(f, "{warn}"),
}
}
}
impl Warning for AstWarning {}
/// Defines warnings that may occur during attribute processing.
#[derive(Debug)]
pub enum AttributesWarning {
/// An attribute was not matched with a statement.
UnmatchedAttribute { range: TextRange },
}
impl AttributesWarning {
/// Prints the warning in a pretty way to stderr.
///
/// # Arguments
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Returns
/// Nothing, but does print the warning to stderr.
#[inline]
pub fn prettyprint(&self, file: impl AsRef<str>, source: impl AsRef<str>) { self.prettywrite(std::io::stderr(), file, source).unwrap() }
/// Prints the warning in a pretty way to the given [`Write`]r.
///
/// # Arguments:
/// - `writer`: The [`Write`]-enabled object to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
#[inline]
pub fn prettywrite(&self, writer: impl Write, file: impl AsRef<str>, source: impl AsRef<str>) -> Result<(), std::io::Error> {
use AttributesWarning::*;
match self {
UnmatchedAttribute { range } => prettywrite_warn(writer, file, source, self, range),
}
}
}
impl Display for AttributesWarning {
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use AttributesWarning::*;
match self {
UnmatchedAttribute { .. } => write!(f, "Attribute does not annotate anything"),
}
}
}
impl Warning for AttributesWarning {}
/// Defines warnings that may occur during compilation.
#[derive(Debug)]
pub enum TypeWarning {
/// A merge strategy was specified but the result not stored.
UnusedMergeStrategy { merge: MergeStrategy, range: TextRange },
/// The user is returning an IntermediateResult.
ReturningIntermediateResult { range: TextRange },
}
impl TypeWarning {
/// Prints the warning in a pretty way to stderr.
///
/// # Arguments
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Returns
/// Nothing, but does print the warning to stderr.
#[inline]
pub fn prettyprint(&self, file: impl AsRef<str>, source: impl AsRef<str>) { self.prettywrite(std::io::stderr(), file, source).unwrap() }
/// Prints the warning in a pretty way to the given [`Write`]r.
///
/// # Arguments:
/// - `writer`: The [`Write`]-enabled object to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
#[inline]
pub fn prettywrite(&self, writer: impl Write, file: impl AsRef<str>, source: impl AsRef<str>) -> Result<(), std::io::Error> {
use TypeWarning::*;
match self {
UnusedMergeStrategy { range, .. } => prettywrite_warn(writer, file, source, self, range),
ReturningIntermediateResult { range, .. } => prettywrite_warn(writer, file, source, self, range),
}
}
}
impl Display for TypeWarning {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use TypeWarning::*;
match self {
UnusedMergeStrategy { merge, .. } => {
write!(f, "Merge strategy '{merge:?}' specified but not used; did you forget 'let <var> := parallel ...'?")
},
ReturningIntermediateResult { .. } => write!(
f,
"Returning an {} will not let you see the result; consider committing using the builtin `commit_result()` function",
BuiltinClasses::IntermediateResult.name()
),
}
}
}
impl Warning for TypeWarning {}
/// Defines warnings that may occur when processing metadata.
#[derive(Debug)]
pub enum MetadataWarning {
/// A tag was applied more than once.
DuplicateTag { prev: TextRange, range: TextRange },
/// A tag was not a string.
NonStringTag { range: TextRange },
/// A metadata was found without separating dot (`.`)
TagWithoutDot { raw: String, range: TextRange },
/// A piece of metadata was applied (directly) to a statement that did not take it.
UselessTag { range: TextRange },
}
impl MetadataWarning {
/// Prints the warning in a pretty way to stderr.
///
/// # Arguments
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Returns
/// Nothing, but does print the warning to stderr.
#[inline]
pub fn prettyprint(&self, file: impl AsRef<str>, source: impl AsRef<str>) { self.prettywrite(std::io::stderr(), file, source).unwrap() }
/// Prints the warning in a pretty way to the given [`Write`]r.
///
/// # Arguments:
/// - `writer`: The [`Write`]-enabled object to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
#[inline]
pub fn prettywrite(&self, writer: impl Write, file: impl AsRef<str>, source: impl AsRef<str>) -> Result<(), std::io::Error> {
use MetadataWarning::*;
match self {
DuplicateTag { prev, range } => prettywrite_warn_exist_new(writer, file, source, self, prev, range),
NonStringTag { range } => prettywrite_warn(writer, file, source, self, range),
TagWithoutDot { range, .. } => prettywrite_warn(writer, file, source, self, range),
UselessTag { range } => prettywrite_warn(writer, file, source, self, range),
}
}
}
impl Display for MetadataWarning {
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use MetadataWarning::*;
match self {
DuplicateTag { .. } => write!(f, "Duplicate application of the same tag"),
NonStringTag { .. } => write!(f, "Tags must be string literals"),
TagWithoutDot { raw, .. } => write!(f, "Missing dot in metadata '{raw}' to separate owner and tag"),
UselessTag { .. } => write!(f, "Applying tag here has no effect (only has effect on entire workflow or external function calls)"),
}
}
}
impl Warning for MetadataWarning {}
/// Defines warnings that may occur during compilation.
#[derive(Debug)]
pub enum CompileWarning {
/// An On-struct was used, which is now deprecated.
OnDeprecated { range: TextRange },
}
impl CompileWarning {
/// Prints the warning in a pretty way to stderr.
///
/// # Arguments
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Returns
/// Nothing, but does print the warning to stderr.
#[inline]
pub fn prettyprint(&self, file: impl AsRef<str>, source: impl AsRef<str>) { self.prettywrite(std::io::stderr(), file, source).unwrap() }
/// Prints the warning in a pretty way to the given [`Write`]r.
///
/// # Arguments:
/// - `writer`: The [`Write`]-enabled object to write to.
/// - `file`: The 'path' of the file (or some other identifier) where the source text originates from.
/// - `source`: The source text to read the debug range from.
///
/// # Errors
/// This function may error if we failed to write to the given writer.
#[inline]
pub fn prettywrite(&self, writer: impl Write, file: impl AsRef<str>, source: impl AsRef<str>) -> Result<(), std::io::Error> {
use CompileWarning::*;
match self {
OnDeprecated { range, .. } => prettywrite_warn(writer, file, source, self, range),
}
}
}
impl Display for CompileWarning {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FResult {
use CompileWarning::*;
match self {
OnDeprecated { .. } => {
write!(f, "'On'-structures are deprecated; they will be removed in a future release. Use location annotations instead.")
},
}
}
}
impl Warning for CompileWarning {}