mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-28 12:55:05 +00:00
Colorize the output of ruff format --diff (#10110)
Co-authored-by: Micha Reiser <micha@reiser.io>
This commit is contained in:
parent
8ecdf5369a
commit
56d445add9
4 changed files with 148 additions and 48 deletions
|
@ -532,7 +532,7 @@ impl<'a> FormatResults<'a> {
|
||||||
})
|
})
|
||||||
.sorted_unstable_by_key(|(path, _, _)| *path)
|
.sorted_unstable_by_key(|(path, _, _)| *path)
|
||||||
{
|
{
|
||||||
unformatted.diff(formatted, Some(path), f)?;
|
write!(f, "{}", unformatted.diff(formatted, Some(path)).unwrap())?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -122,8 +122,12 @@ fn format_source_code(
|
||||||
}
|
}
|
||||||
FormatMode::Check => {}
|
FormatMode::Check => {}
|
||||||
FormatMode::Diff => {
|
FormatMode::Diff => {
|
||||||
source_kind
|
use std::io::Write;
|
||||||
.diff(formatted, path, &mut stdout().lock())
|
write!(
|
||||||
|
&mut stdout().lock(),
|
||||||
|
"{}",
|
||||||
|
source_kind.diff(formatted, path).unwrap()
|
||||||
|
)
|
||||||
.map_err(|err| FormatCommandError::Diff(path.map(Path::to_path_buf), err))?;
|
.map_err(|err| FormatCommandError::Diff(path.map(Path::to_path_buf), err))?;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io;
|
use std::io;
|
||||||
|
use std::io::Write;
|
||||||
use std::ops::{Add, AddAssign};
|
use std::ops::{Add, AddAssign};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
|
@ -289,10 +290,10 @@ pub(crate) fn lint_path(
|
||||||
match fix_mode {
|
match fix_mode {
|
||||||
flags::FixMode::Apply => transformed.write(&mut File::create(path)?)?,
|
flags::FixMode::Apply => transformed.write(&mut File::create(path)?)?,
|
||||||
flags::FixMode::Diff => {
|
flags::FixMode::Diff => {
|
||||||
source_kind.diff(
|
write!(
|
||||||
transformed.as_ref(),
|
|
||||||
Some(path),
|
|
||||||
&mut io::stdout().lock(),
|
&mut io::stdout().lock(),
|
||||||
|
"{}",
|
||||||
|
source_kind.diff(&transformed, Some(path)).unwrap()
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
flags::FixMode::Generate => {}
|
flags::FixMode::Generate => {}
|
||||||
|
@ -442,7 +443,11 @@ pub(crate) fn lint_stdin(
|
||||||
flags::FixMode::Diff => {
|
flags::FixMode::Diff => {
|
||||||
// But only write a diff if it's non-empty.
|
// But only write a diff if it's non-empty.
|
||||||
if !fixed.is_empty() {
|
if !fixed.is_empty() {
|
||||||
source_kind.diff(transformed.as_ref(), path, &mut io::stdout().lock())?;
|
write!(
|
||||||
|
&mut io::stdout().lock(),
|
||||||
|
"{}",
|
||||||
|
source_kind.diff(&transformed, path).unwrap()
|
||||||
|
)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
flags::FixMode::Generate => {}
|
flags::FixMode::Generate => {}
|
||||||
|
|
|
@ -1,15 +1,18 @@
|
||||||
|
use std::fmt::Formatter;
|
||||||
use std::io;
|
use std::io;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use similar::TextDiff;
|
use similar::{ChangeTag, TextDiff};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
use ruff_diagnostics::SourceMap;
|
use ruff_diagnostics::SourceMap;
|
||||||
use ruff_notebook::{Cell, Notebook, NotebookError};
|
use ruff_notebook::{Cell, Notebook, NotebookError};
|
||||||
use ruff_python_ast::PySourceType;
|
use ruff_python_ast::PySourceType;
|
||||||
|
|
||||||
|
use colored::Colorize;
|
||||||
|
|
||||||
use crate::fs;
|
use crate::fs;
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, is_macro::Is)]
|
#[derive(Clone, Debug, PartialEq, is_macro::Is)]
|
||||||
|
@ -87,33 +90,53 @@ impl SourceKind {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Write a diff of the transformed source file to `stdout`.
|
/// Returns a diff between the original and modified source code.
|
||||||
pub fn diff(
|
///
|
||||||
&self,
|
/// Returns `None` if `self` and `other` are not of the same kind.
|
||||||
other: &Self,
|
pub fn diff<'a>(
|
||||||
path: Option<&Path>,
|
&'a self,
|
||||||
writer: &mut dyn Write,
|
other: &'a Self,
|
||||||
) -> io::Result<()> {
|
path: Option<&'a Path>,
|
||||||
|
) -> Option<SourceKindDiff<'a>> {
|
||||||
match (self, other) {
|
match (self, other) {
|
||||||
(SourceKind::Python(src), SourceKind::Python(dst)) => {
|
(SourceKind::Python(src), SourceKind::Python(dst)) => Some(SourceKindDiff {
|
||||||
let text_diff = TextDiff::from_lines(src, dst);
|
kind: DiffKind::Python(src, dst),
|
||||||
let mut unified_diff = text_diff.unified_diff();
|
path,
|
||||||
|
}),
|
||||||
|
(SourceKind::IpyNotebook(src), SourceKind::IpyNotebook(dst)) => Some(SourceKindDiff {
|
||||||
|
kind: DiffKind::IpyNotebook(src, dst),
|
||||||
|
path,
|
||||||
|
}),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if let Some(path) = path {
|
#[derive(Clone, Debug)]
|
||||||
unified_diff.header(&fs::relativize_path(path), &fs::relativize_path(path));
|
pub struct SourceKindDiff<'a> {
|
||||||
|
kind: DiffKind<'a>,
|
||||||
|
path: Option<&'a Path>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Display for SourceKindDiff<'_> {
|
||||||
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
|
match self.kind {
|
||||||
|
DiffKind::Python(original, modified) => {
|
||||||
|
let mut diff = CodeDiff::new(original, modified);
|
||||||
|
|
||||||
|
let relative_path = self.path.map(fs::relativize_path);
|
||||||
|
|
||||||
|
if let Some(relative_path) = &relative_path {
|
||||||
|
diff.header(relative_path, relative_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
unified_diff.to_writer(&mut *writer)?;
|
writeln!(f, "{diff}")?;
|
||||||
|
|
||||||
writer.write_all(b"\n")?;
|
|
||||||
writer.flush()?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
(SourceKind::IpyNotebook(src), SourceKind::IpyNotebook(dst)) => {
|
DiffKind::IpyNotebook(original, modified) => {
|
||||||
// Cell indices are 1-based.
|
// Cell indices are 1-based.
|
||||||
for ((idx, src_cell), dst_cell) in
|
for ((idx, src_cell), dst_cell) in (1u32..)
|
||||||
(1u32..).zip(src.cells().iter()).zip(dst.cells().iter())
|
.zip(original.cells().iter())
|
||||||
|
.zip(modified.cells().iter())
|
||||||
{
|
{
|
||||||
let (Cell::Code(src_cell), Cell::Code(dst_cell)) = (src_cell, dst_cell) else {
|
let (Cell::Code(src_cell), Cell::Code(dst_cell)) = (src_cell, dst_cell) else {
|
||||||
continue;
|
continue;
|
||||||
|
@ -122,8 +145,18 @@ impl SourceKind {
|
||||||
let src_source_code = src_cell.source.to_string();
|
let src_source_code = src_cell.source.to_string();
|
||||||
let dst_source_code = dst_cell.source.to_string();
|
let dst_source_code = dst_cell.source.to_string();
|
||||||
|
|
||||||
let text_diff = TextDiff::from_lines(&src_source_code, &dst_source_code);
|
let header = self.path.map_or_else(
|
||||||
let mut unified_diff = text_diff.unified_diff();
|
|| (format!("cell {idx}"), format!("cell {idx}")),
|
||||||
|
|path| {
|
||||||
|
(
|
||||||
|
format!("{}:cell {}", &fs::relativize_path(path), idx),
|
||||||
|
format!("{}:cell {}", &fs::relativize_path(path), idx),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
let mut diff = CodeDiff::new(&src_source_code, &dst_source_code);
|
||||||
|
diff.header(&header.0, &header.1);
|
||||||
|
|
||||||
// Jupyter notebook cells don't necessarily have a newline
|
// Jupyter notebook cells don't necessarily have a newline
|
||||||
// at the end. For example,
|
// at the end. For example,
|
||||||
|
@ -140,28 +173,86 @@ impl SourceKind {
|
||||||
// print("hello")
|
// print("hello")
|
||||||
//
|
//
|
||||||
// ```
|
// ```
|
||||||
unified_diff.missing_newline_hint(false);
|
diff.missing_newline_hint(false);
|
||||||
|
|
||||||
if let Some(path) = path {
|
write!(f, "{diff}")?;
|
||||||
unified_diff.header(
|
|
||||||
&format!("{}:cell {}", &fs::relativize_path(path), idx),
|
|
||||||
&format!("{}:cell {}", &fs::relativize_path(path), idx),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
unified_diff.header(&format!("cell {idx}"), &format!("cell {idx}"));
|
|
||||||
};
|
|
||||||
|
|
||||||
unified_diff.to_writer(&mut *writer)?;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
writer.write_all(b"\n")?;
|
writeln!(f)?;
|
||||||
writer.flush()?;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
_ => panic!("cannot diff Python source code with Jupyter notebook source code"),
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
enum DiffKind<'a> {
|
||||||
|
Python(&'a str, &'a str),
|
||||||
|
IpyNotebook(&'a Notebook, &'a Notebook),
|
||||||
|
}
|
||||||
|
|
||||||
|
struct CodeDiff<'a> {
|
||||||
|
diff: TextDiff<'a, 'a, 'a, str>,
|
||||||
|
header: Option<(&'a str, &'a str)>,
|
||||||
|
missing_newline_hint: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> CodeDiff<'a> {
|
||||||
|
fn new(original: &'a str, modified: &'a str) -> Self {
|
||||||
|
let diff = TextDiff::from_lines(original, modified);
|
||||||
|
Self {
|
||||||
|
diff,
|
||||||
|
header: None,
|
||||||
|
missing_newline_hint: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn header(&mut self, original: &'a str, modified: &'a str) {
|
||||||
|
self.header = Some((original, modified));
|
||||||
|
}
|
||||||
|
|
||||||
|
fn missing_newline_hint(&mut self, missing_newline_hint: bool) {
|
||||||
|
self.missing_newline_hint = missing_newline_hint;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Display for CodeDiff<'_> {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
if let Some((original, modified)) = self.header {
|
||||||
|
writeln!(f, "--- {}", original.red())?;
|
||||||
|
writeln!(f, "+++ {}", modified.green())?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut unified = self.diff.unified_diff();
|
||||||
|
unified.missing_newline_hint(self.missing_newline_hint);
|
||||||
|
|
||||||
|
// Individual hunks (section of changes)
|
||||||
|
for hunk in unified.iter_hunks() {
|
||||||
|
writeln!(f, "{}", hunk.header())?;
|
||||||
|
|
||||||
|
// individual lines
|
||||||
|
for change in hunk.iter_changes() {
|
||||||
|
match change.tag() {
|
||||||
|
ChangeTag::Equal => write!(f, " {}", change.value())?,
|
||||||
|
ChangeTag::Delete => write!(f, "{}{}", "-".red(), change.value())?,
|
||||||
|
ChangeTag::Insert => write!(f, "{}{}", "+".green(), change.value())?,
|
||||||
|
}
|
||||||
|
|
||||||
|
if !self.diff.newline_terminated() {
|
||||||
|
writeln!(f)?;
|
||||||
|
} else if change.missing_newline() {
|
||||||
|
if self.missing_newline_hint {
|
||||||
|
writeln!(f, "{}", "\n\\ No newline at end of file".red())?;
|
||||||
|
} else {
|
||||||
|
writeln!(f)?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue