1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
#!/usr/bin/env python3
#
# __init__.py
"""
Some handy archive helpers for Python.
"""
#
# Copyright © 2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
# stdlib
import datetime
import os
import pathlib
import shutil
import sys
import tarfile
import zipfile
from typing import IO, TYPE_CHECKING, Callable, Iterable, Optional, Type, TypeVar, Union, cast, no_type_check
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2021 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.2.0"
__email__: str = "dominic@davis-foster.co.uk"
__all__ = ["unpack_archive", "TarFile", "ZipFile", "is_tarfile"]
_Self = TypeVar("_Self")
PathLike = Union[str, pathlib.Path, os.PathLike]
if "wheel" not in shutil._UNPACK_FORMATS: # type: ignore[attr-defined]
shutil.register_unpack_format(
name="wheel",
extensions=[".whl"],
function=shutil._unpack_zipfile, # type: ignore[attr-defined]
)
if TYPE_CHECKING or not hasattr(tarfile, "FilterError"): # pragma: nocover
def fully_trusted_filter(member, dest_path): # noqa: MAN001,MAN002
return member
def tar_filter(member, dest_path): # noqa: MAN001,MAN002
return member
def data_filter(member, dest_path): # noqa: MAN001,MAN002
return member
else: # pragma: nocover
# stdlib
from tarfile import data_filter as data_filter
from tarfile import fully_trusted_filter as fully_trusted_filter
from tarfile import tar_filter as tar_filter
def unpack_archive(
filename: PathLike,
extract_dir: Optional[PathLike] = None,
format: Optional[str] = None, # noqa: A002 # pylint: disable=redefined-builtin
) -> None:
"""
Unpack an archive.
:param filename: The name of the archive.
:param extract_dir: The name of the target directory, where the archive is unpacked.
If not provided, the current working directory is used.
:param format: The archive format: one of ``'zip'``, ``'tar'``, ``'gztar'``, ``'bztar'``, or ``'xztar'``,
or any other format registered through :func:`shutil.register_unpack_format`.
If not provided, ``unpack_archive`` will use the filename extension and see if
an unpacker was registered for that extension.
If no unpacker is found, a :exc:`ValueError` is raised.
"""
if sys.version_info < (3, 7): # pragma: no cover (py37+)
if extract_dir is not None:
extract_dir = os.fspath(extract_dir)
filename = os.fspath(filename)
shutil.unpack_archive(filename, extract_dir, format)
class TarFile(tarfile.TarFile):
"""
Subclass of :class:`tarfile.TarFile` with additional methods.
"""
closed: bool
offset: int
@no_type_check
def extractall(
self,
path: PathLike = '.',
members: Optional[Iterable[tarfile.TarInfo]] = None,
*,
numeric_owner: bool = False,
filter: Optional[Callable] = None, # noqa: A002 # pylint: disable=redefined-builtin
) -> None: # pragma: nocover
"""
Wrapper around :meth:`tarfile.TarFile.extractall` with compatibility shim for :pep:`706` on unpatched Pythons.
"""
if hasattr(tarfile, "FilterError"):
return super().extractall(
path,
members,
numeric_owner=numeric_owner,
filter=filter,
)
else:
return super().extractall(path, members, numeric_owner=numeric_owner)
@no_type_check
def extract(
self,
member: Union[str, tarfile.TarInfo],
path: PathLike = '',
set_attrs: bool = True,
*,
numeric_owner: bool = False,
filter: Optional[Callable] = None, # noqa: A002 # pylint: disable=redefined-builtin
) -> None: # pragma: nocover
"""
Wrapper around :meth:`tarfile.TarFile.extract` with compatibility shim for :pep:`706` on unpatched Pythons.
"""
if hasattr(tarfile, "FilterError"):
return super().extract(
member,
path,
set_attrs,
numeric_owner=numeric_owner,
filter=filter,
)
else:
return super().extract(member, path, set_attrs, numeric_owner=numeric_owner)
def extractfile(self, member: Union[str, tarfile.TarInfo]) -> IO[bytes]:
"""
Extract a member from the archive as a file object.
:param member: A filename or a :class:`tarfile.TarInfo` object.
If ``member`` is a regular file or a link, an :class:`io.BufferedReader` object is returned.
Otherwise :exc:`FileNotFoundError` is raised.
"""
if isinstance(member, str):
tarinfo = self._getmember(member) # type: ignore[attr-defined]
if tarinfo is None:
raise FileNotFoundError(member)
else:
fd = super().extractfile(member)
else:
fd = super().extractfile(member)
if fd is None:
raise FileNotFoundError(member)
else:
return fd
def read_text(
self,
member: Union[str, tarfile.TarInfo],
*,
normalize_nl: bool = False,
) -> str:
r"""
Returns the content of the given file as a string.
:param member:
:param normalize_nl: If :py:obj:`True`, line endings are normalized to ``\n`` (LF).
:raises FileNotFoundError: If the file is not found in the archive.
:rtype:
.. versionadded:: 0.2.0 Added the ``normalize_nl`` option.
"""
return _normalize_nl(self.read_bytes(member).decode("UTF-8"), normalize_nl)
def read_bytes(self, member: Union[str, tarfile.TarInfo]) -> bytes:
"""
Returns the content of the given file as bytes.
:param member:
:raises FileNotFoundError: If the file is not found in the archive.
"""
with self.extractfile(member) as fd:
return fd.read()
def write_file(
self,
filename: PathLike,
arcname: Optional[PathLike] = None,
mtime: Optional[datetime.datetime] = None,
) -> None:
"""
Add the file ``filename`` to the archive under the name ``arcname``.
:param filename:
:param arcname: An alternative name for the file in the archive.
:param mtime: The last modified time of the file.
Defaults to the value obtained from :func:`os.stat`.
:no-default mtime:
"""
if not os.path.isfile(filename):
raise IsADirectoryError("'TarFile.write_file' only supports files.")
if mtime is None:
return self.add(filename, arcname, recursive=False)
if arcname is None: # pragma: no cover
arcname = filename
if isinstance(arcname, os.PathLike):
arcname = os.fspath(arcname)
self._check("awx") # type: ignore[attr-defined]
# Skip if somebody tries to archive the archive...
if self.name is not None and os.path.abspath(filename) == self.name: # pragma: no cover
self._dbg(2, "tarfile: Skipped %r" % filename) # type: ignore[attr-defined]
return
self._dbg(1, filename) # type: ignore[attr-defined]
# Create a TarInfo object from the file.
tarinfo = self.gettarinfo(os.fspath(filename), arcname)
tarinfo.mtime = mtime.timestamp() # type: ignore[assignment]
if tarinfo is None: # pragma: no cover
self._dbg(1, f"tarfile: Unsupported type {filename!r}")
return
# Append the tar header and data to the archive.
with open(filename, "rb") as f:
self.addfile(tarinfo, f)
def __enter__(self: _Self) -> _Self:
return super().__enter__() # type: ignore[misc]
@classmethod # noqa: A003 # pylint: disable=redefined-builtin
def open( # type: ignore[override] # noqa: D102
cls: Type[_Self],
name: Optional[PathLike] = None,
*args,
**kwargs,
) -> _Self:
if name is not None:
name = os.fspath(name)
return super().open( # type: ignore[misc]
name,
*args,
**kwargs,
)
class ZipFile(zipfile.ZipFile):
"""
Subclass of :class:`zipfile.ZipFile` with additional methods.
"""
def extractfile(
self,
member: Union[str, zipfile.ZipInfo],
pwd: Union[str, bytes, None] = None,
) -> IO[bytes]:
"""
Extract a member from the archive as a file object.
:param member: A filename or a :class:`zipfile.ZipInfo` object.
:param pwd: The password to decrypt files.
:raises FileNotFoundError: If the file is not found in the archive.
"""
info: zipfile.ZipInfo
# Make sure we have an info object
if isinstance(member, zipfile.ZipInfo):
# 'member' is already an info object
info = member
else:
# Get info object for 'member'
maybe_info = self.NameToInfo.get(member)
if maybe_info is None:
raise FileNotFoundError(member)
else:
info = maybe_info
if isinstance(pwd, str):
pwd = pwd.encode("UTF-8")
return self.open(info, pwd=pwd)
def read_text(
self,
member: Union[str, zipfile.ZipInfo],
pwd: Union[str, bytes, None] = None,
*,
normalize_nl: bool = False
) -> str:
r"""
Returns the content of the given file as a string.
:param member:
:param pwd: The password to decrypt files.
:param normalize_nl: If :py:obj:`True`, line endings are normalized to ``\n`` (LF).
:raises FileNotFoundError: If the file is not found in the archive.
:rtype:
.. versionadded:: 0.2.0 Added the ``normalize_nl`` option.
"""
return _normalize_nl(self.read_bytes(member, pwd=pwd).decode("UTF-8"), normalize_nl)
def read_bytes(
self,
member: Union[str, zipfile.ZipInfo],
pwd: Union[str, bytes, None] = None,
) -> bytes:
"""
Returns the content of the given file as bytes.
:param member:
:param pwd: The password to decrypt files.
:raises FileNotFoundError: If the file is not found in the archive.
"""
with self.extractfile(member, pwd=pwd) as fd:
return fd.read()
def write_file(
self,
filename: PathLike,
arcname: Optional[PathLike] = None,
mtime: Optional[datetime.datetime] = None,
) -> None:
"""
Put the bytes from ``filename`` into the archive under the name ``arcname``.
:param filename:
:param arcname: An alternative name for the file in the archive.
:param mtime: The last modified time of the file.
Defaults to the value obtained from :func:`os.stat`.
:no-default mtime:
"""
if self._writing: # type: ignore[attr-defined]
raise ValueError("Can't write to ZIP archive while an open writing handle exists")
if not os.path.isfile(filename):
raise IsADirectoryError("'ZipFile.write_file' only supports files.")
if mtime is None:
return self.write(filename, arcname)
if arcname is None:
arcname = os.fspath(filename)
else:
arcname = os.fspath(arcname)
arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
while arcname[0] in (os.sep, os.altsep):
arcname = arcname[1:]
zinfo = zipfile.ZipInfo(arcname, mtime.timetuple()[:6])
zinfo.compress_type = self.compression
if sys.version_info >= (3, 7): # pragma: no cover (<py37)
zinfo._compresslevel = self.compresslevel # type: ignore[attr-defined]
st = os.stat(filename)
zinfo.external_attr = (st.st_mode & 0xFFFF) << 16 # Unix attributes
zinfo.file_size = st.st_size
with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
shutil.copyfileobj(src, dest, 1024 * 8)
def __enter__(self: _Self) -> _Self:
return super().__enter__() # type: ignore[misc]
def is_tarfile(name: Union[PathLike, IO[bytes]]) -> bool:
"""
Return :py:obj:`True` if ``name`` points to a tar archive that :mod:`tarfile` can handle,
else return :py:obj:`False`.
:param name: A string, file, or file-like object.
""" # noqa: D400
try:
if hasattr(name, "read"):
t = TarFile.open(fileobj=name)
else:
t = TarFile.open(cast(PathLike, name))
t.close()
return True
except tarfile.TarError:
return False
def _normalize_nl(text: str, enable: bool) -> str:
if enable:
return text.replace("\r\n", '\n').replace('\r', '\n')
else:
return text
|