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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
"""Manage the filesystem in a Tar archive.
"""
from __future__ import print_function, unicode_literals
import typing
from typing import IO, cast
import os
import tarfile
from collections import OrderedDict
from . import errors
from ._url_tools import url_quote
from .base import FS
from .compress import write_tar
from .enums import ResourceType
from .errors import IllegalBackReference, NoURL
from .info import Info
from .iotools import RawWrapper
from .opener import open_fs
from .path import basename, frombase, isbase, normpath, parts, relpath
from .permissions import Permissions
from .wrapfs import WrapFS
if typing.TYPE_CHECKING:
from typing import (
Any,
BinaryIO,
Collection,
Dict,
List,
Optional,
Text,
Tuple,
Union,
)
from tarfile import TarInfo
from .info import RawInfo
from .subfs import SubFS
T = typing.TypeVar("T", bound="ReadTarFS")
__all__ = ["TarFS", "WriteTarFS", "ReadTarFS"]
if True:
def _get_member_info(member, encoding):
# type: (TarInfo, Text) -> Dict[Text, object]
# NOTE(@althonos): TarInfo.get_info is neither in the doc nor
# in the `tarfile` stub, and yet it exists and is public !
return member.get_info() # type: ignore
class TarFS(WrapFS):
"""Read and write tar files.
There are two ways to open a `TarFS` for the use cases of reading
a tar file, and creating a new one.
If you open the `TarFS` with ``write`` set to `False` (the
default), then the filesystem will be a read only filesystem which
maps to the files and directories within the tar file. Files are
decompressed on the fly when you open them.
Here's how you might extract and print a readme from a tar file::
with TarFS('foo.tar.gz') as tar_fs:
readme = tar_fs.readtext('readme.txt')
If you open the TarFS with ``write`` set to `True`, then the `TarFS`
will be a empty temporary filesystem. Any files / directories you
create in the `TarFS` will be written in to a tar file when the `TarFS`
is closed. The compression is set from the new file name but may be
set manually with the ``compression`` argument.
Here's how you might write a new tar file containing a readme.txt
file::
with TarFS('foo.tar.xz', write=True) as new_tar:
new_tar.writetext(
'readme.txt',
'This tar file was written by PyFilesystem'
)
Arguments:
file (str or io.IOBase): An OS filename, or an open file handle.
write (bool): Set to `True` to write a new tar file, or
use default (`False`) to read an existing tar file.
compression (str, optional): Compression to use (one of the formats
supported by `tarfile`: ``xz``, ``gz``, ``bz2``, or `None`).
temp_fs (str): An FS URL or an FS instance to use to store
data prior to tarring. Defaults to creating a new
`~fs.tempfs.TempFS`.
"""
_compression_formats = {
# FMT #UNIX #MSDOS
"xz": (".tar.xz", ".txz"),
"bz2": (".tar.bz2", ".tbz"),
"gz": (".tar.gz", ".tgz"),
}
def __new__( # type: ignore
cls,
file, # type: Union[Text, BinaryIO]
write=False, # type: bool
compression=None, # type: Optional[Text]
encoding="utf-8", # type: Text
temp_fs="temp://__tartemp__", # type: Union[Text, FS]
):
# type: (...) -> FS
if isinstance(file, (str, bytes)):
file = os.path.expanduser(file)
filename = file # type: Text
else:
filename = getattr(file, "name", "")
if write and compression is None:
compression = None
for comp, extensions in cls._compression_formats.items():
if filename.endswith(extensions):
compression = comp
break
if write:
return WriteTarFS(
file, compression=compression, encoding=encoding, temp_fs=temp_fs
)
else:
return ReadTarFS(file, encoding=encoding)
if typing.TYPE_CHECKING:
def __init__(
self,
file, # type: Union[Text, BinaryIO]
write=False, # type: bool
compression=None, # type: Optional[Text]
encoding="utf-8", # type: Text
temp_fs="temp://__tartemp__", # type: Text
): # noqa: D107
# type: (...) -> None
pass
class WriteTarFS(WrapFS):
"""A writable tar file."""
def __init__(
self,
file, # type: Union[Text, BinaryIO]
compression=None, # type: Optional[Text]
encoding="utf-8", # type: Text
temp_fs="temp://__tartemp__", # type: Union[Text, FS]
): # noqa: D107
# type: (...) -> None
self._file = file # type: Union[Text, BinaryIO]
self.compression = compression
self.encoding = encoding
self._temp_fs_url = temp_fs
self._temp_fs = open_fs(temp_fs)
self._meta = dict(self._temp_fs.getmeta()) # type: ignore
super(WriteTarFS, self).__init__(self._temp_fs)
def __repr__(self):
# type: () -> Text
t = "WriteTarFS({!r}, compression={!r}, encoding={!r}, temp_fs={!r})"
return t.format(self._file, self.compression, self.encoding, self._temp_fs_url)
def __str__(self):
# type: () -> Text
return "<TarFS-write '{}'>".format(self._file)
def delegate_path(self, path):
# type: (Text) -> Tuple[FS, Text]
return self._temp_fs, path
def delegate_fs(self):
# type: () -> FS
return self._temp_fs
def close(self):
# type: () -> None
if not self.isclosed():
try:
self.write_tar()
finally:
self._temp_fs.close()
super(WriteTarFS, self).close()
def write_tar(
self,
file=None, # type: Union[Text, BinaryIO, None]
compression=None, # type: Optional[Text]
encoding=None, # type: Optional[Text]
):
# type: (...) -> None
"""Write tar to a file.
Arguments:
file (str or io.IOBase, optional): Destination file, may be
a file name or an open file object.
compression (str, optional): Compression to use (one of
the constants defined in `tarfile` in the stdlib).
encoding (str, optional): The character encoding to use
(default uses the encoding defined in
`~WriteTarFS.__init__`).
Note:
This is called automatically when the TarFS is closed.
"""
if not self.isclosed():
write_tar(
self._temp_fs,
file or self._file,
compression=compression or self.compression,
encoding=encoding or self.encoding,
)
class ReadTarFS(FS):
"""A readable tar file."""
_meta = {
"case_insensitive": True,
"network": False,
"read_only": True,
"supports_rename": False,
"thread_safe": True,
"unicode_paths": True,
"virtual": False,
}
_typemap = type_map = {
tarfile.BLKTYPE: ResourceType.block_special_file,
tarfile.CHRTYPE: ResourceType.character,
tarfile.DIRTYPE: ResourceType.directory,
tarfile.FIFOTYPE: ResourceType.fifo,
tarfile.REGTYPE: ResourceType.file,
tarfile.AREGTYPE: ResourceType.file,
tarfile.SYMTYPE: ResourceType.symlink,
tarfile.CONTTYPE: ResourceType.file,
tarfile.LNKTYPE: ResourceType.symlink,
}
@errors.CreateFailed.catch_all
def __init__(self, file, encoding="utf-8"): # noqa: D107
# type: (Union[Text, BinaryIO], Text) -> None
super(ReadTarFS, self).__init__()
self._file = file
self.encoding = encoding
if isinstance(file, (str, bytes)):
self._tar = tarfile.open(file, mode="r")
else:
self._tar = tarfile.open(fileobj=file, mode="r")
self._directory_cache = None
@property
def _directory_entries(self):
"""Lazy directory cache."""
if self._directory_cache is None:
_decode = self._decode
_directory_entries = (
(_decode(info.name).strip("/"), info) for info in self._tar
)
def _list_tar():
for name, info in _directory_entries:
try:
_name = normpath(name)
except IllegalBackReference:
# Back references outside root, must be up to no good.
pass
else:
if _name:
yield _name, info
self._directory_cache = OrderedDict(_list_tar())
return self._directory_cache
def __repr__(self):
# type: () -> Text
return "ReadTarFS({!r})".format(self._file)
def __str__(self):
# type: () -> Text
return "<TarFS '{}'>".format(self._file)
if True:
def _encode(self, s):
# type: (Text) -> str
return s
def _decode(self, s):
# type: (str) -> Text
return s
def getinfo(self, path, namespaces=None):
# type: (Text, Optional[Collection[Text]]) -> Info
_path = relpath(self.validatepath(path))
namespaces = namespaces or ()
raw_info = {} # type: Dict[Text, Dict[Text, object]]
if not _path:
raw_info["basic"] = {"name": "", "is_dir": True}
if "details" in namespaces:
raw_info["details"] = {"type": int(ResourceType.directory)}
else:
try:
implicit = False
member = self._directory_entries[_path]
except KeyError:
if not self.isdir(_path):
raise errors.ResourceNotFound(path)
implicit = True
member = tarfile.TarInfo(_path)
member.type = tarfile.DIRTYPE
raw_info["basic"] = {
"name": basename(self._decode(member.name)),
"is_dir": member.isdir(),
}
if "details" in namespaces:
raw_info["details"] = {
"size": member.size,
"type": int(self.type_map[member.type]),
}
if not implicit:
raw_info["details"]["modified"] = member.mtime
if "access" in namespaces and not implicit:
raw_info["access"] = {
"gid": member.gid,
"group": member.gname,
"permissions": Permissions(mode=member.mode).dump(),
"uid": member.uid,
"user": member.uname,
}
if "tar" in namespaces and not implicit:
raw_info["tar"] = _get_member_info(member, self.encoding)
raw_info["tar"].update(
{
k.replace("is", "is_"): getattr(member, k)()
for k in dir(member)
if k.startswith("is")
}
)
return Info(raw_info)
def isdir(self, path):
_path = relpath(self.validatepath(path))
try:
return self._directory_entries[_path].isdir()
except KeyError:
return any(isbase(_path, name) for name in self._directory_entries)
def isfile(self, path):
_path = relpath(self.validatepath(path))
try:
return self._directory_entries[_path].isfile()
except KeyError:
return False
def setinfo(self, path, info):
# type: (Text, RawInfo) -> None
self.check()
raise errors.ResourceReadOnly(path)
def listdir(self, path):
# type: (Text) -> List[Text]
_path = relpath(self.validatepath(path))
if not self.gettype(path) is ResourceType.directory:
raise errors.DirectoryExpected(path)
children = (
frombase(_path, n) for n in self._directory_entries if isbase(_path, n)
)
content = (parts(child)[1] for child in children if relpath(child))
return list(OrderedDict.fromkeys(content))
def makedir(
self, # type: T
path, # type: Text
permissions=None, # type: Optional[Permissions]
recreate=False, # type: bool
):
# type: (...) -> SubFS[T]
self.check()
raise errors.ResourceReadOnly(path)
def openbin(self, path, mode="r", buffering=-1, **options):
# type: (Text, Text, int, **Any) -> BinaryIO
_path = relpath(self.validatepath(path))
if "w" in mode or "+" in mode or "a" in mode:
raise errors.ResourceReadOnly(path)
try:
member = self._directory_entries[_path]
except KeyError:
raise errors.ResourceNotFound(path)
if not member.isfile():
raise errors.FileExpected(path)
rw = RawWrapper(cast(IO, self._tar.extractfile(member)))
return rw # type: ignore
def remove(self, path):
# type: (Text) -> None
self.check()
raise errors.ResourceReadOnly(path)
def removedir(self, path):
# type: (Text) -> None
self.check()
raise errors.ResourceReadOnly(path)
def close(self):
# type: () -> None
super(ReadTarFS, self).close()
if hasattr(self, "_tar"):
self._tar.close()
def isclosed(self):
# type: () -> bool
return self._tar.closed # type: ignore
def geturl(self, path, purpose="download"):
# type: (Text, Text) -> Text
if purpose == "fs" and isinstance(self._file, str):
quoted_file = url_quote(self._file)
quoted_path = url_quote(path)
return "tar://{}!/{}".format(quoted_file, quoted_path)
else:
raise NoURL(path, purpose)
if __name__ == "__main__": # pragma: no cover
from fs.tree import render
with TarFS("tests.tar") as tar_fs:
print(tar_fs.listdir("/"))
print(tar_fs.listdir("/tests/"))
print(tar_fs.readtext("tests/ttt/settings.ini"))
render(tar_fs)
print(tar_fs)
print(repr(tar_fs))
with TarFS("TarFS.tar", write=True) as tar_fs:
tar_fs.makedirs("foo/bar")
tar_fs.writetext("foo/bar/baz.txt", "Hello, World")
print(tar_fs)
print(repr(tar_fs))
|