mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-19 18:11:08 +00:00

* Add a formatter CLI for debugging This adds a ruff_python_formatter cli modelled aber `rustfmt` that i use for debugging * clippy * Add print IR and print comments options Tested with `cargo run --bin ruff_python_formatter -- --print-ir --print-comments scratch.py`
53 lines
1.7 KiB
Rust
53 lines
1.7 KiB
Rust
use std::io::{stdout, Read, Write};
|
|
use std::{fs, io};
|
|
|
|
use anyhow::{bail, Context, Result};
|
|
use clap::Parser as ClapParser;
|
|
|
|
use ruff_python_formatter::cli::{format_and_debug_print, Cli, Emit};
|
|
|
|
/// Read a `String` from `stdin`.
|
|
pub(crate) fn read_from_stdin() -> Result<String> {
|
|
let mut buffer = String::new();
|
|
io::stdin().lock().read_to_string(&mut buffer)?;
|
|
Ok(buffer)
|
|
}
|
|
|
|
#[allow(clippy::print_stdout)]
|
|
fn main() -> Result<()> {
|
|
let cli: Cli = Cli::parse();
|
|
|
|
if cli.files.is_empty() {
|
|
if !matches!(cli.emit, None | Some(Emit::Stdout)) {
|
|
bail!(
|
|
"Can only write to stdout when formatting from stdin, but you asked for {:?}",
|
|
cli.emit
|
|
);
|
|
}
|
|
let input = read_from_stdin()?;
|
|
let formatted = format_and_debug_print(&input, &cli)?;
|
|
if cli.check {
|
|
if formatted == input {
|
|
return Ok(());
|
|
}
|
|
bail!("Content not correctly formatted")
|
|
}
|
|
stdout().lock().write_all(formatted.as_bytes())?;
|
|
} else {
|
|
for file in &cli.files {
|
|
let input = fs::read_to_string(file)
|
|
.with_context(|| format!("Could not read {}: ", file.display()))?;
|
|
let formatted = format_and_debug_print(&input, &cli)?;
|
|
match cli.emit {
|
|
Some(Emit::Stdout) => stdout().lock().write_all(formatted.as_bytes())?,
|
|
None | Some(Emit::Files) => {
|
|
fs::write(file, formatted.as_bytes()).with_context(|| {
|
|
format!("Could not write to {}, exiting", file.display())
|
|
})?;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|