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
|
"""Abstract I/O mode container.
Mode strings are used in in `~fs.base.FS.open` and
`~fs.base.FS.openbin`.
"""
from __future__ import print_function, unicode_literals
import typing
from ._typing import Text
if typing.TYPE_CHECKING:
from typing import FrozenSet, Set, Union
__all__ = ["Mode", "check_readable", "check_writable", "validate_openbin_mode"]
# https://docs.python.org/3/library/functions.html#open
class Mode(typing.Container[Text]):
"""An abstraction for I/O modes.
A mode object provides properties that can be used to interrogate the
`mode strings <https://docs.python.org/3/library/functions.html#open>`_
used when opening files.
Example:
>>> mode = Mode('rb')
>>> mode.reading
True
>>> mode.writing
False
>>> mode.binary
True
>>> mode.text
False
"""
def __init__(self, mode):
# type: (Text) -> None
"""Create a new `Mode` instance.
Arguments:
mode (str): A *mode* string, as used by `io.open`.
Raises:
ValueError: If the mode string is invalid.
"""
self._mode = mode
self.validate()
def __repr__(self):
# type: () -> Text
return "Mode({!r})".format(self._mode)
def __str__(self):
# type: () -> Text
return self._mode
def __contains__(self, character):
# type: (object) -> bool
"""Check if a mode contains a given character."""
assert isinstance(character, Text)
return character in self._mode
def to_platform(self):
# type: () -> Text
"""Get a mode string for the current platform.
Currently, this just removes the 'x' on PY2 because PY2 doesn't
support exclusive mode.
"""
return self._mode
def to_platform_bin(self):
# type: () -> Text
"""Get a *binary* mode string for the current platform.
This removes the 't' and adds a 'b' if needed.
"""
_mode = self.to_platform().replace("t", "")
return _mode if "b" in _mode else _mode + "b"
def validate(self, _valid_chars=frozenset("rwxtab+")):
# type: (Union[Set[Text], FrozenSet[Text]]) -> None
"""Validate the mode string.
Raises:
ValueError: if the mode contains invalid chars.
"""
mode = self._mode
if not mode:
raise ValueError("mode must not be empty")
if not _valid_chars.issuperset(mode):
raise ValueError("mode '{}' contains invalid characters".format(mode))
if mode[0] not in "rwxa":
raise ValueError("mode must start with 'r', 'w', 'x', or 'a'")
if "t" in mode and "b" in mode:
raise ValueError("mode can't be binary ('b') and text ('t')")
def validate_bin(self):
# type: () -> None
"""Validate a mode for opening a binary file.
Raises:
ValueError: if the mode contains invalid chars.
"""
self.validate()
if "t" in self:
raise ValueError("mode must be binary")
@property
def create(self):
# type: () -> bool
"""`bool`: `True` if the mode would create a file."""
return "a" in self or "w" in self or "x" in self
@property
def reading(self):
# type: () -> bool
"""`bool`: `True` if the mode permits reading."""
return "r" in self or "+" in self
@property
def writing(self):
# type: () -> bool
"""`bool`: `True` if the mode permits writing."""
return "w" in self or "a" in self or "+" in self or "x" in self
@property
def appending(self):
# type: () -> bool
"""`bool`: `True` if the mode permits appending."""
return "a" in self
@property
def updating(self):
# type: () -> bool
"""`bool`: `True` if the mode permits both reading and writing."""
return "+" in self
@property
def truncate(self):
# type: () -> bool
"""`bool`: `True` if the mode would truncate an existing file."""
return "w" in self or "x" in self
@property
def exclusive(self):
# type: () -> bool
"""`bool`: `True` if the mode require exclusive creation."""
return "x" in self
@property
def binary(self):
# type: () -> bool
"""`bool`: `True` if a mode specifies binary."""
return "b" in self
@property
def text(self):
# type: () -> bool
"""`bool`: `True` if a mode specifies text."""
return "t" in self or "b" not in self
def check_readable(mode):
# type: (Text) -> bool
"""Check a mode string allows reading.
Arguments:
mode (str): A mode string, e.g. ``"rt"``
Returns:
bool: `True` if the mode allows reading.
"""
return Mode(mode).reading
def check_writable(mode):
# type: (Text) -> bool
"""Check a mode string allows writing.
Arguments:
mode (str): A mode string, e.g. ``"wt"``
Returns:
bool: `True` if the mode allows writing.
"""
return Mode(mode).writing
def validate_open_mode(mode):
# type: (Text) -> None
"""Check ``mode`` parameter of `~fs.base.FS.open` is valid.
Arguments:
mode (str): Mode parameter.
Raises:
`ValueError` if mode is not valid.
"""
Mode(mode)
def validate_openbin_mode(mode, _valid_chars=frozenset("rwxab+")):
# type: (Text, Union[Set[Text], FrozenSet[Text]]) -> None
"""Check ``mode`` parameter of `~fs.base.FS.openbin` is valid.
Arguments:
mode (str): Mode parameter.
Raises:
`ValueError` if mode is not valid.
"""
if "t" in mode:
raise ValueError("text mode not valid in openbin")
if not mode:
raise ValueError("mode must not be empty")
if mode[0] not in "rwxa":
raise ValueError("mode must start with 'r', 'w', 'a' or 'x'")
if not _valid_chars.issuperset(mode):
raise ValueError("mode '{}' contains invalid characters".format(mode))
|