Merge pull request #212 from dtolnay/fserr

Use fs-err to improve error messages on filesystem operations
This commit is contained in:
David Tolnay 2024-03-29 08:50:50 -07:00 committed by GitHub
commit f08dec1910
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 23 additions and 10 deletions

16
Cargo.lock generated
View file

@ -74,6 +74,12 @@ dependencies = [
"windows-sys 0.52.0", "windows-sys 0.52.0",
] ]
[[package]]
name = "autocfg"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
[[package]] [[package]]
name = "base64" name = "base64"
version = "0.21.7" version = "0.21.7"
@ -176,6 +182,7 @@ dependencies = [
"bat", "bat",
"cargo-subcommand-metadata", "cargo-subcommand-metadata",
"clap", "clap",
"fs-err",
"prettyplease", "prettyplease",
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -365,6 +372,15 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fs-err"
version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
dependencies = [
"autocfg",
]
[[package]] [[package]]
name = "globset" name = "globset"
version = "0.4.14" version = "0.4.14"

View file

@ -20,6 +20,7 @@ prettyplease = []
bat = { version = "0.24", default-features = false, features = ["paging", "regex-fancy"] } bat = { version = "0.24", default-features = false, features = ["paging", "regex-fancy"] }
cargo-subcommand-metadata = "0.1" cargo-subcommand-metadata = "0.1"
clap = { version = "4", features = ["deprecated", "derive"] } clap = { version = "4", features = ["deprecated", "derive"] }
fs-err = "2"
prettyplease = { version = "0.2.17", features = ["verbatim"] } prettyplease = { version = "0.2.17", features = ["verbatim"] }
proc-macro2 = "1.0.74" proc-macro2 = "1.0.74"
quote = { version = "1.0.35", default-features = false } quote = { version = "1.0.35", default-features = false }

View file

@ -1,6 +1,5 @@
use serde::Deserialize; use serde::Deserialize;
use std::env; use std::env;
use std::fs;
use std::io::{self, Write}; use std::io::{self, Write};
use std::path::PathBuf; use std::path::PathBuf;
@ -35,7 +34,7 @@ fn try_deserialize() -> Option<Config> {
.map(|name| cargo_home.join(name)) .map(|name| cargo_home.join(name))
.find(|path| path.exists())?; .find(|path| path.exists())?;
let content = fs::read_to_string(&config_path).ok()?; let content = fs_err::read_to_string(&config_path).ok()?;
let full_config: Sections = match toml::from_str(&content) { let full_config: Sections = match toml::from_str(&content) {
Ok(config) => config, Ok(config) => config,

View file

@ -1,6 +1,5 @@
use crate::error::Result; use crate::error::Result;
use serde::Serialize; use serde::Serialize;
use std::fs;
use std::path::Path; use std::path::Path;
#[derive(Serialize)] #[derive(Serialize)]
@ -20,7 +19,7 @@ pub fn write_rustfmt_config(outdir: impl AsRef<Path>) -> Result<()> {
let toml_string = toml::to_string(&config)?; let toml_string = toml::to_string(&config)?;
let rustfmt_config_path = outdir.as_ref().join("rustfmt.toml"); let rustfmt_config_path = outdir.as_ref().join("rustfmt.toml");
fs::write(rustfmt_config_path, toml_string)?; fs_err::write(rustfmt_config_path, toml_string)?;
Ok(()) Ok(())
} }

View file

@ -38,7 +38,6 @@ use quote::quote;
use std::env; use std::env;
use std::error::Error as StdError; use std::error::Error as StdError;
use std::ffi::OsString; use std::ffi::OsString;
use std::fs;
use std::io::{self, BufRead, IsTerminal, Write}; use std::io::{self, BufRead, IsTerminal, Write};
use std::panic::{self, PanicInfo, UnwindSafe}; use std::panic::{self, PanicInfo, UnwindSafe};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
@ -133,7 +132,7 @@ fn cargo_expand() -> Result<i32> {
return Ok(1); return Ok(1);
} }
let mut content = fs::read_to_string(&outfile_path)?; let mut content = fs_err::read_to_string(&outfile_path)?;
if content.is_empty() { if content.is_empty() {
let _ = writeln!(io::stderr(), "ERROR: rustc produced no expanded output"); let _ = writeln!(io::stderr(), "ERROR: rustc produced no expanded output");
return Ok(if code == 0 { 1 } else { code }); return Ok(if code == 0 { 1 } else { code });
@ -188,7 +187,7 @@ fn cargo_expand() -> Result<i32> {
if let Some(unformatted) = to_rustfmt { if let Some(unformatted) = to_rustfmt {
if let Some(rustfmt) = rustfmt.or_else(which_rustfmt) { if let Some(rustfmt) = rustfmt.or_else(which_rustfmt) {
fs::write(&outfile_path, unformatted)?; fs_err::write(&outfile_path, unformatted)?;
fmt::write_rustfmt_config(&outdir)?; fmt::write_rustfmt_config(&outdir)?;
@ -201,7 +200,7 @@ fn cargo_expand() -> Result<i32> {
.output(); .output();
if let Ok(output) = output { if let Ok(output) = output {
if output.status.success() { if output.status.success() {
stage = Stage::Formatted(fs::read_to_string(&outfile_path)?); stage = Stage::Formatted(fs_err::read_to_string(&outfile_path)?);
break; break;
} }
} }

View file

@ -1,7 +1,6 @@
use crate::error::Result; use crate::error::Result;
use serde::Deserialize; use serde::Deserialize;
use std::env; use std::env;
use std::fs;
use std::io::{self, ErrorKind}; use std::io::{self, ErrorKind};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
@ -18,7 +17,7 @@ pub struct CargoPackage {
pub fn parse(manifest_path: Option<&Path>) -> Result<CargoManifest> { pub fn parse(manifest_path: Option<&Path>) -> Result<CargoManifest> {
let manifest_path = find_cargo_manifest(manifest_path)?; let manifest_path = find_cargo_manifest(manifest_path)?;
let content = fs::read_to_string(manifest_path)?; let content = fs_err::read_to_string(manifest_path)?;
let cargo_manifest: CargoManifest = toml::from_str(&content)?; let cargo_manifest: CargoManifest = toml::from_str(&content)?;
Ok(cargo_manifest) Ok(cargo_manifest)
} }