summaryrefslogtreecommitdiffstats
path: root/Modules/_io
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-04-26 14:39:35 (GMT)
committerJesus Cea <jcea@jcea.es>2012-04-26 14:39:35 (GMT)
commit2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 (patch)
treee7a04c686ef2b72e9d4495b88e8f87c58cfd5e11 /Modules/_io
parent790a9b4c193a9f3323138a8c1c1d074a6b6289f0 (diff)
downloadcpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.zip
cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.gz
cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.bz2
Close #10142: Support for SEEK_HOLE/SEEK_DATA
Diffstat (limited to 'Modules/_io')
-rw-r--r--Modules/_io/bufferedio.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/Modules/_io/bufferedio.c b/Modules/_io/bufferedio.c
index 8a9ae47..dc723b1 100644
--- a/Modules/_io/bufferedio.c
+++ b/Modules/_io/bufferedio.c
@@ -1157,9 +1157,20 @@ buffered_seek(buffered *self, PyObject *args)
if (!PyArg_ParseTuple(args, "O|i:seek", &targetobj, &whence)) {
return NULL;
}
- if (whence < 0 || whence > 2) {
+
+ /* Do some error checking instead of trusting OS 'seek()'
+ ** error detection, just in case.
+ */
+ if ((whence < 0 || whence >2)
+#ifdef SEEK_HOLE
+ && (whence != SEEK_HOLE)
+#endif
+#ifdef SEEK_DATA
+ && (whence != SEEK_DATA)
+#endif
+ ) {
PyErr_Format(PyExc_ValueError,
- "whence must be between 0 and 2, not %d", whence);
+ "whence value %d unsupported", whence);
return NULL;
}
@@ -1172,7 +1183,11 @@ buffered_seek(buffered *self, PyObject *args)
if (target == -1 && PyErr_Occurred())
return NULL;
- if (whence != 2 && self->readable) {
+ /* SEEK_SET and SEEK_CUR are special because we could seek inside the
+ buffer. Other whence values must be managed without this optimization.
+ Some Operating Systems can provide additional values, like
+ SEEK_HOLE/SEEK_DATA. */
+ if (((whence == 0) || (whence == 1)) && self->readable) {
Py_off_t current, avail;
/* Check if seeking leaves us inside the current buffer,
so as to return quickly if possible. Also, we needn't take the