fix: fix all Clippy warnings
- some warnings are muted since fixing them right now can be a breaking API change - fix Clippy warns in the src, examples and tests Tested: - Local test run
This commit is contained in:
parent
f956a2eb85
commit
e636399935
8 changed files with 32 additions and 28 deletions
|
@ -87,7 +87,7 @@ where
|
||||||
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().len() != 0 {
|
} 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 {:?} as {:?} ...", path, name);
|
||||||
|
|
|
@ -42,7 +42,7 @@ fn doit(filename: &str) -> zip::result::ZipResult<()> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
const LOREM_IPSUM : &'static [u8] = b"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tellus elit, tristique vitae mattis egestas, ultricies vitae risus. Quisque sit amet quam ut urna aliquet
|
const LOREM_IPSUM : &[u8] = b"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tellus elit, tristique vitae mattis egestas, ultricies vitae risus. Quisque sit amet quam ut urna aliquet
|
||||||
molestie. Proin blandit ornare dui, a tempor nisl accumsan in. Praesent a consequat felis. Morbi metus diam, auctor in auctor vel, feugiat id odio. Curabitur ex ex,
|
molestie. Proin blandit ornare dui, a tempor nisl accumsan in. Praesent a consequat felis. Morbi metus diam, auctor in auctor vel, feugiat id odio. Curabitur ex ex,
|
||||||
dictum quis auctor quis, suscipit id lorem. Aliquam vestibulum dolor nec enim vehicula, porta tristique augue tincidunt. Vivamus ut gravida est. Sed pellentesque, dolor
|
dictum quis auctor quis, suscipit id lorem. Aliquam vestibulum dolor nec enim vehicula, porta tristique augue tincidunt. Vivamus ut gravida est. Sed pellentesque, dolor
|
||||||
vitae tristique consectetur, neque lectus pulvinar dui, sed feugiat purus diam id lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
vitae tristique consectetur, neque lectus pulvinar dui, sed feugiat purus diam id lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
||||||
|
|
|
@ -125,7 +125,7 @@ mod test {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn from_eq_to() {
|
fn from_eq_to() {
|
||||||
for v in 0..(::std::u16::MAX as u32 + 1) {
|
for v in 0..(u16::MAX as u32 + 1) {
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
let from = CompressionMethod::from_u16(v as u16);
|
let from = CompressionMethod::from_u16(v as u16);
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
|
@ -135,17 +135,17 @@ mod test {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn methods() -> Vec<CompressionMethod> {
|
fn methods() -> Vec<CompressionMethod> {
|
||||||
let mut methods = Vec::new();
|
vec![
|
||||||
methods.push(CompressionMethod::Stored);
|
CompressionMethod::Stored,
|
||||||
#[cfg(any(
|
#[cfg(any(
|
||||||
feature = "deflate",
|
feature = "deflate",
|
||||||
feature = "deflate-miniz",
|
feature = "deflate-miniz",
|
||||||
feature = "deflate-zlib"
|
feature = "deflate-zlib"
|
||||||
))]
|
))]
|
||||||
methods.push(CompressionMethod::Deflated);
|
CompressionMethod::Deflated,
|
||||||
#[cfg(feature = "bzip2")]
|
#[cfg(feature = "bzip2")]
|
||||||
methods.push(CompressionMethod::Bzip2);
|
CompressionMethod::Bzip2,
|
||||||
methods
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -6,7 +6,8 @@ pub trait FromCp437 {
|
||||||
type Target;
|
type Target;
|
||||||
|
|
||||||
/// Function that does the conversion from cp437.
|
/// Function that does the conversion from cp437.
|
||||||
/// Gennerally allocations will be avoided if all data falls into the ASCII range.
|
/// Generally allocations will be avoided if all data falls into the ASCII range.
|
||||||
|
#[allow(clippy::wrong_self_convention)]
|
||||||
fn from_cp437(self) -> Self::Target;
|
fn from_cp437(self) -> Self::Target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
12
src/read.rs
12
src/read.rs
|
@ -457,14 +457,14 @@ impl<R: Read + io::Seek> ZipArchive<R> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get a contained file by index
|
/// Get a contained file by index
|
||||||
pub fn by_index(&mut self, file_number: usize) -> ZipResult<ZipFile> {
|
pub fn by_index(&mut self, file_number: usize) -> ZipResult<ZipFile<'_>> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.by_index_with_optional_password(file_number, None)?
|
.by_index_with_optional_password(file_number, None)?
|
||||||
.unwrap())
|
.unwrap())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get a contained file by index without decompressing it
|
/// Get a contained file by index without decompressing it
|
||||||
pub fn by_index_raw(&mut self, file_number: usize) -> ZipResult<ZipFile> {
|
pub fn by_index_raw(&mut self, file_number: usize) -> ZipResult<ZipFile<'_>> {
|
||||||
let reader = &mut self.reader;
|
let reader = &mut self.reader;
|
||||||
self.files
|
self.files
|
||||||
.get_mut(file_number)
|
.get_mut(file_number)
|
||||||
|
@ -1081,10 +1081,10 @@ mod test {
|
||||||
let mut buf3 = [0; 5];
|
let mut buf3 = [0; 5];
|
||||||
let mut buf4 = [0; 5];
|
let mut buf4 = [0; 5];
|
||||||
|
|
||||||
file1.read(&mut buf1).unwrap();
|
file1.read_exact(&mut buf1).unwrap();
|
||||||
file2.read(&mut buf2).unwrap();
|
file2.read_exact(&mut buf2).unwrap();
|
||||||
file1.read(&mut buf3).unwrap();
|
file1.read_exact(&mut buf3).unwrap();
|
||||||
file2.read(&mut buf4).unwrap();
|
file2.read_exact(&mut buf4).unwrap();
|
||||||
|
|
||||||
assert_eq!(buf1, buf2);
|
assert_eq!(buf1, buf2);
|
||||||
assert_eq!(buf3, buf4);
|
assert_eq!(buf3, buf4);
|
||||||
|
|
13
src/types.rs
13
src/types.rs
|
@ -88,6 +88,7 @@ impl DateTime {
|
||||||
/// * hour: [0, 23]
|
/// * hour: [0, 23]
|
||||||
/// * minute: [0, 59]
|
/// * minute: [0, 59]
|
||||||
/// * second: [0, 60]
|
/// * second: [0, 60]
|
||||||
|
#[allow(clippy::result_unit_err)]
|
||||||
pub fn from_date_and_time(
|
pub fn from_date_and_time(
|
||||||
year: u16,
|
year: u16,
|
||||||
month: u8,
|
month: u8,
|
||||||
|
@ -96,8 +97,7 @@ impl DateTime {
|
||||||
minute: u8,
|
minute: u8,
|
||||||
second: u8,
|
second: u8,
|
||||||
) -> Result<DateTime, ()> {
|
) -> Result<DateTime, ()> {
|
||||||
if year >= 1980
|
if (1980..=2107).contains(&year)
|
||||||
&& year <= 2107
|
|
||||||
&& month >= 1
|
&& month >= 1
|
||||||
&& month <= 12
|
&& month <= 12
|
||||||
&& day >= 1
|
&& day >= 1
|
||||||
|
@ -123,6 +123,7 @@ impl DateTime {
|
||||||
/// Converts a OffsetDateTime object to a DateTime
|
/// Converts a OffsetDateTime object to a DateTime
|
||||||
///
|
///
|
||||||
/// Returns `Err` when this object is out of bounds
|
/// Returns `Err` when this object is out of bounds
|
||||||
|
#[allow(clippy::result_unit_err)]
|
||||||
pub fn from_time(dt: OffsetDateTime) -> Result<DateTime, ()> {
|
pub fn from_time(dt: OffsetDateTime) -> Result<DateTime, ()> {
|
||||||
if dt.year() >= 1980 && dt.year() <= 2107 {
|
if dt.year() >= 1980 && dt.year() <= 2107 {
|
||||||
Ok(DateTime {
|
Ok(DateTime {
|
||||||
|
@ -322,19 +323,21 @@ mod test {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
#[allow(clippy::unusual_byte_groupings)]
|
||||||
fn datetime_default() {
|
fn datetime_default() {
|
||||||
use super::DateTime;
|
use super::DateTime;
|
||||||
let dt = DateTime::default();
|
let dt = DateTime::default();
|
||||||
assert_eq!(dt.timepart(), 0);
|
assert_eq!(dt.timepart(), 0);
|
||||||
assert_eq!(dt.datepart(), 0b0000_0000_0010_0001);
|
assert_eq!(dt.datepart(), 0b0000000_0001_00001);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
#[allow(clippy::unusual_byte_groupings)]
|
||||||
fn datetime_max() {
|
fn datetime_max() {
|
||||||
use super::DateTime;
|
use super::DateTime;
|
||||||
let dt = DateTime::from_date_and_time(2107, 12, 31, 23, 59, 60).unwrap();
|
let dt = DateTime::from_date_and_time(2107, 12, 31, 23, 59, 60).unwrap();
|
||||||
assert_eq!(dt.timepart(), 0b1011_1111_0111_1110);
|
assert_eq!(dt.timepart(), 0b10111_111011_11110);
|
||||||
assert_eq!(dt.datepart(), 0b1111_1111_1001_1111);
|
assert_eq!(dt.datepart(), 0b1111111_1100_11111);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -1233,7 +1233,7 @@ mod test {
|
||||||
};
|
};
|
||||||
writer.start_file("mimetype", options).unwrap();
|
writer.start_file("mimetype", options).unwrap();
|
||||||
writer
|
writer
|
||||||
.write(b"application/vnd.oasis.opendocument.text")
|
.write_all(b"application/vnd.oasis.opendocument.text")
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let result = writer.finish().unwrap();
|
let result = writer.finish().unwrap();
|
||||||
|
|
||||||
|
|
|
@ -137,7 +137,7 @@ fn check_zip_file_contents<R: Read + Seek>(archive: &mut zip::ZipArchive<R>, nam
|
||||||
assert_eq!(file_contents.as_bytes(), LOREM_IPSUM);
|
assert_eq!(file_contents.as_bytes(), LOREM_IPSUM);
|
||||||
}
|
}
|
||||||
|
|
||||||
const LOREM_IPSUM : &'static [u8] = b"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tellus elit, tristique vitae mattis egestas, ultricies vitae risus. Quisque sit amet quam ut urna aliquet
|
const LOREM_IPSUM : &[u8] = b"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tellus elit, tristique vitae mattis egestas, ultricies vitae risus. Quisque sit amet quam ut urna aliquet
|
||||||
molestie. Proin blandit ornare dui, a tempor nisl accumsan in. Praesent a consequat felis. Morbi metus diam, auctor in auctor vel, feugiat id odio. Curabitur ex ex,
|
molestie. Proin blandit ornare dui, a tempor nisl accumsan in. Praesent a consequat felis. Morbi metus diam, auctor in auctor vel, feugiat id odio. Curabitur ex ex,
|
||||||
dictum quis auctor quis, suscipit id lorem. Aliquam vestibulum dolor nec enim vehicula, porta tristique augue tincidunt. Vivamus ut gravida est. Sed pellentesque, dolor
|
dictum quis auctor quis, suscipit id lorem. Aliquam vestibulum dolor nec enim vehicula, porta tristique augue tincidunt. Vivamus ut gravida est. Sed pellentesque, dolor
|
||||||
vitae tristique consectetur, neque lectus pulvinar dui, sed feugiat purus diam id lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
vitae tristique consectetur, neque lectus pulvinar dui, sed feugiat purus diam id lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
|
||||||
|
|
Loading…
Add table
Reference in a new issue