zip-rs-wasm/examples/stdin_info.rs
Mathijs van de Nes 38d1699853 Improve reading from non-seekable streams
You can now repeatedly call a function to iterate over all files in a
zip. This may give some suboptimal results, but is useful when dealing
with an incoming data stream.
2018-06-16 14:14:34 +02:00

26 lines
621 B
Rust

extern crate zip;
use std::io;
fn main() {
std::process::exit(real_main());
}
fn real_main() -> i32 {
let stdin = io::stdin();
let mut stdin_handle = stdin.lock();
loop {
match zip::read::read_zipfile_from_stream(&mut stdin_handle) {
Ok(None) => break,
Ok(Some(file)) => {
println!("{}: {} bytes ({} bytes packed)", file.name(), file.size(), file.compressed_size());
},
Err(e) => {
println!("Error encountered while reading zip: {:?}", e);
return 1;
},
}
}
return 0;
}