Spaces:
Sleeping
Sleeping
File size: 18,471 Bytes
ffaa9fc |
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 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 |
# -*- coding: utf-8 -*-
# Copyright (c) 2013, Mahmoud Hashemi
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
#
# * The names of the contributors may not be used to endorse or
# promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Coding decl above needed for rendering the emdash properly in the
# documentation.
"""
Module ``ioutils`` implements a number of helper classes and functions which
are useful when dealing with input, output, and bytestreams in a variety of
ways.
"""
import os
from io import BytesIO, IOBase
from abc import (
ABCMeta,
abstractmethod,
abstractproperty,
)
from errno import EINVAL
from codecs import EncodedFile
from tempfile import TemporaryFile
try:
from itertools import izip_longest as zip_longest # Python 2
except ImportError:
from itertools import zip_longest # Python 3
try:
text_type = unicode # Python 2
binary_type = str
except NameError:
text_type = str # Python 3
binary_type = bytes
READ_CHUNK_SIZE = 21333
"""
Number of bytes to read at a time. The value is ~ 1/3rd of 64k which means that
the value will easily fit in the L2 cache of most processors even if every
codepoint in a string is three bytes long which makes it a nice fast default
value.
"""
class SpooledIOBase(IOBase):
"""
A base class shared by the SpooledBytesIO and SpooledStringIO classes.
The SpooledTemporaryFile class is missing several attributes and methods
present in the StringIO implementation. This brings the api as close to
parity as possible so that classes derived from SpooledIOBase can be used
as near drop-in replacements to save memory.
"""
__metaclass__ = ABCMeta
def __init__(self, max_size=5000000, dir=None):
self._max_size = max_size
self._dir = dir
def _checkClosed(self, msg=None):
"""Raise a ValueError if file is closed"""
if self.closed:
raise ValueError('I/O operation on closed file.'
if msg is None else msg)
@abstractmethod
def read(self, n=-1):
"""Read n characters from the buffer"""
@abstractmethod
def write(self, s):
"""Write into the buffer"""
@abstractmethod
def seek(self, pos, mode=0):
"""Seek to a specific point in a file"""
@abstractmethod
def readline(self, length=None):
"""Returns the next available line"""
@abstractmethod
def readlines(self, sizehint=0):
"""Returns a list of all lines from the current position forward"""
def writelines(self, lines):
"""
Write lines to the file from an interable.
NOTE: writelines() does NOT add line separators.
"""
self._checkClosed()
for line in lines:
self.write(line)
@abstractmethod
def rollover(self):
"""Roll file-like-object over into a real temporary file"""
@abstractmethod
def tell(self):
"""Return the current position"""
@abstractproperty
def buffer(self):
"""Should return a flo instance"""
@abstractproperty
def _rolled(self):
"""Returns whether the file has been rolled to a real file or not"""
@abstractproperty
def len(self):
"""Returns the length of the data"""
def _get_softspace(self):
return self.buffer.softspace
def _set_softspace(self, val):
self.buffer.softspace = val
softspace = property(_get_softspace, _set_softspace)
@property
def _file(self):
return self.buffer
def close(self):
return self.buffer.close()
def flush(self):
self._checkClosed()
return self.buffer.flush()
def isatty(self):
self._checkClosed()
return self.buffer.isatty()
@property
def closed(self):
return self.buffer.closed
@property
def pos(self):
return self.tell()
@property
def buf(self):
return self.getvalue()
def fileno(self):
self.rollover()
return self.buffer.fileno()
def truncate(self, size=None):
"""
Truncate the contents of the buffer.
Custom version of truncate that takes either no arguments (like the
real SpooledTemporaryFile) or a single argument that truncates the
value to a certain index location.
"""
self._checkClosed()
if size is None:
return self.buffer.truncate()
if size < 0:
raise IOError(EINVAL, "Negative size not allowed")
# Emulate truncation to a particular location
pos = self.tell()
self.seek(size)
self.buffer.truncate()
if pos < size:
self.seek(pos)
def getvalue(self):
"""Return the entire files contents."""
self._checkClosed()
pos = self.tell()
self.seek(0)
val = self.read()
self.seek(pos)
return val
def seekable(self):
return True
def readable(self):
return True
def writable(self):
return True
def __next__(self):
self._checkClosed()
line = self.readline()
if not line:
pos = self.buffer.tell()
self.buffer.seek(0, os.SEEK_END)
if pos == self.buffer.tell():
raise StopIteration
else:
self.buffer.seek(pos)
return line
next = __next__
def __len__(self):
return self.len
def __iter__(self):
self._checkClosed()
return self
def __enter__(self):
self._checkClosed()
return self
def __exit__(self, *args):
self._file.close()
def __eq__(self, other):
if isinstance(other, self.__class__):
self_pos = self.tell()
other_pos = other.tell()
try:
self.seek(0)
other.seek(0)
eq = True
for self_line, other_line in zip_longest(self, other):
if self_line != other_line:
eq = False
break
self.seek(self_pos)
other.seek(other_pos)
except Exception:
# Attempt to return files to original position if there were any errors
try:
self.seek(self_pos)
except Exception:
pass
try:
other.seek(other_pos)
except Exception:
pass
raise
else:
return eq
return False
def __ne__(self, other):
return not self.__eq__(other)
def __bool__(self):
return True
def __del__(self):
"""Can fail when called at program exit so suppress traceback."""
try:
self.close()
except Exception:
pass
__nonzero__ = __bool__
class SpooledBytesIO(SpooledIOBase):
"""
SpooledBytesIO is a spooled file-like-object that only accepts bytes. On
Python 2.x this means the 'str' type; on Python 3.x this means the 'bytes'
type. Bytes are written in and retrieved exactly as given, but it will
raise TypeErrors if something other than bytes are written.
Example::
>>> from boltons import ioutils
>>> with ioutils.SpooledBytesIO() as f:
... f.write(b"Happy IO")
... _ = f.seek(0)
... isinstance(f.getvalue(), ioutils.binary_type)
True
"""
def read(self, n=-1):
self._checkClosed()
return self.buffer.read(n)
def write(self, s):
self._checkClosed()
if not isinstance(s, binary_type):
raise TypeError("{} expected, got {}".format(
binary_type.__name__,
type(s).__name__
))
if self.tell() + len(s) >= self._max_size:
self.rollover()
self.buffer.write(s)
def seek(self, pos, mode=0):
self._checkClosed()
return self.buffer.seek(pos, mode)
def readline(self, length=None):
self._checkClosed()
if length:
return self.buffer.readline(length)
else:
return self.buffer.readline()
def readlines(self, sizehint=0):
return self.buffer.readlines(sizehint)
def rollover(self):
"""Roll the StringIO over to a TempFile"""
if not self._rolled:
tmp = TemporaryFile(dir=self._dir)
pos = self.buffer.tell()
tmp.write(self.buffer.getvalue())
tmp.seek(pos)
self.buffer.close()
self._buffer = tmp
@property
def _rolled(self):
return not isinstance(self.buffer, BytesIO)
@property
def buffer(self):
try:
return self._buffer
except AttributeError:
self._buffer = BytesIO()
return self._buffer
@property
def len(self):
"""Determine the length of the file"""
pos = self.tell()
if self._rolled:
self.seek(0)
val = os.fstat(self.fileno()).st_size
else:
self.seek(0, os.SEEK_END)
val = self.tell()
self.seek(pos)
return val
def tell(self):
self._checkClosed()
return self.buffer.tell()
class SpooledStringIO(SpooledIOBase):
"""
SpooledStringIO is a spooled file-like-object that only accepts unicode
values. On Python 2.x this means the 'unicode' type and on Python 3.x this
means the 'str' type. Values are accepted as unicode and then coerced into
utf-8 encoded bytes for storage. On retrieval, the values are returned as
unicode.
Example::
>>> from boltons import ioutils
>>> with ioutils.SpooledStringIO() as f:
... f.write(u"\u2014 Hey, an emdash!")
... _ = f.seek(0)
... isinstance(f.read(), ioutils.text_type)
True
"""
def __init__(self, *args, **kwargs):
self._tell = 0
super(SpooledStringIO, self).__init__(*args, **kwargs)
def read(self, n=-1):
self._checkClosed()
ret = self.buffer.reader.read(n, n)
self._tell = self.tell() + len(ret)
return ret
def write(self, s):
self._checkClosed()
if not isinstance(s, text_type):
raise TypeError("{} expected, got {}".format(
text_type.__name__,
type(s).__name__
))
current_pos = self.tell()
if self.buffer.tell() + len(s.encode('utf-8')) >= self._max_size:
self.rollover()
self.buffer.write(s.encode('utf-8'))
self._tell = current_pos + len(s)
def _traverse_codepoints(self, current_position, n):
"""Traverse from current position to the right n codepoints"""
dest = current_position + n
while True:
if current_position == dest:
# By chance we've landed on the right position, break
break
# If the read would take us past the intended position then
# seek only enough to cover the offset
if current_position + READ_CHUNK_SIZE > dest:
self.read(dest - current_position)
break
else:
ret = self.read(READ_CHUNK_SIZE)
# Increment our current position
current_position += READ_CHUNK_SIZE
# If we kept reading but there was nothing here, break
# as we are at the end of the file
if not ret:
break
return dest
def seek(self, pos, mode=0):
"""Traverse from offset to the specified codepoint"""
self._checkClosed()
# Seek to position from the start of the file
if mode == os.SEEK_SET:
self.buffer.seek(0)
self._traverse_codepoints(0, pos)
self._tell = pos
# Seek to new position relative to current position
elif mode == os.SEEK_CUR:
start_pos = self.tell()
self._traverse_codepoints(self.tell(), pos)
self._tell = start_pos + pos
elif mode == os.SEEK_END:
self.buffer.seek(0)
dest_position = self.len - pos
self._traverse_codepoints(0, dest_position)
self._tell = dest_position
else:
raise ValueError(
"Invalid whence ({0}, should be 0, 1, or 2)".format(mode)
)
return self.tell()
def readline(self, length=None):
self._checkClosed()
ret = self.buffer.readline(length).decode('utf-8')
self._tell = self.tell() + len(ret)
return ret
def readlines(self, sizehint=0):
ret = [x.decode('utf-8') for x in self.buffer.readlines(sizehint)]
self._tell = self.tell() + sum((len(x) for x in ret))
return ret
@property
def buffer(self):
try:
return self._buffer
except AttributeError:
self._buffer = EncodedFile(BytesIO(), data_encoding='utf-8')
return self._buffer
@property
def _rolled(self):
return not isinstance(self.buffer.stream, BytesIO)
def rollover(self):
"""Roll the buffer over to a TempFile"""
if not self._rolled:
tmp = EncodedFile(TemporaryFile(dir=self._dir),
data_encoding='utf-8')
pos = self.buffer.tell()
tmp.write(self.buffer.getvalue())
tmp.seek(pos)
self.buffer.close()
self._buffer = tmp
def tell(self):
"""Return the codepoint position"""
self._checkClosed()
return self._tell
@property
def len(self):
"""Determine the number of codepoints in the file"""
pos = self.buffer.tell()
self.buffer.seek(0)
total = 0
while True:
ret = self.read(READ_CHUNK_SIZE)
if not ret:
break
total += len(ret)
self.buffer.seek(pos)
return total
def is_text_fileobj(fileobj):
if getattr(fileobj, 'encoding', False):
# codecs.open and io.TextIOBase
return True
if getattr(fileobj, 'getvalue', False):
# StringIO.StringIO / cStringIO.StringIO / io.StringIO
try:
if isinstance(fileobj.getvalue(), type(u'')):
return True
except Exception:
pass
return False
class MultiFileReader(object):
"""Takes a list of open files or file-like objects and provides an
interface to read from them all contiguously. Like
:func:`itertools.chain()`, but for reading files.
>>> mfr = MultiFileReader(BytesIO(b'ab'), BytesIO(b'cd'), BytesIO(b'e'))
>>> mfr.read(3).decode('ascii')
u'abc'
>>> mfr.read(3).decode('ascii')
u'de'
The constructor takes as many fileobjs as you hand it, and will
raise a TypeError on non-file-like objects. A ValueError is raised
when file-like objects are a mix of bytes- and text-handling
objects (for instance, BytesIO and StringIO).
"""
def __init__(self, *fileobjs):
if not all([callable(getattr(f, 'read', None)) and
callable(getattr(f, 'seek', None)) for f in fileobjs]):
raise TypeError('MultiFileReader expected file-like objects'
' with .read() and .seek()')
if all([is_text_fileobj(f) for f in fileobjs]):
# codecs.open and io.TextIOBase
self._joiner = u''
elif any([is_text_fileobj(f) for f in fileobjs]):
raise ValueError('All arguments to MultiFileReader must handle'
' bytes OR text, not a mix')
else:
# open/file and io.BytesIO
self._joiner = b''
self._fileobjs = fileobjs
self._index = 0
def read(self, amt=None):
"""Read up to the specified *amt*, seamlessly bridging across
files. Returns the appropriate type of string (bytes or text)
for the input, and returns an empty string when the files are
exhausted.
"""
if not amt:
return self._joiner.join(f.read() for f in self._fileobjs)
parts = []
while amt > 0 and self._index < len(self._fileobjs):
parts.append(self._fileobjs[self._index].read(amt))
got = len(parts[-1])
if got < amt:
self._index += 1
amt -= got
return self._joiner.join(parts)
def seek(self, offset, whence=os.SEEK_SET):
"""Enables setting position of the file cursor to a given
*offset*. Currently only supports ``offset=0``.
"""
if whence != os.SEEK_SET:
raise NotImplementedError(
'MultiFileReader.seek() only supports os.SEEK_SET')
if offset != 0:
raise NotImplementedError(
'MultiFileReader only supports seeking to start at this time')
for f in self._fileobjs:
f.seek(0)
|