Crate fileslice

source ·
Expand description

Slices of files

FileSlice is to File what Bytes is to Vec<u8>. Advantages over File:

  • You can slice it, reducing the scope to a range within the original file
  • Cloning is cheap (atomic addition; no syscall)
  • Seeking is very cheap (normal addition; no syscall)
  • Clones can’t affect each other at all (the fd’s real cursor is never used).

Once created, a FileSlice never changes length, even if the underlying file does. For example, if another process appends some data to the file, you need to call FileSlice::expand on your slice in order to add the new data.

Optional features

Optional integrations for crates which naturally benefit from file slicing:

  • tar: Adds a slice_tarball helper method for splitting up a tar::Archive into a bunch of FileSlices.
  • parquet: Adds a ChunkReader impl for FileSlice. A parquet file contains many pages, and the decoder needs to interleave reads from these pages. The ChunkReader impl for File accomplishes this by making many clones of the fd. Using FileSlice instead lets you open roughly 7x as many parquet files before you hit your fd limit.

Structs

Functions