mirror of
https://github.com/astral-sh/ruff
synced 2026-01-23 06:20:55 -05:00
This lets you test the ruff linters or use the ruff library without having to compile the ~100 additional dependencies that are needed by the CLI. Because we set the following in the [workspace] section of Cargo.toml: default-members = [".", "ruff_cli"] `cargo run` still runs the CLI and `cargo test` still tests the code in src/ as well as the code in the new ruff_cli crate. (But you can now also run `cargo test -p ruff` to only test the linters.)
156 lines
4.8 KiB
Rust
156 lines
4.8 KiB
Rust
#![cfg_attr(target_family = "wasm", allow(dead_code))]
|
|
use std::fs::write;
|
|
use std::io;
|
|
use std::io::Write;
|
|
use std::ops::AddAssign;
|
|
use std::path::Path;
|
|
|
|
use anyhow::Result;
|
|
use log::debug;
|
|
use ruff::linter::{lint_fix, lint_only};
|
|
use ruff::message::Message;
|
|
use ruff::settings::{flags, Settings};
|
|
use ruff::{fix, fs};
|
|
use similar::TextDiff;
|
|
|
|
use crate::cache;
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct Diagnostics {
|
|
pub messages: Vec<Message>,
|
|
pub fixed: usize,
|
|
}
|
|
|
|
impl Diagnostics {
|
|
pub fn new(messages: Vec<Message>) -> Self {
|
|
Self { messages, fixed: 0 }
|
|
}
|
|
}
|
|
|
|
impl AddAssign for Diagnostics {
|
|
fn add_assign(&mut self, other: Self) {
|
|
self.messages.extend(other.messages);
|
|
self.fixed += other.fixed;
|
|
}
|
|
}
|
|
|
|
/// Lint the source code at the given `Path`.
|
|
pub fn lint_path(
|
|
path: &Path,
|
|
package: Option<&Path>,
|
|
settings: &Settings,
|
|
cache: flags::Cache,
|
|
autofix: fix::FixMode,
|
|
) -> Result<Diagnostics> {
|
|
// Validate the `Settings` and return any errors.
|
|
settings.validate()?;
|
|
|
|
// Check the cache.
|
|
// TODO(charlie): `fixer::Mode::Apply` and `fixer::Mode::Diff` both have
|
|
// side-effects that aren't captured in the cache. (In practice, it's fine
|
|
// to cache `fixer::Mode::Apply`, since a file either has no fixes, or we'll
|
|
// write the fixes to disk, thus invalidating the cache. But it's a bit hard
|
|
// to reason about. We need to come up with a better solution here.)
|
|
let metadata = if matches!(cache, flags::Cache::Enabled)
|
|
&& matches!(autofix, fix::FixMode::None | fix::FixMode::Generate)
|
|
{
|
|
let metadata = path.metadata()?;
|
|
if let Some(messages) = cache::get(path, &metadata, settings, autofix.into()) {
|
|
debug!("Cache hit for: {}", path.to_string_lossy());
|
|
return Ok(Diagnostics::new(messages));
|
|
}
|
|
Some(metadata)
|
|
} else {
|
|
None
|
|
};
|
|
|
|
// Read the file from disk.
|
|
let contents = fs::read_file(path)?;
|
|
|
|
// Lint the file.
|
|
let (messages, fixed) = if matches!(autofix, fix::FixMode::Apply | fix::FixMode::Diff) {
|
|
let (transformed, fixed, messages) = lint_fix(&contents, path, package, settings)?;
|
|
if fixed > 0 {
|
|
if matches!(autofix, fix::FixMode::Apply) {
|
|
write(path, transformed)?;
|
|
} else if matches!(autofix, fix::FixMode::Diff) {
|
|
let mut stdout = io::stdout().lock();
|
|
TextDiff::from_lines(&contents, &transformed)
|
|
.unified_diff()
|
|
.header(&fs::relativize_path(path), &fs::relativize_path(path))
|
|
.to_writer(&mut stdout)?;
|
|
stdout.write_all(b"\n")?;
|
|
stdout.flush()?;
|
|
}
|
|
}
|
|
(messages, fixed)
|
|
} else {
|
|
let messages = lint_only(&contents, path, package, settings, autofix.into())?;
|
|
let fixed = 0;
|
|
(messages, fixed)
|
|
};
|
|
|
|
// Re-populate the cache.
|
|
if let Some(metadata) = metadata {
|
|
cache::set(path, &metadata, settings, autofix.into(), &messages);
|
|
}
|
|
|
|
Ok(Diagnostics { messages, fixed })
|
|
}
|
|
|
|
/// Generate `Diagnostic`s from source code content derived from
|
|
/// stdin.
|
|
pub fn lint_stdin(
|
|
path: Option<&Path>,
|
|
package: Option<&Path>,
|
|
contents: &str,
|
|
settings: &Settings,
|
|
autofix: fix::FixMode,
|
|
) -> Result<Diagnostics> {
|
|
// Validate the `Settings` and return any errors.
|
|
settings.validate()?;
|
|
|
|
// Lint the inputs.
|
|
let (messages, fixed) = if matches!(autofix, fix::FixMode::Apply | fix::FixMode::Diff) {
|
|
let (transformed, fixed, messages) = lint_fix(
|
|
contents,
|
|
path.unwrap_or_else(|| Path::new("-")),
|
|
package,
|
|
settings,
|
|
)?;
|
|
|
|
if matches!(autofix, fix::FixMode::Apply) {
|
|
// Write the contents to stdout, regardless of whether any errors were fixed.
|
|
io::stdout().write_all(transformed.as_bytes())?;
|
|
} else if matches!(autofix, fix::FixMode::Diff) {
|
|
// But only write a diff if it's non-empty.
|
|
if fixed > 0 {
|
|
let text_diff = TextDiff::from_lines(contents, &transformed);
|
|
let mut unified_diff = text_diff.unified_diff();
|
|
if let Some(path) = path {
|
|
unified_diff.header(&fs::relativize_path(path), &fs::relativize_path(path));
|
|
}
|
|
|
|
let mut stdout = io::stdout().lock();
|
|
unified_diff.to_writer(&mut stdout)?;
|
|
stdout.write_all(b"\n")?;
|
|
stdout.flush()?;
|
|
}
|
|
}
|
|
|
|
(messages, fixed)
|
|
} else {
|
|
let messages = lint_only(
|
|
contents,
|
|
path.unwrap_or_else(|| Path::new("-")),
|
|
package,
|
|
settings,
|
|
autofix.into(),
|
|
)?;
|
|
let fixed = 0;
|
|
(messages, fixed)
|
|
};
|
|
|
|
Ok(Diagnostics { messages, fixed })
|
|
}
|