summaryrefslogtreecommitdiffstats
path: root/vendor/zip/examples/stdin_info.rs
blob: a609916a09994ea67c04837c33f4719f0a493eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use std::io::{self, Read};

fn main() {
    std::process::exit(real_main());
}

fn real_main() -> i32 {
    let stdin = io::stdin();
    let mut stdin_handle = stdin.lock();
    let mut buf = [0u8; 16];

    loop {
        match zip::read::read_zipfile_from_stream(&mut stdin_handle) {
            Ok(Some(mut file)) => {
                println!(
                    "{}: {} bytes ({} bytes packed)",
                    file.name(),
                    file.size(),
                    file.compressed_size()
                );
                match file.read(&mut buf) {
                    Ok(n) => println!("The first {} bytes are: {:?}", n, &buf[0..n]),
                    Err(e) => println!("Could not read the file: {e:?}"),
                };
            }
            Ok(None) => break,
            Err(e) => {
                println!("Error encountered while reading zip: {e:?}");
                return 1;
            }
        }
    }

    0
}