rustfmt.rs 691 B

1234567891011121314151617181920212223242526
  1. use std::{
  2. io::{self, Write},
  3. process::{Command, Output, Stdio},
  4. };
  5. pub fn format(code: &str) -> Result<String, io::Error> {
  6. let mut child = Command::new("rustfmt")
  7. .stdin(Stdio::piped())
  8. .stdout(Stdio::piped())
  9. .spawn()?;
  10. let stdin = child.stdin.as_mut().unwrap();
  11. stdin.write_all(code.as_bytes())?;
  12. let Output {
  13. status,
  14. stdout,
  15. stderr,
  16. } = child.wait_with_output()?;
  17. if !status.success() {
  18. let stderr = String::from_utf8(stderr).unwrap();
  19. return Err(io::Error::other(format!(
  20. "rustfmt failed: {status:?}\n{stderr}"
  21. )));
  22. }
  23. Ok(String::from_utf8(stdout).unwrap())
  24. }