Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e05565ec
Kaydet (Commit)
e05565ec
authored
Agu 20, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12213: Fix a buffering bug with interleaved reads and writes that
could appear on BufferedRandom streams.
üst
a370fcf3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
61 deletions
+103
-61
test_io.py
Lib/test/test_io.py
+42
-2
NEWS
Misc/NEWS
+3
-0
bufferedio.c
Modules/_io/bufferedio.c
+58
-59
No files found.
Lib/test/test_io.py
Dosyayı görüntüle @
e05565ec
...
...
@@ -1395,15 +1395,18 @@ class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):
rw
.
seek
(
0
,
0
)
self
.
assertEqual
(
b
"asdf"
,
rw
.
read
(
4
))
rw
.
write
(
b
"
asd
f"
)
rw
.
write
(
b
"
123
f"
)
rw
.
seek
(
0
,
0
)
self
.
assertEqual
(
b
"asdf
asd
fl"
,
rw
.
read
())
self
.
assertEqual
(
b
"asdf
123
fl"
,
rw
.
read
())
self
.
assertEqual
(
9
,
rw
.
tell
())
rw
.
seek
(
-
4
,
2
)
self
.
assertEqual
(
5
,
rw
.
tell
())
rw
.
seek
(
2
,
1
)
self
.
assertEqual
(
7
,
rw
.
tell
())
self
.
assertEqual
(
b
"fl"
,
rw
.
read
(
11
))
rw
.
flush
()
self
.
assertEqual
(
b
"asdf123fl"
,
raw
.
getvalue
())
self
.
assertRaises
(
TypeError
,
rw
.
seek
,
0.0
)
def
check_flush_and_read
(
self
,
read_func
):
...
...
@@ -1548,6 +1551,43 @@ class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):
BufferedReaderTest
.
test_misbehaved_io
(
self
)
BufferedWriterTest
.
test_misbehaved_io
(
self
)
def
test_interleaved_read_write
(
self
):
# Test for issue #12213
with
self
.
BytesIO
(
b
'abcdefgh'
)
as
raw
:
with
self
.
tp
(
raw
,
100
)
as
f
:
f
.
write
(
b
"1"
)
self
.
assertEqual
(
f
.
read
(
1
),
b
'b'
)
f
.
write
(
b
'2'
)
self
.
assertEqual
(
f
.
read1
(
1
),
b
'd'
)
f
.
write
(
b
'3'
)
buf
=
bytearray
(
1
)
f
.
readinto
(
buf
)
self
.
assertEqual
(
buf
,
b
'f'
)
f
.
write
(
b
'4'
)
self
.
assertEqual
(
f
.
peek
(
1
),
b
'h'
)
f
.
flush
()
self
.
assertEqual
(
raw
.
getvalue
(),
b
'1b2d3f4h'
)
with
self
.
BytesIO
(
b
'abc'
)
as
raw
:
with
self
.
tp
(
raw
,
100
)
as
f
:
self
.
assertEqual
(
f
.
read
(
1
),
b
'a'
)
f
.
write
(
b
"2"
)
self
.
assertEqual
(
f
.
read
(
1
),
b
'c'
)
f
.
flush
()
self
.
assertEqual
(
raw
.
getvalue
(),
b
'a2c'
)
def
test_interleaved_readline_write
(
self
):
with
self
.
BytesIO
(
b
'ab
\n
cdef
\n
g
\n
'
)
as
raw
:
with
self
.
tp
(
raw
)
as
f
:
f
.
write
(
b
'1'
)
self
.
assertEqual
(
f
.
readline
(),
b
'b
\n
'
)
f
.
write
(
b
'2'
)
self
.
assertEqual
(
f
.
readline
(),
b
'def
\n
'
)
f
.
write
(
b
'3'
)
self
.
assertEqual
(
f
.
readline
(),
b
'
\n
'
)
f
.
flush
()
self
.
assertEqual
(
raw
.
getvalue
(),
b
'1b
\n
2def
\n
3
\n
'
)
# You can't construct a BufferedRandom over a non-seekable stream.
test_unseekable
=
None
...
...
Misc/NEWS
Dosyayı görüntüle @
e05565ec
...
...
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
- Issue #12213: Fix a buffering bug with interleaved reads and writes that
could appear on BufferedRandom streams.
- Issue #12326: sys.platform is now always 'linux2' on Linux, even if Python
is compiled on Linux 3.
...
...
Modules/_io/bufferedio.c
Dosyayı görüntüle @
e05565ec
...
...
@@ -752,25 +752,38 @@ _trap_eintr(void)
*/
static
PyObject
*
buffered_flush
(
buffered
*
self
,
PyObject
*
args
)
buffered_flush
_and_rewind_unlocked
(
buffered
*
self
)
{
PyObject
*
res
;
CHECK_INITIALIZED
(
self
)
CHECK_CLOSED
(
self
,
"flush of closed file"
)
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
_bufferedwriter_flush_unlocked
(
self
,
0
);
if
(
res
!=
NULL
&&
self
->
readable
)
{
if
(
res
==
NULL
)
return
NULL
;
Py_DECREF
(
res
);
if
(
self
->
readable
)
{
/* Rewind the raw stream so that its position corresponds to
the current logical position. */
Py_off_t
n
;
n
=
_buffered_raw_seek
(
self
,
-
RAW_OFFSET
(
self
),
1
);
if
(
n
==
-
1
)
Py_CLEAR
(
res
);
_bufferedreader_reset_buf
(
self
);
if
(
n
==
-
1
)
return
NULL
;
}
Py_RETURN_NONE
;
}
static
PyObject
*
buffered_flush
(
buffered
*
self
,
PyObject
*
args
)
{
PyObject
*
res
;
CHECK_INITIALIZED
(
self
)
CHECK_CLOSED
(
self
,
"flush of closed file"
)
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
buffered_flush_and_rewind_unlocked
(
self
);
LEAVE_BUFFERED
(
self
)
return
res
;
...
...
@@ -791,7 +804,7 @@ buffered_peek(buffered *self, PyObject *args)
return
NULL
;
if
(
self
->
writable
)
{
res
=
_bufferedwriter_flush_unlocked
(
self
,
1
);
res
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
res
==
NULL
)
goto
end
;
Py_CLEAR
(
res
);
...
...
@@ -826,19 +839,18 @@ buffered_read(buffered *self, PyObject *args)
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
_bufferedreader_read_all
(
self
);
LEAVE_BUFFERED
(
self
)
}
else
{
res
=
_bufferedreader_read_fast
(
self
,
n
);
if
(
res
==
Py_None
)
{
Py_DECREF
(
res
);
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
_bufferedreader_read_generic
(
self
,
n
);
LEAVE_BUFFERED
(
self
)
}
if
(
res
!=
Py_None
)
return
res
;
Py_DECREF
(
res
);
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
_bufferedreader_read_generic
(
self
,
n
);
}
LEAVE_BUFFERED
(
self
)
return
res
;
}
...
...
@@ -864,13 +876,6 @@ buffered_read1(buffered *self, PyObject *args)
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
if
(
self
->
writable
)
{
res
=
_bufferedwriter_flush_unlocked
(
self
,
1
);
if
(
res
==
NULL
)
goto
end
;
Py_CLEAR
(
res
);
}
/* Return up to n bytes. If at least one byte is buffered, we
only return buffered bytes. Otherwise, we do one raw read. */
...
...
@@ -890,6 +895,13 @@ buffered_read1(buffered *self, PyObject *args)
goto
end
;
}
if
(
self
->
writable
)
{
res
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
res
==
NULL
)
goto
end
;
Py_DECREF
(
res
);
}
/* Fill the buffer from the raw stream, and copy it to the result. */
_bufferedreader_reset_buf
(
self
);
r
=
_bufferedreader_fill_buffer
(
self
);
...
...
@@ -912,24 +924,10 @@ end:
static
PyObject
*
buffered_readinto
(
buffered
*
self
,
PyObject
*
args
)
{
PyObject
*
res
=
NULL
;
CHECK_INITIALIZED
(
self
)
/* TODO: use raw.readinto() instead! */
if
(
self
->
writable
)
{
if
(
!
ENTER_BUFFERED
(
self
))
return
NULL
;
res
=
_bufferedwriter_flush_unlocked
(
self
,
0
);
LEAVE_BUFFERED
(
self
)
if
(
res
==
NULL
)
goto
end
;
Py_DECREF
(
res
);
}
res
=
bufferediobase_readinto
((
PyObject
*
)
self
,
args
);
end:
return
res
;
/* TODO: use raw.readinto() (or a direct copy from our buffer) instead! */
return
bufferediobase_readinto
((
PyObject
*
)
self
,
args
);
}
static
PyObject
*
...
...
@@ -967,12 +965,6 @@ _buffered_readline(buffered *self, Py_ssize_t limit)
goto
end_unlocked
;
/* Now we try to get some more from the raw stream */
if
(
self
->
writable
)
{
res
=
_bufferedwriter_flush_unlocked
(
self
,
1
);
if
(
res
==
NULL
)
goto
end
;
Py_CLEAR
(
res
);
}
chunks
=
PyList_New
(
0
);
if
(
chunks
==
NULL
)
goto
end
;
...
...
@@ -986,9 +978,16 @@ _buffered_readline(buffered *self, Py_ssize_t limit)
}
Py_CLEAR
(
res
);
written
+=
n
;
self
->
pos
+=
n
;
if
(
limit
>=
0
)
limit
-=
n
;
}
if
(
self
->
writable
)
{
PyObject
*
r
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
r
==
NULL
)
goto
end
;
Py_DECREF
(
r
);
}
for
(;;)
{
_bufferedreader_reset_buf
(
self
);
...
...
@@ -1157,20 +1156,11 @@ buffered_truncate(buffered *self, PyObject *args)
return
NULL
;
if
(
self
->
writable
)
{
res
=
_bufferedwriter_flush_unlocked
(
self
,
0
);
res
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
res
==
NULL
)
goto
end
;
Py_CLEAR
(
res
);
}
if
(
self
->
readable
)
{
if
(
pos
==
Py_None
)
{
/* Rewind the raw stream so that its position corresponds to
the current logical position. */
if
(
_buffered_raw_seek
(
self
,
-
RAW_OFFSET
(
self
),
1
)
==
-
1
)
goto
end
;
}
_bufferedreader_reset_buf
(
self
);
}
res
=
PyObject_CallMethodObjArgs
(
self
->
raw
,
_PyIO_str_truncate
,
pos
,
NULL
);
if
(
res
==
NULL
)
goto
end
;
...
...
@@ -1367,17 +1357,18 @@ _bufferedreader_read_all(buffered *self)
Py_DECREF
(
chunks
);
return
NULL
;
}
self
->
pos
+=
current_size
;
}
_bufferedreader_reset_buf
(
self
);
/* We're going past the buffer's bounds, flush it */
if
(
self
->
writable
)
{
res
=
_bufferedwriter_flush_unlocked
(
self
,
1
);
res
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
res
==
NULL
)
{
Py_DECREF
(
chunks
);
return
NULL
;
}
Py_CLEAR
(
res
);
}
_bufferedreader_reset_buf
(
self
);
while
(
1
)
{
if
(
data
)
{
if
(
PyList_Append
(
chunks
,
data
)
<
0
)
{
...
...
@@ -1460,6 +1451,14 @@ _bufferedreader_read_generic(buffered *self, Py_ssize_t n)
memcpy
(
out
,
self
->
buffer
+
self
->
pos
,
current_size
);
remaining
-=
current_size
;
written
+=
current_size
;
self
->
pos
+=
current_size
;
}
/* Flush the write buffer if necessary */
if
(
self
->
writable
)
{
PyObject
*
r
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
r
==
NULL
)
goto
error
;
Py_DECREF
(
r
);
}
_bufferedreader_reset_buf
(
self
);
while
(
remaining
>
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment