fix: Clippy uninlined format args

This commit is contained in:
Kyle Bloom 2023-01-31 17:29:34 +00:00
parent f6357c5993
commit 03f5009c34
12 changed files with 23 additions and 27 deletions

View file

@ -17,10 +17,7 @@ fn generate_random_archive(count_files: usize, file_size: usize) -> Vec<u8> {
let bytes = vec![0u8; file_size]; let bytes = vec![0u8; file_size];
for i in 0..count_files { for i in 0..count_files {
let name = format!( let name = format!("file_deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef_{i}.dat");
"file_deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef_{}.dat",
i
);
writer.start_file(name, options).unwrap(); writer.start_file(name, options).unwrap();
writer.write_all(&bytes).unwrap(); writer.write_all(&bytes).unwrap();
} }

View file

@ -26,7 +26,7 @@ fn real_main() -> i32 {
{ {
let comment = file.comment(); let comment = file.comment();
if !comment.is_empty() { if !comment.is_empty() {
println!("File {} comment: {}", i, comment); println!("File {i} comment: {comment}");
} }
} }

View file

@ -25,7 +25,7 @@ fn real_main() -> i32 {
let mut contents = String::new(); let mut contents = String::new();
file.read_to_string(&mut contents).unwrap(); file.read_to_string(&mut contents).unwrap();
println!("{}", contents); println!("{contents}");
0 0
} }

View file

@ -30,7 +30,7 @@ fn real_main() -> i32 {
{ {
let comment = file.comment(); let comment = file.comment();
if !comment.is_empty() { if !comment.is_empty() {
println!("Entry {} comment: {}", i, comment); println!("Entry {i} comment: {comment}");
} }
} }

View file

@ -20,12 +20,12 @@ fn real_main() -> i32 {
); );
match file.read(&mut buf) { match file.read(&mut buf) {
Ok(n) => println!("The first {} bytes are: {:?}", n, &buf[0..n]), Ok(n) => println!("The first {} bytes are: {:?}", n, &buf[0..n]),
Err(e) => println!("Could not read the file: {:?}", e), Err(e) => println!("Could not read the file: {e:?}"),
}; };
} }
Ok(None) => break, Ok(None) => break,
Err(e) => { Err(e) => {
println!("Error encountered while reading zip: {:?}", e); println!("Error encountered while reading zip: {e:?}");
return 1; return 1;
} }
} }

View file

@ -54,8 +54,8 @@ fn real_main() -> i32 {
continue; continue;
} }
match doit(src_dir, dst_file, method.unwrap()) { match doit(src_dir, dst_file, method.unwrap()) {
Ok(_) => println!("done: {} written to {}", src_dir, dst_file), Ok(_) => println!("done: {src_dir} written to {dst_file}"),
Err(e) => println!("Error: {:?}", e), Err(e) => println!("Error: {e:?}"),
} }
} }
@ -84,18 +84,18 @@ where
// Write file or directory explicitly // Write file or directory explicitly
// Some unzip tools unzip files with directory paths correctly, some do not! // Some unzip tools unzip files with directory paths correctly, some do not!
if path.is_file() { if path.is_file() {
println!("adding file {:?} as {:?} ...", path, name); println!("adding file {path:?} as {name:?} ...");
#[allow(deprecated)] #[allow(deprecated)]
zip.start_file_from_path(name, options)?; zip.start_file_from_path(name, options)?;
let mut f = File::open(path)?; let mut f = File::open(path)?;
f.read_to_end(&mut buffer)?; f.read_to_end(&mut buffer)?;
zip.write_all(&*buffer)?; zip.write_all(&buffer)?;
buffer.clear(); buffer.clear();
} else if !name.as_os_str().is_empty() { } else if !name.as_os_str().is_empty() {
// Only if not root! Avoids path spec / warning // Only if not root! Avoids path spec / warning
// and mapname conversion failed error on unzip // and mapname conversion failed error on unzip
println!("adding dir {:?} as {:?} ...", path, name); println!("adding dir {path:?} as {name:?} ...");
#[allow(deprecated)] #[allow(deprecated)]
zip.add_directory_from_path(name, options)?; zip.add_directory_from_path(name, options)?;
} }

