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 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
|
import sys
from pypy.interpreter.baseobjspace import W_Root, BufferInterfaceNotFound
from pypy.interpreter.error import OperationError, oefmt
from pypy.interpreter.gateway import WrappedDefault, interp2app, unwrap_spec
from pypy.interpreter.typedef import (
GetSetProperty, TypeDef, generic_new_descr, interp_attrproperty,
interp_attrproperty_w)
from pypy.module._codecs import interp_codecs
from pypy.module._io.interp_iobase import W_IOBase, convert_size, trap_eintr
from rpython.rlib.rarithmetic import intmask, r_uint, r_ulonglong
from rpython.rlib.rbigint import rbigint
from rpython.rlib.rstring import UnicodeBuilder
STATE_ZERO, STATE_OK, STATE_DETACHED = range(3)
SEEN_CR = 1
SEEN_LF = 2
SEEN_CRLF = 4
SEEN_ALL = SEEN_CR | SEEN_LF | SEEN_CRLF
_WINDOWS = sys.platform == 'win32'
class W_IncrementalNewlineDecoder(W_Root):
seennl = 0
pendingcr = False
w_decoder = None
def __init__(self, space):
self.w_newlines_dict = {
SEEN_CR: space.newunicode(u"\r"),
SEEN_LF: space.newunicode(u"\n"),
SEEN_CRLF: space.newunicode(u"\r\n"),
SEEN_CR | SEEN_LF: space.newtuple(
[space.newunicode(u"\r"), space.newunicode(u"\n")]),
SEEN_CR | SEEN_CRLF: space.newtuple(
[space.newunicode(u"\r"), space.newunicode(u"\r\n")]),
SEEN_LF | SEEN_CRLF: space.newtuple(
[space.newunicode(u"\n"), space.newunicode(u"\r\n")]),
SEEN_CR | SEEN_LF | SEEN_CRLF: space.newtuple(
[space.newunicode(u"\r"), space.newunicode(u"\n"), space.newunicode(u"\r\n")]),
}
@unwrap_spec(translate=int)
def descr_init(self, space, w_decoder, translate, w_errors=None):
self.w_decoder = w_decoder
self.translate = translate
if space.is_none(w_errors):
self.w_errors = space.newtext("strict")
else:
self.w_errors = w_errors
self.seennl = 0
def newlines_get_w(self, space):
return self.w_newlines_dict.get(self.seennl, space.w_None)
@unwrap_spec(final=int)
def decode_w(self, space, w_input, final=False):
if self.w_decoder is None:
raise oefmt(space.w_ValueError,
"IncrementalNewlineDecoder.__init__ not called")
# decode input (with the eventual \r from a previous pass)
if not space.is_w(self.w_decoder, space.w_None):
w_output = space.call_method(self.w_decoder, "decode",
w_input, space.newbool(bool(final)))
else:
w_output = w_input
if not space.isinstance_w(w_output, space.w_unicode):
raise oefmt(space.w_TypeError,
"decoder should return a string result")
output = space.unicode_w(w_output)
output_len = len(output)
if self.pendingcr and (final or output_len):
output = u'\r' + output
self.pendingcr = False
output_len += 1
# retain last \r even when not translating data:
# then readline() is sure to get \r\n in one pass
if not final and output_len > 0:
last = output_len - 1
assert last >= 0
if output[last] == u'\r':
output = output[:last]
self.pendingcr = True
output_len -= 1
if output_len == 0:
return space.newunicode(u"")
# Record which newlines are read and do newline translation if
# desired, all in one pass.
seennl = self.seennl
# If, up to now, newlines are consistently \n, do a quick check
# for the \r
only_lf = False
if seennl == SEEN_LF or seennl == 0:
only_lf = (output.find(u'\r') < 0)
if only_lf:
# If not already seen, quick scan for a possible "\n" character.
# (there's nothing else to be done, even when in translation mode)
if seennl == 0 and output.find(u'\n') >= 0:
seennl |= SEEN_LF
# Finished: we have scanned for newlines, and none of them
# need translating.
elif not self.translate:
i = 0
while i < output_len:
if seennl == SEEN_ALL:
break
c = output[i]
i += 1
if c == u'\n':
seennl |= SEEN_LF
elif c == u'\r':
if i < output_len and output[i] == u'\n':
seennl |= SEEN_CRLF
i += 1
else:
seennl |= SEEN_CR
elif output.find(u'\r') >= 0:
# Translate!
builder = UnicodeBuilder(output_len)
i = 0
while i < output_len:
c = output[i]
i += 1
if c == u'\n':
seennl |= SEEN_LF
elif c == u'\r':
if i < output_len and output[i] == u'\n':
seennl |= SEEN_CRLF
i += 1
else:
seennl |= SEEN_CR
builder.append(u'\n')
continue
builder.append(c)
output = builder.build()
self.seennl |= seennl
return space.newunicode(output)
def reset_w(self, space):
self.seennl = 0
self.pendingcr = False
if self.w_decoder and not space.is_w(self.w_decoder, space.w_None):
space.call_method(self.w_decoder, "reset")
def getstate_w(self, space):
if self.w_decoder and not space.is_w(self.w_decoder, space.w_None):
w_state = space.call_method(self.w_decoder, "getstate")
w_buffer, w_flag = space.unpackiterable(w_state, 2)
flag = space.r_longlong_w(w_flag)
else:
w_buffer = space.newbytes("")
flag = 0
flag <<= 1
if self.pendingcr:
flag |= 1
return space.newtuple([w_buffer, space.newint(flag)])
def setstate_w(self, space, w_state):
w_buffer, w_flag = space.unpackiterable(w_state, 2)
flag = space.r_longlong_w(w_flag)
self.pendingcr = bool(flag & 1)
flag >>= 1
if self.w_decoder and not space.is_w(self.w_decoder, space.w_None):
w_state = space.newtuple([w_buffer, space.newint(flag)])
space.call_method(self.w_decoder, "setstate", w_state)
W_IncrementalNewlineDecoder.typedef = TypeDef(
'_io.IncrementalNewlineDecoder',
__new__ = generic_new_descr(W_IncrementalNewlineDecoder),
__init__ = interp2app(W_IncrementalNewlineDecoder.descr_init),
decode = interp2app(W_IncrementalNewlineDecoder.decode_w),
reset = interp2app(W_IncrementalNewlineDecoder.reset_w),
getstate = interp2app(W_IncrementalNewlineDecoder.getstate_w),
setstate = interp2app(W_IncrementalNewlineDecoder.setstate_w),
newlines = GetSetProperty(W_IncrementalNewlineDecoder.newlines_get_w),
)
class W_TextIOBase(W_IOBase):
w_encoding = None
def __init__(self, space):
W_IOBase.__init__(self, space)
def read_w(self, space, w_size=None):
self._unsupportedoperation(space, "read")
def readline_w(self, space, w_limit=None):
self._unsupportedoperation(space, "readline")
def write_w(self, space, w_data):
self._unsupportedoperation(space, "write")
def detach_w(self, space):
self._unsupportedoperation(space, "detach")
def errors_get_w(self, space):
return space.w_None
def newlines_get_w(self, space):
return space.w_None
W_TextIOBase.typedef = TypeDef(
'_io._TextIOBase', W_IOBase.typedef,
__new__ = generic_new_descr(W_TextIOBase),
read = interp2app(W_TextIOBase.read_w),
readline = interp2app(W_TextIOBase.readline_w),
write = interp2app(W_TextIOBase.write_w),
detach = interp2app(W_TextIOBase.detach_w),
encoding = interp_attrproperty_w("w_encoding", W_TextIOBase),
newlines = GetSetProperty(W_TextIOBase.newlines_get_w),
errors = GetSetProperty(W_TextIOBase.errors_get_w),
)
def _determine_encoding(space, encoding, w_buffer):
if encoding is not None:
return space.newtext(encoding)
# Try os.device_encoding(fileno)
try:
w_fileno = space.call_method(w_buffer, 'fileno')
except OperationError as e:
from pypy.module._io.interp_io import Cache
if not (e.match(space, space.w_AttributeError) or
e.match(space, space.fromcache(Cache).w_unsupportedoperation)):
raise
else:
w_os = space.call_method(space.builtin, '__import__', space.newtext('os'))
w_encoding = space.call_method(w_os, 'device_encoding', w_fileno)
if space.isinstance_w(w_encoding, space.w_unicode):
return w_encoding
try:
w_locale = space.call_method(space.builtin, '__import__',
space.newtext('_bootlocale'))
w_encoding = space.call_method(w_locale, 'getpreferredencoding',
space.w_False)
except OperationError as e:
# getpreferredencoding() may also raise ImportError
if not e.match(space, space.w_ImportError):
raise
return space.newtext('ascii')
else:
if space.isinstance_w(w_encoding, space.w_text):
return w_encoding
raise oefmt(space.w_IOError, "could not determine default encoding")
class PositionCookie(object):
def __init__(self, bigint):
self.start_pos = bigint.ulonglongmask()
bigint = bigint.rshift(r_ulonglong.BITS)
x = intmask(bigint.uintmask())
assert x >= 0
self.dec_flags = x
bigint = bigint.rshift(r_uint.BITS)
x = intmask(bigint.uintmask())
assert x >= 0
self.bytes_to_feed = x
bigint = bigint.rshift(r_uint.BITS)
x = intmask(bigint.uintmask())
assert x >= 0
self.chars_to_skip = x
bigint = bigint.rshift(r_uint.BITS)
self.need_eof = bigint.tobool()
def pack(self):
# The meaning of a tell() cookie is: seek to position, set the
# decoder flags to dec_flags, read bytes_to_feed bytes, feed them
# into the decoder with need_eof as the EOF flag, then skip
# chars_to_skip characters of the decoded result. For most simple
# decoders, tell() will often just give a byte offset in the file.
rb = rbigint.fromrarith_int
res = rb(self.start_pos)
bits = r_ulonglong.BITS
res = res.or_(rb(r_uint(self.dec_flags)).lshift(bits))
bits += r_uint.BITS
res = res.or_(rb(r_uint(self.bytes_to_feed)).lshift(bits))
bits += r_uint.BITS
res = res.or_(rb(r_uint(self.chars_to_skip)).lshift(bits))
bits += r_uint.BITS
return res.or_(rb(r_uint(self.need_eof)).lshift(bits))
class PositionSnapshot:
def __init__(self, flags, input):
self.flags = flags
self.input = input
class DecodeBuffer(object):
def __init__(self, text=None):
self.text = text
self.pos = 0
def set(self, space, w_decoded):
check_decoded(space, w_decoded)
self.text = space.unicode_w(w_decoded)
self.pos = 0
def reset(self):
self.text = None
self.pos = 0
def get_chars(self, size):
if self.text is None:
return u""
available = len(self.text) - self.pos
if size < 0 or size > available:
size = available
assert size >= 0
if self.pos > 0 or size < available:
start = self.pos
end = self.pos + size
assert start >= 0
assert end >= 0
chars = self.text[start:end]
else:
chars = self.text
self.pos += size
return chars
def has_data(self):
return (self.text is not None and not self.exhausted())
def exhausted(self):
return self.pos >= len(self.text)
def next_char(self):
if self.exhausted():
raise StopIteration
ch = self.text[self.pos]
self.pos += 1
return ch
def peek_char(self):
# like next_char, but doesn't advance pos
if self.exhausted():
raise StopIteration
ch = self.text[self.pos]
return ch
def find_newline_universal(self, limit):
# Universal newline search. Find any of \r, \r\n, \n
# The decoder ensures that \r\n are not split in two pieces
if limit < 0:
limit = sys.maxint
scanned = 0
while scanned < limit:
try:
ch = self.next_char()
scanned += 1
except StopIteration:
return False
if ch == u'\n':
return True
if ch == u'\r':
if scanned >= limit:
return False
try:
ch = self.peek_char()
except StopIteration:
return False
if ch == u'\n':
self.next_char()
return True
else:
return True
return False
def find_crlf(self, limit):
if limit < 0:
limit = sys.maxint
scanned = 0
while scanned < limit:
try:
ch = self.next_char()
except StopIteration:
return False
scanned += 1
if ch == u'\r':
if scanned >= limit:
return False
try:
if self.peek_char() == u'\n':
self.next_char()
return True
except StopIteration:
# This is the tricky case: we found a \r right at the end
self.pos -= 1
return False
return False
def find_char(self, marker, limit):
if limit < 0:
limit = sys.maxint
scanned = 0
while scanned < limit:
try:
ch = self.next_char()
except StopIteration:
return False
if ch == marker:
return True
scanned += 1
return False
def check_decoded(space, w_decoded):
if not space.isinstance_w(w_decoded, space.w_unicode):
msg = "decoder should return a string result, not '%T'"
raise oefmt(space.w_TypeError, msg, w_decoded)
return w_decoded
class W_TextIOWrapper(W_TextIOBase):
def __init__(self, space):
W_TextIOBase.__init__(self, space)
self.state = STATE_ZERO
self.w_encoder = None
self.w_decoder = None
self.decoded = DecodeBuffer()
self.pending_bytes = None # list of bytes objects waiting to be
# written, or NULL
self.chunk_size = 8192
self.readuniversal = False
self.readtranslate = False
self.readnl = None
self.encodefunc = None # Specialized encoding func (see below)
self.encoding_start_of_stream = False # Whether or not it's the start
# of the stream
self.snapshot = None
@unwrap_spec(encoding="text_or_none", line_buffering=int, write_through=int)
def descr_init(self, space, w_buffer, encoding=None,
w_errors=None, w_newline=None, line_buffering=0,
write_through=0):
self.state = STATE_ZERO
self.w_buffer = w_buffer
self.w_encoding = _determine_encoding(space, encoding, w_buffer)
if space.is_none(w_errors):
w_errors = space.newtext("strict")
self.w_errors = w_errors
if space.is_none(w_newline):
newline = None
else:
newline = space.unicode_w(w_newline)
if newline and newline not in (u'\n', u'\r\n', u'\r'):
raise oefmt(space.w_ValueError,
"illegal newline value: %R", w_newline)
self.line_buffering = line_buffering
self.write_through = write_through
self.readuniversal = not newline # null or empty
self.readtranslate = newline is None
self.readnl = newline
self.writetranslate = (newline != u'')
if not self.readuniversal:
self.writenl = self.readnl
if self.writenl == u'\n':
self.writenl = None
elif _WINDOWS:
self.writenl = u"\r\n"
else:
self.writenl = None
w_codec = interp_codecs.lookup_codec(space,
space.text_w(self.w_encoding))
if not space.is_true(space.getattr(w_codec,
space.newtext('_is_text_encoding'))):
msg = ("%R is not a text encoding; "
"use codecs.open() to handle arbitrary codecs")
raise oefmt(space.w_LookupError, msg, self.w_encoding)
# build the decoder object
if space.is_true(space.call_method(w_buffer, "readable")):
self.w_decoder = space.call_method(w_codec,
"incrementaldecoder", w_errors)
if self.readuniversal:
self.w_decoder = space.call_function(
space.gettypeobject(W_IncrementalNewlineDecoder.typedef),
self.w_decoder, space.newbool(self.readtranslate))
# build the encoder object
if space.is_true(space.call_method(w_buffer, "writable")):
self.w_encoder = space.call_method(w_codec,
"incrementalencoder", w_errors)
self.seekable = space.is_true(space.call_method(w_buffer, "seekable"))
self.telling = self.seekable
self.has_read1 = space.findattr(w_buffer, space.newtext("read1"))
self.encoding_start_of_stream = False
if self.seekable and self.w_encoder:
self.encoding_start_of_stream = True
w_cookie = space.call_method(self.w_buffer, "tell")
if not space.eq_w(w_cookie, space.newint(0)):
self.encoding_start_of_stream = False
space.call_method(self.w_encoder, "setstate", space.newint(0))
self.state = STATE_OK
def _check_init(self, space):
if self.state == STATE_ZERO:
raise oefmt(space.w_ValueError,
"I/O operation on uninitialized object")
def _check_attached(self, space):
if self.state == STATE_DETACHED:
raise oefmt(space.w_ValueError,
"underlying buffer has been detached")
self._check_init(space)
def _check_closed(self, space, message=None):
self._check_init(space)
W_TextIOBase._check_closed(self, space, message)
def __w_attr_repr(self, space, name):
w_attr = space.findattr(self, space.newtext(name))
if w_attr is None:
return space.newtext("")
return space.mod(space.newtext("%s=%%r " % name), w_attr)
def descr_repr(self, space):
self._check_init(space)
w_args = space.newtuple([self.__w_attr_repr(space, 'name'),
self.__w_attr_repr(space, 'mode'),
self.w_encoding])
return space.mod(
space.newtext("<_io.TextIOWrapper %s%sencoding=%r>"), w_args
)
def readable_w(self, space):
self._check_attached(space)
return space.call_method(self.w_buffer, "readable")
def writable_w(self, space):
self._check_attached(space)
return space.call_method(self.w_buffer, "writable")
def seekable_w(self, space):
self._check_attached(space)
return space.call_method(self.w_buffer, "seekable")
def isatty_w(self, space):
self._check_attached(space)
return space.call_method(self.w_buffer, "isatty")
def fileno_w(self, space):
self._check_attached(space)
return space.call_method(self.w_buffer, "fileno")
def closed_get_w(self, space):
self._check_attached(space)
return space.getattr(self.w_buffer, space.newtext("closed"))
def newlines_get_w(self, space):
self._check_attached(space)
if self.w_decoder is None:
return space.w_None
return space.findattr(self.w_decoder, space.newtext("newlines"))
def name_get_w(self, space):
self._check_attached(space)
return space.getattr(self.w_buffer, space.newtext("name"))
def flush_w(self, space):
self._check_attached(space)
self._check_closed(space)
self.telling = self.seekable
self._writeflush(space)
space.call_method(self.w_buffer, "flush")
@unwrap_spec(w_pos = WrappedDefault(None))
def truncate_w(self, space, w_pos=None):
self._check_attached(space)
space.call_method(self, "flush")
return space.call_method(self.w_buffer, "truncate", w_pos)
def close_w(self, space):
self._check_attached(space)
if space.is_true(space.getattr(self.w_buffer,
space.newtext("closed"))):
return
try:
space.call_method(self, "flush")
except OperationError as e:
try:
ret = space.call_method(self.w_buffer, "close")
except OperationError as e2:
e2.chain_exceptions(space, e)
raise
else:
ret = space.call_method(self.w_buffer, "close")
return ret
def _dealloc_warn_w(self, space, w_source):
space.call_method(self.w_buffer, "_dealloc_warn", w_source)
# _____________________________________________________________
# read methods
def _read_chunk(self, space):
"""Read and decode the next chunk of data from the BufferedReader.
The return value is True unless EOF was reached. The decoded string
is placed in self.decoded (replacing its previous value).
The entire input chunk is sent to the decoder, though some of it may
remain buffered in the decoder, yet to be converted."""
if not self.w_decoder:
self._unsupportedoperation(space, "not readable")
if self.telling:
# To prepare for tell(), we need to snapshot a point in the file
# where the decoder's input buffer is empty.
w_state = space.call_method(self.w_decoder, "getstate")
# Given this, we know there was a valid snapshot point
# len(dec_buffer) bytes ago with decoder state (b'', dec_flags).
w_dec_buffer, w_dec_flags = space.unpackiterable(w_state, 2)
if not space.isinstance_w(w_dec_buffer, space.w_bytes):
msg = "decoder getstate() should have returned a bytes " \
"object not '%T'"
raise oefmt(space.w_TypeError, msg, w_dec_buffer)
dec_buffer = space.bytes_w(w_dec_buffer)
dec_flags = space.int_w(w_dec_flags)
else:
dec_buffer = None
dec_flags = 0
# Read a chunk, decode it, and put the result in self.decoded
func_name = "read1" if self.has_read1 else "read"
w_input = space.call_method(self.w_buffer, func_name,
space.newint(self.chunk_size))
try:
input_buf = w_input.buffer_w(space, space.BUF_SIMPLE)
except BufferInterfaceNotFound:
msg = ("underlying %s() should have returned a bytes-like "
"object, not '%T'")
raise oefmt(space.w_TypeError, msg, func_name, w_input)
eof = input_buf.getlength() == 0
w_decoded = space.call_method(self.w_decoder, "decode",
w_input, space.newbool(eof))
self.decoded.set(space, w_decoded)
if space.len_w(w_decoded) > 0:
eof = False
if self.telling:
# At the snapshot point, len(dec_buffer) bytes before the read,
# the next input to be decoded is dec_buffer + input_chunk.
next_input = dec_buffer + input_buf.as_str()
self.snapshot = PositionSnapshot(dec_flags, next_input)
return not eof
def _ensure_data(self, space):
while not self.decoded.has_data():
try:
if not self._read_chunk(space):
self.decoded.reset()
self.snapshot = None
return False
except OperationError as e:
if trap_eintr(space, e):
continue
raise
return True
def next_w(self, space):
self._check_attached(space)
self.telling = False
try:
return W_TextIOBase.next_w(self, space)
except OperationError as e:
if e.match(space, space.w_StopIteration):
self.telling = self.seekable
raise
def read_w(self, space, w_size=None):
self._check_attached(space)
self._check_closed(space)
if not self.w_decoder:
self._unsupportedoperation(space, "not readable")
size = convert_size(space, w_size)
self._writeflush(space)
if size < 0:
return self._read_all(space)
else:
return self._read(space, size)
def _read_all(self, space):
w_bytes = space.call_method(self.w_buffer, "read")
w_decoded = space.call_method(self.w_decoder, "decode", w_bytes, space.w_True)
check_decoded(space, w_decoded)
w_result = space.newunicode(self.decoded.get_chars(-1))
w_final = space.add(w_result, w_decoded)
self.snapshot = None
return w_final
def _read(self, space, size):
remaining = size
builder = UnicodeBuilder(size)
# Keep reading chunks until we have n characters to return
while remaining > 0:
if not self._ensure_data(space):
break
data = self.decoded.get_chars(remaining)
builder.append(data)
remaining -= len(data)
return space.newunicode(builder.build())
def _scan_line_ending(self, limit):
if self.readuniversal:
return self.decoded.find_newline_universal(limit)
else:
if self.readtranslate:
# Newlines are already translated, only search for \n
newline = u'\n'
else:
# Non-universal mode.
newline = self.readnl
if newline == u'\r\n':
return self.decoded.find_crlf(limit)
else:
return self.decoded.find_char(newline[0], limit)
def readline_w(self, space, w_limit=None):
self._check_attached(space)
self._check_closed(space)
self._writeflush(space)
limit = convert_size(space, w_limit)
return space.newunicode(self._readline(space, limit))
def _readline(self, space, limit):
# This is a separate function so that readline_w() can be jitted.
remnant = None
builder = UnicodeBuilder()
while True:
# First, get some data if necessary
has_data = self._ensure_data(space)
if not has_data:
# end of file
if remnant:
builder.append(remnant)
break
if remnant:
assert not self.readtranslate and self.readnl == u'\r\n'
assert self.decoded.pos == 0
if remnant == u'\r' and self.decoded.text[0] == u'\n':
builder.append(u'\r\n')
self.decoded.pos = 1
remnant = None
break
else:
builder.append(remnant)
remnant = None
continue
if limit >= 0:
remaining = limit - builder.getlength()
assert remaining >= 0
else:
remaining = -1
start = self.decoded.pos
assert start >= 0
found = self._scan_line_ending(remaining)
end_scan = self.decoded.pos
if end_scan > start:
s = self.decoded.text[start:end_scan]
builder.append(s)
if found or (limit >= 0 and builder.getlength() >= limit):
break
# There may be some remaining chars we'll have to prepend to the
# next chunk of data
if not self.decoded.exhausted():
remnant = self.decoded.get_chars(-1)
# We have consumed the buffer
self.decoded.reset()
return builder.build()
# _____________________________________________________________
# write methods
def write_w(self, space, w_text):
self._check_attached(space)
self._check_closed(space)
if not self.w_encoder:
self._unsupportedoperation(space, "not writable")
if not space.isinstance_w(w_text, space.w_unicode):
raise oefmt(space.w_TypeError,
"unicode argument expected, got '%T'", w_text)
text = space.unicode_w(w_text)
textlen = len(text)
haslf = False
if (self.writetranslate and self.writenl) or self.line_buffering:
if text.find(u'\n') >= 0:
haslf = True
if haslf and self.writetranslate and self.writenl:
w_text = space.call_method(w_text, "replace", space.newunicode(u'\n'),
space.newunicode(self.writenl))
text = space.unicode_w(w_text)
needflush = False
text_needflush = False
if self.write_through:
text_needflush = True
if self.line_buffering and (haslf or text.find(u'\r') >= 0):
needflush = True
# XXX What if we were just reading?
if self.encodefunc:
w_bytes = self.encodefunc(space, w_text, self.errors)
self.encoding_start_of_stream = False
else:
w_bytes = space.call_method(self.w_encoder, "encode", w_text)
b = space.bytes_w(w_bytes)
if not self.pending_bytes:
self.pending_bytes = []
self.pending_bytes_count = 0
self.pending_bytes.append(b)
self.pending_bytes_count += len(b)
if (self.pending_bytes_count > self.chunk_size or
needflush or text_needflush):
self._writeflush(space)
if needflush:
space.call_method(self.w_buffer, "flush")
self.snapshot = None
if self.w_decoder:
space.call_method(self.w_decoder, "reset")
return space.newint(textlen)
def _writeflush(self, space):
if not self.pending_bytes:
return
pending_bytes = ''.join(self.pending_bytes)
self.pending_bytes = None
self.pending_bytes_count = 0
while True:
try:
space.call_method(self.w_buffer, "write",
space.newbytes(pending_bytes))
except OperationError as e:
if trap_eintr(space, e):
continue
raise
else:
break
def detach_w(self, space):
self._check_attached(space)
space.call_method(self, "flush")
w_buffer = self.w_buffer
self.w_buffer = None
self.state = STATE_DETACHED
return w_buffer
# _____________________________________________________________
# seek/tell
def _decoder_setstate(self, space, cookie):
# When seeking to the start of the stream, we call decoder.reset()
# rather than decoder.getstate().
# This is for a few decoders such as utf-16 for which the state value
# at start is not (b"", 0) but e.g. (b"", 2) (meaning, in the case of
# utf-16, that we are expecting a BOM).
if cookie.start_pos == 0 and cookie.dec_flags == 0:
space.call_method(self.w_decoder, "reset")
else:
space.call_method(self.w_decoder, "setstate",
space.newtuple([space.newbytes(""),
space.newint(cookie.dec_flags)]))
def _encoder_reset(self, space, start_of_stream):
if start_of_stream:
space.call_method(self.w_encoder, "reset")
self.encoding_start_of_stream = True
else:
space.call_method(self.w_encoder, "setstate", space.newint(0))
self.encoding_start_of_stream = False
def _encoder_setstate(self, space, cookie):
self._encoder_reset(space,
cookie.start_pos == 0 and cookie.dec_flags == 0)
@unwrap_spec(whence=int)
def seek_w(self, space, w_pos, whence=0):
self._check_attached(space)
if not self.seekable:
self._unsupportedoperation(space,
"underlying stream is not seekable")
if whence == 1:
# seek relative to current position
if not space.eq_w(w_pos, space.newint(0)):
self._unsupportedoperation(
space, "can't do nonzero cur-relative seeks")
# Seeking to the current position should attempt to sync the
# underlying buffer with the current position.
w_pos = space.call_method(self, "tell")
elif whence == 2:
# seek relative to end of file
if not space.eq_w(w_pos, space.newint(0)):
self._unsupportedoperation(
space, "can't do nonzero end-relative seeks")
space.call_method(self, "flush")
self.decoded.reset()
self.snapshot = None
if self.w_decoder:
space.call_method(self.w_decoder, "reset")
w_res = space.call_method(self.w_buffer, "seek",
w_pos, space.newint(whence))
if self.w_encoder:
# If seek() == 0, we are at the start of stream
start_of_stream = space.eq_w(w_res, space.newint(0))
self._encoder_reset(space, start_of_stream)
return w_res
elif whence != 0:
raise oefmt(space.w_ValueError,
"invalid whence (%d, should be 0, 1 or 2)",
whence)
if space.is_true(space.lt(w_pos, space.newint(0))):
raise oefmt(space.w_ValueError,
"negative seek position %R", w_pos)
space.call_method(self, "flush")
# The strategy of seek() is to go back to the safe start point and
# replay the effect of read(chars_to_skip) from there.
cookie = PositionCookie(space.bigint_w(w_pos))
# Seek back to the safe start point
space.call_method(self.w_buffer, "seek", space.newint(cookie.start_pos))
self.decoded.reset()
self.snapshot = None
# Restore the decoder to its state from the safe start point.
if self.w_decoder:
self._decoder_setstate(space, cookie)
if cookie.chars_to_skip:
# Just like _read_chunk, feed the decoder and save a snapshot.
w_chunk = space.call_method(self.w_buffer, "read",
space.newint(cookie.bytes_to_feed))
if not space.isinstance_w(w_chunk, space.w_bytes):
msg = "underlying read() should have returned " \
"a bytes object, not '%T'"
raise oefmt(space.w_TypeError, msg, w_chunk)
self.snapshot = PositionSnapshot(cookie.dec_flags,
space.bytes_w(w_chunk))
w_decoded = space.call_method(self.w_decoder, "decode",
w_chunk, space.newbool(bool(cookie.need_eof)))
w_decoded = check_decoded(space, w_decoded)
# Skip chars_to_skip of the decoded characters
if space.len_w(w_decoded) < cookie.chars_to_skip:
raise oefmt(space.w_IOError,
"can't restore logical file position")
self.decoded.set(space, w_decoded)
self.decoded.pos = cookie.chars_to_skip
else:
self.snapshot = PositionSnapshot(cookie.dec_flags, "")
# Finally, reset the encoder (merely useful for proper BOM handling)
if self.w_encoder:
self._encoder_setstate(space, cookie)
return w_pos
def tell_w(self, space):
self._check_closed(space)
if not self.seekable:
self._unsupportedoperation(space,
"underlying stream is not seekable")
if not self.telling:
raise oefmt(space.w_IOError,
"telling position disabled by next() call")
self._writeflush(space)
space.call_method(self, "flush")
w_pos = space.call_method(self.w_buffer, "tell")
if self.w_decoder is None or self.snapshot is None:
assert not self.decoded.text
return w_pos
cookie = PositionCookie(space.bigint_w(w_pos))
# Skip backward to the snapshot point (see _read_chunk)
cookie.dec_flags = self.snapshot.flags
input = self.snapshot.input
cookie.start_pos -= len(input)
# How many decoded characters have been used up since the snapshot?
if not self.decoded.pos:
# We haven't moved from the snapshot point.
return space.newlong_from_rbigint(cookie.pack())
chars_to_skip = self.decoded.pos
# Starting from the snapshot position, we will walk the decoder
# forward until it gives us enough decoded characters.
w_saved_state = space.call_method(self.w_decoder, "getstate")
try:
# Note our initial start point
self._decoder_setstate(space, cookie)
# Feed the decoder one byte at a time. As we go, note the nearest
# "safe start point" before the current location (a point where
# the decoder has nothing buffered, so seek() can safely start
# from there and advance to this location).
chars_decoded = 0
i = 0
while i < len(input):
w_decoded = space.call_method(self.w_decoder, "decode",
space.newbytes(input[i]))
check_decoded(space, w_decoded)
chars_decoded += space.len_w(w_decoded)
cookie.bytes_to_feed += 1
w_state = space.call_method(self.w_decoder, "getstate")
w_dec_buffer, w_flags = space.unpackiterable(w_state, 2)
dec_buffer_len = space.len_w(w_dec_buffer)
if dec_buffer_len == 0 and chars_decoded <= chars_to_skip:
# Decoder buffer is empty, so this is a safe start point.
cookie.start_pos += cookie.bytes_to_feed
chars_to_skip -= chars_decoded
assert chars_to_skip >= 0
cookie.dec_flags = space.int_w(w_flags)
cookie.bytes_to_feed = 0
chars_decoded = 0
if chars_decoded >= chars_to_skip:
break
i += 1
else:
# We didn't get enough decoded data; signal EOF to get more.
w_decoded = space.call_method(self.w_decoder, "decode",
space.newbytes(""),
space.newint(1)) # final=1
check_decoded(space, w_decoded)
chars_decoded += space.len_w(w_decoded)
cookie.need_eof = 1
if chars_decoded < chars_to_skip:
raise oefmt(space.w_IOError,
"can't reconstruct logical file position")
finally:
space.call_method(self.w_decoder, "setstate", w_saved_state)
# The returned cookie corresponds to the last safe start point.
cookie.chars_to_skip = chars_to_skip
return space.newlong_from_rbigint(cookie.pack())
def chunk_size_get_w(self, space):
self._check_attached(space)
return space.newint(self.chunk_size)
def chunk_size_set_w(self, space, w_size):
self._check_attached(space)
size = space.int_w(w_size)
if size <= 0:
raise oefmt(space.w_ValueError,
"a strictly positive integer is required")
self.chunk_size = size
W_TextIOWrapper.typedef = TypeDef(
'_io.TextIOWrapper', W_TextIOBase.typedef,
__new__ = generic_new_descr(W_TextIOWrapper),
__init__ = interp2app(W_TextIOWrapper.descr_init),
__repr__ = interp2app(W_TextIOWrapper.descr_repr),
__next__ = interp2app(W_TextIOWrapper.next_w),
__getstate__ = interp2app(W_TextIOWrapper.getstate_w),
read = interp2app(W_TextIOWrapper.read_w),
readline = interp2app(W_TextIOWrapper.readline_w),
write = interp2app(W_TextIOWrapper.write_w),
seek = interp2app(W_TextIOWrapper.seek_w),
tell = interp2app(W_TextIOWrapper.tell_w),
detach = interp2app(W_TextIOWrapper.detach_w),
flush = interp2app(W_TextIOWrapper.flush_w),
truncate = interp2app(W_TextIOWrapper.truncate_w),
close = interp2app(W_TextIOWrapper.close_w),
line_buffering = interp_attrproperty("line_buffering", W_TextIOWrapper,
wrapfn="newint"),
readable = interp2app(W_TextIOWrapper.readable_w),
writable = interp2app(W_TextIOWrapper.writable_w),
seekable = interp2app(W_TextIOWrapper.seekable_w),
isatty = interp2app(W_TextIOWrapper.isatty_w),
fileno = interp2app(W_TextIOWrapper.fileno_w),
_dealloc_warn = interp2app(W_TextIOWrapper._dealloc_warn_w),
name = GetSetProperty(W_TextIOWrapper.name_get_w),
buffer = interp_attrproperty_w("w_buffer", cls=W_TextIOWrapper),
closed = GetSetProperty(W_TextIOWrapper.closed_get_w),
errors = interp_attrproperty_w("w_errors", cls=W_TextIOWrapper),
newlines = GetSetProperty(W_TextIOWrapper.newlines_get_w),
_CHUNK_SIZE = GetSetProperty(
W_TextIOWrapper.chunk_size_get_w, W_TextIOWrapper.chunk_size_set_w
),
)
|