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
|
"""Collection of useful `~fs.wrapfs.WrapFS` subclasses.
Here's an example that opens a filesystem then makes it *read only*::
>>> home_fs = fs.open_fs('~')
>>> read_only_home_fs = fs.wrap.read_only(home_fs)
>>> read_only_home_fs.removedir('Desktop')
Traceback (most recent call last):
...
fs.errors.ResourceReadOnly: resource 'Desktop' is read only
"""
from __future__ import print_function, unicode_literals
import typing
from .errors import ResourceNotFound, ResourceReadOnly
from .info import Info
from .mode import check_writable
from .path import abspath, normpath, split
from .wrapfs import WrapFS
if typing.TYPE_CHECKING:
from typing import (
IO,
Any,
BinaryIO,
Collection,
Dict,
Iterator,
Mapping,
Optional,
Text,
Tuple,
)
from datetime import datetime
from .base import FS # noqa: F401
from .info import RawInfo
from .permissions import Permissions
from .subfs import SubFS
_W = typing.TypeVar("_W", bound="WrapFS")
_T = typing.TypeVar("_T", bound="FS")
_F = typing.TypeVar("_F", bound="FS", covariant=True)
def read_only(fs):
# type: (_T) -> WrapReadOnly[_T]
"""Make a read-only filesystem.
Arguments:
fs (FS): A filesystem instance.
Returns:
FS: A read only version of ``fs``
"""
return WrapReadOnly(fs)
def cache_directory(fs):
# type: (_T) -> WrapCachedDir[_T]
"""Make a filesystem that caches directory information.
Arguments:
fs (FS): A filesystem instance.
Returns:
FS: A filesystem that caches results of `~FS.scandir`, `~FS.isdir`
and other methods which read directory information.
"""
return WrapCachedDir(fs)
class WrapCachedDir(WrapFS[_F], typing.Generic[_F]):
"""Caches filesystem directory information.
This filesystem caches directory information retrieved from a
scandir call. This *may* speed up code that calls `~FS.isdir`,
`~FS.isfile`, or `~FS.gettype` too frequently.
Note:
Using this wrap will prevent changes to directory information
being visible to the filesystem object. Consequently it is best
used only in a fairly limited scope where you don't expected
anything on the filesystem to change.
"""
# FIXME (@althonos): The caching data structure can very likely be
# improved. With the current implementation, if `scandir` result was
# cached for `namespaces=["details", "access"]`, calling `scandir`
# again only with `names=["details"]` will miss the cache, even though
# we are already storing the totality of the required metadata.
#
# A possible solution would be to replaced the cached with a
# Dict[Text, Dict[Text, Dict[Text, Info]]]
# ^ ^ ^ ^-- the actual info object
# | | \-- the path of the directory entry
# | \-- the namespace of the info
# \-- the cached directory entry
#
# Furthermore, `listdir` and `filterdir` calls should be cached as well,
# since they can be written as wrappers of `scandir`.
wrap_name = "cached-dir"
def __init__(self, wrap_fs): # noqa: D107
# type: (_F) -> None
super(WrapCachedDir, self).__init__(wrap_fs)
self._cache = {} # type: Dict[Tuple[Text, frozenset], Dict[Text, Info]]
def scandir(
self,
path, # type: Text
namespaces=None, # type: Optional[Collection[Text]]
page=None, # type: Optional[Tuple[int, int]]
):
# type: (...) -> Iterator[Info]
_path = abspath(normpath(path))
cache_key = (_path, frozenset(namespaces or ()))
if cache_key not in self._cache:
_scan_result = self._wrap_fs.scandir(path, namespaces=namespaces, page=page)
_dir = {info.name: info for info in _scan_result}
self._cache[cache_key] = _dir
gen_scandir = iter(self._cache[cache_key].values())
return gen_scandir
def getinfo(self, path, namespaces=None):
# type: (Text, Optional[Collection[Text]]) -> Info
_path = abspath(normpath(path))
if _path == "/":
return Info({"basic": {"name": "", "is_dir": True}})
dir_path, resource_name = split(_path)
cache_key = (dir_path, frozenset(namespaces or ()))
if cache_key not in self._cache:
self.scandir(dir_path, namespaces=namespaces)
_dir = self._cache[cache_key]
try:
info = _dir[resource_name]
except KeyError:
raise ResourceNotFound(path)
return info
def isdir(self, path):
# type: (Text) -> bool
try:
return self.getinfo(path).is_dir
except ResourceNotFound:
return False
def isfile(self, path):
# type: (Text) -> bool
try:
return not self.getinfo(path).is_dir
except ResourceNotFound:
return False
class WrapReadOnly(WrapFS[_F], typing.Generic[_F]):
"""Makes a Filesystem read-only.
Any call that would would write data or modify the filesystem in any way
will raise a `~fs.errors.ResourceReadOnly` exception.
"""
wrap_name = "read-only"
def appendbytes(self, path, data):
# type: (Text, bytes) -> None
self.check()
raise ResourceReadOnly(path)
def appendtext(
self,
path, # type: Text
text, # type: Text
encoding="utf-8", # type: Text
errors=None, # type: Optional[Text]
newline="", # type: Text
):
# type: (...) -> None
self.check()
raise ResourceReadOnly(path)
def makedir(
self, # type: _W
path, # type: Text
permissions=None, # type: Optional[Permissions]
recreate=False, # type: bool
):
# type: (...) -> SubFS[_W]
self.check()
raise ResourceReadOnly(path)
def move(self, src_path, dst_path, overwrite=False, preserve_time=False):
# type: (Text, Text, bool, bool) -> None
self.check()
raise ResourceReadOnly(dst_path)
def openbin(self, path, mode="r", buffering=-1, **options):
# type: (Text, Text, int, **Any) -> BinaryIO
self.check()
if check_writable(mode):
raise ResourceReadOnly(path)
return self._wrap_fs.openbin(path, mode=mode, buffering=-1, **options)
def remove(self, path):
# type: (Text) -> None
self.check()
raise ResourceReadOnly(path)
def removedir(self, path):
# type: (Text) -> None
self.check()
raise ResourceReadOnly(path)
def removetree(self, path):
# type: (Text) -> None
self.check()
raise ResourceReadOnly(path)
def setinfo(self, path, info):
# type: (Text, RawInfo) -> None
self.check()
raise ResourceReadOnly(path)
def writetext(
self,
path, # type: Text
contents, # type: Text
encoding="utf-8", # type: Text
errors=None, # type: Optional[Text]
newline="", # type: Text
):
# type: (...) -> None
self.check()
raise ResourceReadOnly(path)
def settimes(self, path, accessed=None, modified=None):
# type: (Text, Optional[datetime], Optional[datetime]) -> None
self.check()
raise ResourceReadOnly(path)
def copy(self, src_path, dst_path, overwrite=False, preserve_time=False):
# type: (Text, Text, bool, bool) -> None
self.check()
raise ResourceReadOnly(dst_path)
def create(self, path, wipe=False):
# type: (Text, bool) -> bool
self.check()
raise ResourceReadOnly(path)
def makedirs(
self, # type: _W
path, # type: Text
permissions=None, # type: Optional[Permissions]
recreate=False, # type: bool
):
# type: (...) -> SubFS[_W]
self.check()
raise ResourceReadOnly(path)
def open(
self,
path, # type: Text
mode="r", # type: Text
buffering=-1, # type: int
encoding=None, # type: Optional[Text]
errors=None, # type: Optional[Text]
newline="", # type: Text
line_buffering=False, # type: bool
**options # type: Any
):
# type: (...) -> IO
self.check()
if check_writable(mode):
raise ResourceReadOnly(path)
return self._wrap_fs.open(
path,
mode=mode,
buffering=buffering,
encoding=encoding,
errors=errors,
newline=newline,
line_buffering=line_buffering,
**options
)
def writebytes(self, path, contents):
# type: (Text, bytes) -> None
self.check()
raise ResourceReadOnly(path)
def upload(self, path, file, chunk_size=None, **options):
# type: (Text, BinaryIO, Optional[int], **Any) -> None
self.check()
raise ResourceReadOnly(path)
def writefile(
self,
path, # type: Text
file, # type: IO
encoding=None, # type: Optional[Text]
errors=None, # type: Optional[Text]
newline="", # type: Text
):
# type: (...) -> None
self.check()
raise ResourceReadOnly(path)
def touch(self, path):
# type: (Text) -> None
self.check()
raise ResourceReadOnly(path)
def getmeta(self, namespace="standard"):
# type: (Text) -> Mapping[Text, object]
self.check()
meta = dict(self.delegate_fs().getmeta(namespace=namespace))
meta.update(read_only=True, supports_rename=False)
return meta
|