Skip to main content

Module to expose posix_fallocate(3), posix_fadvise(3) and fallocate(2)

Project description

https://travis-ci.org/trbs/fallocate.svg?branch=master

fallocate exposes an interface to fallocate(2), posix_fallocate(3) and posix_fadvise(3).

Under Mac OS X the fallocate() method will use the apple equivalent of fallocate(2). Note that this might not be exactly the same.

When using the wrapper functions around the fallocate(2) call the arguments given to the function are slightly different then the c call.

This module has the arguments like:

fallocate(fd, offset, length, mode=0)

While in C the function looks like:

fallocate(fd, mode, offset, length)

The main reason for this is that the mode argument tends not to be used much and thus having the default as a keyword argument is much easier then having to specify 0 everytime.

Usage

Funcation: fallocate(fd, offset, len, [mode=0])

Calls fallocate() on the file object or file descriptor. This allows the caller to directly manipulate the allocated disk space for the file referred to by fd for the byte range starting at offset and continuing for len bytes.

mode is only available in Linux.

It should always be 0 unless one of the following possible flags are specified

FALLOC_FL_KEEP_SIZE     - do not grow file, default is extend size
FALLOC_FL_PUNCH_HOLE    - punches a hole in file, de-allocates range
FALLOC_FL_COLLAPSE_SIZE - remove a range of a file without leaving a hole

Note: FALLOC_FL_COLLAPSE_SIZE was introduced in Linux kernel v3.15 and is only available on certain filesystems (e.g. ext4, xfs, etc). In order to get access to it, you must build and run on a kernel and filesystem that both support it.

Example:

# preallocate using fallocate a 1kb file
with open("/tmp/test.file", "w+b") as f:
    fallocate(f, 0, 1024)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fallocate-1.6.4.tar.gz (8.9 kB view details)

Uploaded Source

File details

Details for the file fallocate-1.6.4.tar.gz.

File metadata

  • Download URL: fallocate-1.6.4.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0

File hashes

Hashes for fallocate-1.6.4.tar.gz
Algorithm Hash digest
SHA256 85ebeb2786761fbe80d88c52590a610bd3425fc89e188c208a3f261a5bd6acb3
MD5 02c09a188399447c5b89916e17d2fc87
BLAKE2b-256 50a1bf19d1bde4833d3dce97ed8f78c20035b1b83c4d79f033a7f00d2ba1fad1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page