View file

@ -14,8 +14,8 @@ fn real_main() -> i32 {
let filename = &*args[1]; let filename = &*args[1];
match doit(filename) { match doit(filename) {
Ok(_) => println!("File written to {}", filename), Ok(_) => println!("File written to {filename}"),
Err(e) => println!("Error: {:?}", e), Err(e) => println!("Error: {e:?}"),
} }
0 0

View file

@ -141,7 +141,7 @@ impl CompressionMethod {
impl fmt::Display for CompressionMethod { impl fmt::Display for CompressionMethod {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// Just duplicate what the Debug format looks like, i.e, the enum key: // Just duplicate what the Debug format looks like, i.e, the enum key:
write!(f, "{:?}", self) write!(f, "{self:?}")
} }
} }
@ -195,8 +195,8 @@ mod test {
#[test] #[test]
fn to_display_fmt() { fn to_display_fmt() {
fn check_match(method: CompressionMethod) { fn check_match(method: CompressionMethod) {
let debug_str = format!("{:?}", method); let debug_str = format!("{method:?}");
let display_str = format!("{}", method); let display_str = format!("{method}");
assert_eq!(debug_str, display_str); assert_eq!(debug_str, display_str);
} }

View file

@ -44,9 +44,9 @@ impl From<io::Error> for ZipError {
impl fmt::Display for ZipError { impl fmt::Display for ZipError {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self { match self {
ZipError::Io(err) => write!(fmt, "{}", err), ZipError::Io(err) => write!(fmt, "{err}"),
ZipError::InvalidArchive(err) => write!(fmt, "invalid Zip archive: {}", err), ZipError::InvalidArchive(err) => write!(fmt, "invalid Zip archive: {err}"),
ZipError::UnsupportedArchive(err) => write!(fmt, "unsupported Zip archive: {}", err), ZipError::UnsupportedArchive(err) => write!(fmt, "unsupported Zip archive: {err}"),
ZipError::FileNotFound => write!(fmt, "specified file not found in archive"), ZipError::FileNotFound => write!(fmt, "specified file not found in archive"),
} }
} }

View file

@ -848,7 +848,7 @@ impl<W: Write + io::Seek> Drop for ZipWriter<W> {
fn drop(&mut self) { fn drop(&mut self) {
if !self.inner.is_closed() { if !self.inner.is_closed() {
if let Err(e) = self.finalize() { if let Err(e) = self.finalize() {
let _ = write!(io::stderr(), "ZipWriter drop failed: {:?}", e); let _ = write!(io::stderr(), "ZipWriter drop failed: {e:?}");
} }
} }
} }
@ -1211,8 +1211,7 @@ fn validate_extra_data(file: &ZipFileData) -> ZipResult<()> {
return Err(ZipError::Io(io::Error::new( return Err(ZipError::Io(io::Error::new(
io::ErrorKind::Other, io::ErrorKind::Other,
format!( format!(
"Extra data header ID {:#06} requires crate feature \"unreserved\"", "Extra data header ID {kind:#06} requires crate feature \"unreserved\"",
kind,
), ),
))); )));
} }

View file

@ -13,7 +13,7 @@ fn end_to_end() {
for &method in SUPPORTED_COMPRESSION_METHODS { for &method in SUPPORTED_COMPRESSION_METHODS {
let file = &mut Cursor::new(Vec::new()); let file = &mut Cursor::new(Vec::new());
println!("Writing file with {} compression", method); println!("Writing file with {method} compression");
write_test_archive(file, method).expect("Couldn't write test zip archive"); write_test_archive(file, method).expect("Couldn't write test zip archive");
println!("Checking file contents"); println!("Checking file contents");

View file

@ -205,7 +205,7 @@ fn zip64_large() {
match file.read_exact(&mut buf) { match file.read_exact(&mut buf) {
Ok(()) => println!("The first {} bytes are: {:?}", buf.len(), buf), Ok(()) => println!("The first {} bytes are: {:?}", buf.len(), buf),
Err(e) => println!("Could not read the file: {:?}", e), Err(e) => println!("Could not read the file: {e:?}"),
}; };
} }
} }