View statistics for this project via
Libraries.io
, or by using
our public dataset on Google BigQuery
License:
MIT License (MIT)
Author:
Michael Wilmes
Requires:
Python >=3.8
sparse_file
Python package for creating and managing sparse files
This is a pure-Python package that uses ctypes to call OS-native libraries to create sparse files and to remove physical storage assigned to those files. It was inspired by the
fallocate PyPi module
, but requires no compilation. I would be willing to extend this to work on OS X but personally lack the means to test the code.
Installation
$ pip install sparse-file
Usage
open_sparse(file, mode='r', buffering=- 1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
This function wraps the built-in open() function. An additional two methods, hole()
and size_on_disk()
are attached to the object returned by open. Refer to the Python documentation for open for explanations on the arguments, returned object, and potential exceptions.
As a requirement for use, the opened file must be writable, as verified by the writable()
method of the file object. If not, this function raises a RuntimeError
and the file is closed.
file.hole(start, length)
This method attempts to create a "hole" in the file by removing the associated storage used by a file starting at byte start
for a length of length
bytes. Future reads of that portion of the file will return zeroes for all bytes in the deallocated range. Future writes to that range will reallocate file storage for written data (including all zeroes).
If successful at deallocating the storage at that range, returns True. If unsuccessful, it throws an OSError
exception containing the appropriate error code generated by the operating system.
file.size_on_disk()
This method retreives the size in bytes of the actual file on disk, as calculated by OS functions.
If the function runs without problems, the size of the file in bytes on disk is returned. If unsuccessful, it throws an OSError
exception containing the appropriate error code generated by the operating system.
Implementation Details
Windows
Windows supports sparse files on certain versions of Windows and on specific filesystems. See FSCTL_SET_ZERO_DATA IOCTL for more details.
open_sparse()
Notes:
Windows requires a file to be flagged as a sparse file in order to be able to make a file sparse. This means that the file must already exist in order for this function to work. This package attempts to set the file as sparse immediately after the file is opened. If unable, an OSError is thown.
Linux
Broadly speaking, a file in Linux only needs to be on a supported filesystem in order to become sparse. The Debian Man Pages site has a current list as of this writing.
I have tested this code on both an Ubuntu VM and Ubuntu 22.04 on WSL. It does work on WSL as long as the filesystem is supported. WSL mounts on /mnt are not supported. However, the root directory is ext4 and I was able to create spares files in my home directory.
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
License
sparse-file
was created by Michael Wilmes. It is licensed under the terms of the MIT license.
Credits
sparse-file
was created with cookiecutter
and the py-pkgs-cookiecutter
template.
View statistics for this project via Libraries.io, or by using our public dataset on Google BigQuery
License: MIT License (MIT)
Author: Michael Wilmes
Requires: Python >=3.8
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for sparse_file-0.0.2-py3-none-any.whl
Hashes for sparse_file-0.0.2-py3-none-any.whl
Algorithm
Hash digest
"PyPI", "Python Package Index", and the blocks logos are registered trademarks of the Python Software Foundation.
© 2024 Python Software Foundation
Site map