Hole-Punch
A (wip) dead simple, cross platform crate for finding the locations of holes in sparse files.
Currently supports Unix-like platforms that support the SEEK_HOLE and SEEK_DATA commands on lseek, as well as windows.
The operating systems that currently support filesystem-level sparsity information are:
- Linux
- Android
- FreeBSD
- Windows
These are currently implemented with a compile time switch, and SparseFile::scan_chunks will always immediately return with a ScanError::UnsupportedPlatform error on platforms not on this list.
Usage
use File;
use *;
let mut file = open;
let segments = file.scan_chunks.expect;
for segment in segment
License
Hole-Punch is distributed under your choice of the MIT license, or Apache 2.0.
TO-DOs
The following features are on my "to implement" list, in order of importance:
- Windows support
- Fallback mode (reading the entire file manually looking for chunks of 0s)