fscmp 0.2.11

Utility for comparing files/directories
use std::io::{Error, ErrorKind, Result};
use std::os::unix::fs::FileExt;

pub trait FileExtExact: FileExt {
    fn read_at_exact(&self, mut buf: &mut [u8], mut offset: u64) -> Result<()> {
        while !buf.is_empty() {
            match self.read_at(buf, offset) {
                Ok(0) => break,
                Ok(n) => {
                    buf = &mut buf[n..];
                    offset += n as u64;
                }
                Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
                Err(e) => return Err(e),
            }
        }
        if !buf.is_empty() {
            Err(Error::new(ErrorKind::UnexpectedEof, "failed to fill whole buffer"))
        } else {
            Ok(())
        }
    }
}

impl<T> FileExtExact for T where T: FileExt {}