From 5f35da5ca49c80532c093d73f8ac61a7b00713dc Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Thu, 26 Feb 2015 11:53:05 +0100 Subject: [PATCH] Wrap the files() iterator This way we can change the inner API without breaking the outer --- src/reader.rs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/reader.rs b/src/reader.rs index b3b12b0b..fbb06c85 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -44,6 +44,18 @@ pub struct ZipReader names_map: HashMap, } +pub struct ZipFileIterator<'a> +{ + inner: ::std::slice::Iter<'a, ZipFile>, +} + +impl<'a> Iterator for ZipFileIterator<'a> { + type Item = &'a ZipFile; + fn next(&mut self) -> Option<&'a ZipFile> { + self.inner.next() + } +} + fn unsupported_zip_error(detail: &'static str) -> ZipResult { Err(ZipError::UnsupportedZipFile(detail)) @@ -76,9 +88,9 @@ impl ZipReader } /// An iterator over the information of all contained files. - pub fn files(&self) -> ::std::slice::Iter + pub fn files(&self) -> ZipFileIterator { - (&*self.files).iter() + ZipFileIterator { inner: (&*self.files).iter(), } } /// Search for a file entry by name