1 /* Author: Daniel Stutzbach */
3 #define PY_SSIZE_T_CLEAN
8 #include <stddef.h> /* For offsetof */
11 * Known likely problems:
13 * - Files larger then 2**32-1
14 * - Files with unicode filenames
15 * - Passing numbers greater than 2**32-1 when an integer is expected
16 * - Making it work on Windows and other oddball platforms
20 * - autoconfify header file inclusion
24 /* can simulate truncate with Win32 API functions; see file_truncate */
25 #define HAVE_FTRUNCATE
26 #define WIN32_LEAN_AND_MEAN
33 unsigned readable
: 1;
34 unsigned writable
: 1;
35 int seekable
: 2; /* -1 means unknown */
37 PyObject
*weakreflist
;
40 PyTypeObject PyFileIO_Type
;
42 #define PyFileIO_Check(op) (PyObject_TypeCheck((op), &PyFileIO_Type))
44 /* Returns 0 on success, errno (which is < 0) on failure. */
46 internal_close(PyFileIOObject
*self
)
52 Py_BEGIN_ALLOW_THREADS
61 fileio_close(PyFileIOObject
*self
)
64 if (PyErr_WarnEx(PyExc_RuntimeWarning
,
65 "Trying to close unclosable fd!", 3) < 0) {
70 errno
= internal_close(self
);
72 PyErr_SetFromErrno(PyExc_IOError
);
80 fileio_new(PyTypeObject
*type
, PyObject
*args
, PyObject
*kews
)
84 assert(type
!= NULL
&& type
->tp_alloc
!= NULL
);
86 self
= (PyFileIOObject
*) type
->tp_alloc(type
, 0);
89 self
->weakreflist
= NULL
;
92 return (PyObject
*) self
;
95 /* On Unix, open will succeed for directories.
96 In Python, there should be no file objects referring to
97 directories, so we need a check. */
100 dircheck(PyFileIOObject
* self
)
102 #if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR)
106 if (fstat(self
->fd
, &buf
) == 0 && S_ISDIR(buf
.st_mode
)) {
107 char *msg
= strerror(EISDIR
);
109 internal_close(self
);
111 exc
= PyObject_CallFunction(PyExc_IOError
, "(is)",
113 PyErr_SetObject(PyExc_IOError
, exc
);
123 fileio_init(PyObject
*oself
, PyObject
*args
, PyObject
*kwds
)
125 PyFileIOObject
*self
= (PyFileIOObject
*) oself
;
126 static char *kwlist
[] = {"file", "mode", "closefd", NULL
};
131 Py_UNICODE
*widename
= NULL
;
134 int rwa
= 0, plus
= 0, append
= 0;
139 assert(PyFileIO_Check(oself
));
141 /* Have to close the existing file first. */
142 if (internal_close(self
) < 0)
146 if (PyArg_ParseTupleAndKeywords(args
, kwds
, "i|si:fileio",
147 kwlist
, &fd
, &mode
, &closefd
)) {
149 PyErr_SetString(PyExc_ValueError
,
150 "Negative filedescriptor");
157 #ifdef Py_WIN_WIDE_FILENAMES
158 if (GetVersion() < 0x80000000) {
159 /* On NT, so wide API available */
161 if (PyArg_ParseTupleAndKeywords(args
, kwds
, "U|si:fileio",
162 kwlist
, &po
, &mode
, &closefd
)
164 widename
= PyUnicode_AS_UNICODE(po
);
166 /* Drop the argument parsing error as narrow
167 strings are also valid. */
171 if (widename
== NULL
)
174 if (!PyArg_ParseTupleAndKeywords(args
, kwds
, "et|si:fileio",
176 Py_FileSystemDefaultEncoding
,
177 &name
, &mode
, &closefd
))
182 self
->readable
= self
->writable
= 0;
190 PyErr_SetString(PyExc_ValueError
,
191 "Must have exactly one of read/write/append mode");
202 flags
|= O_CREAT
| O_TRUNC
;
215 self
->readable
= self
->writable
= 1;
219 PyErr_Format(PyExc_ValueError
,
220 "invalid mode: %.200s", mode
);
228 if (self
->readable
&& self
->writable
)
230 else if (self
->readable
)
246 self
->closefd
= closefd
;
251 PyErr_SetString(PyExc_ValueError
,
252 "Cannot use closefd=True with file name");
256 Py_BEGIN_ALLOW_THREADS
259 if (widename
!= NULL
)
260 self
->fd
= _wopen(widename
, flags
, 0666);
263 self
->fd
= open(name
, flags
, 0666);
265 if (self
->fd
< 0 || dircheck(self
) < 0) {
267 PyErr_SetFromErrnoWithUnicodeFilename(PyExc_IOError
, widename
);
269 PyErr_SetFromErrnoWithFilename(PyExc_IOError
, name
);
286 fileio_dealloc(PyFileIOObject
*self
)
288 if (self
->weakreflist
!= NULL
)
289 PyObject_ClearWeakRefs((PyObject
*) self
);
291 if (self
->fd
>= 0 && self
->closefd
) {
292 errno
= internal_close(self
);
294 PySys_WriteStderr("close failed: [Errno %d] %s\n",
295 errno
, strerror(errno
));
299 Py_TYPE(self
)->tp_free((PyObject
*)self
);
305 PyErr_SetString(PyExc_ValueError
, "I/O operation on closed file");
310 err_mode(char *action
)
312 PyErr_Format(PyExc_ValueError
, "File not open for %s", action
);
317 fileio_fileno(PyFileIOObject
*self
)
321 return PyInt_FromLong((long) self
->fd
);
325 fileio_readable(PyFileIOObject
*self
)
329 return PyBool_FromLong((long) self
->readable
);
333 fileio_writable(PyFileIOObject
*self
)
337 return PyBool_FromLong((long) self
->writable
);
341 fileio_seekable(PyFileIOObject
*self
)
345 if (self
->seekable
< 0) {
347 Py_BEGIN_ALLOW_THREADS
348 ret
= lseek(self
->fd
, 0, SEEK_CUR
);
355 return PyBool_FromLong((long) self
->seekable
);
359 fileio_readinto(PyFileIOObject
*self
, PyObject
*args
)
367 return err_mode("reading");
369 if (!PyArg_ParseTuple(args
, "w#", &ptr
, &n
))
372 Py_BEGIN_ALLOW_THREADS
374 n
= read(self
->fd
, ptr
, n
);
379 PyErr_SetFromErrno(PyExc_IOError
);
383 return PyLong_FromSsize_t(n
);
386 #define DEFAULT_BUFFER_SIZE (8*1024)
389 fileio_readall(PyFileIOObject
*self
)
392 Py_ssize_t total
= 0;
395 result
= PyString_FromStringAndSize(NULL
, DEFAULT_BUFFER_SIZE
);
400 Py_ssize_t newsize
= total
+ DEFAULT_BUFFER_SIZE
;
401 if (PyString_GET_SIZE(result
) < newsize
) {
402 if (_PyString_Resize(&result
, newsize
) < 0) {
411 Py_BEGIN_ALLOW_THREADS
414 PyString_AS_STRING(result
) + total
,
422 if (errno
== EAGAIN
) {
427 PyErr_SetFromErrno(PyExc_IOError
);
433 if (PyString_GET_SIZE(result
) > total
) {
434 if (_PyString_Resize(&result
, total
) < 0) {
435 /* This should never happen, but just in case */
444 fileio_read(PyFileIOObject
*self
, PyObject
*args
)
448 Py_ssize_t size
= -1;
454 return err_mode("reading");
456 if (!PyArg_ParseTuple(args
, "|n", &size
))
460 return fileio_readall(self
);
463 bytes
= PyString_FromStringAndSize(NULL
, size
);
466 ptr
= PyString_AS_STRING(bytes
);
468 Py_BEGIN_ALLOW_THREADS
470 n
= read(self
->fd
, ptr
, size
);
476 PyErr_SetFromErrno(PyExc_IOError
);
481 if (_PyString_Resize(&bytes
, n
) < 0) {
487 return (PyObject
*) bytes
;
491 fileio_write(PyFileIOObject
*self
, PyObject
*args
)
499 return err_mode("writing");
501 if (!PyArg_ParseTuple(args
, "s#", &ptr
, &n
))
504 Py_BEGIN_ALLOW_THREADS
506 n
= write(self
->fd
, ptr
, n
);
512 PyErr_SetFromErrno(PyExc_IOError
);
516 return PyLong_FromSsize_t(n
);
519 /* XXX Windows support below is likely incomplete */
521 #if defined(MS_WIN64) || defined(MS_WINDOWS)
522 typedef PY_LONG_LONG Py_off_t
;
524 typedef off_t Py_off_t
;
527 /* Cribbed from posix_lseek() */
529 portable_lseek(int fd
, PyObject
*posobj
, int whence
)
534 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
537 case 0: whence
= SEEK_SET
; break;
540 case 1: whence
= SEEK_CUR
; break;
543 case 2: whence
= SEEK_END
; break;
546 #endif /* SEEK_SET */
551 if(PyFloat_Check(posobj
)) {
552 PyErr_SetString(PyExc_TypeError
, "an integer is required");
555 #if defined(HAVE_LARGEFILE_SUPPORT)
556 pos
= PyLong_AsLongLong(posobj
);
558 pos
= PyLong_AsLong(posobj
);
560 if (PyErr_Occurred())
564 Py_BEGIN_ALLOW_THREADS
565 #if defined(MS_WIN64) || defined(MS_WINDOWS)
566 res
= _lseeki64(fd
, pos
, whence
);
568 res
= lseek(fd
, pos
, whence
);
572 return PyErr_SetFromErrno(PyExc_IOError
);
574 #if defined(HAVE_LARGEFILE_SUPPORT)
575 return PyLong_FromLongLong(res
);
577 return PyLong_FromLong(res
);
582 fileio_seek(PyFileIOObject
*self
, PyObject
*args
)
590 if (!PyArg_ParseTuple(args
, "O|i", &posobj
, &whence
))
593 return portable_lseek(self
->fd
, posobj
, whence
);
597 fileio_tell(PyFileIOObject
*self
, PyObject
*args
)
602 return portable_lseek(self
->fd
, NULL
, 1);
605 #ifdef HAVE_FTRUNCATE
607 fileio_truncate(PyFileIOObject
*self
, PyObject
*args
)
609 PyObject
*posobj
= NULL
;
618 return err_mode("writing");
620 if (!PyArg_ParseTuple(args
, "|O", &posobj
))
623 if (posobj
== Py_None
|| posobj
== NULL
) {
624 /* Get the current position. */
625 posobj
= portable_lseek(fd
, NULL
, 1);
630 /* Move to the position to be truncated. */
631 posobj
= portable_lseek(fd
, posobj
, 0);
634 #if defined(HAVE_LARGEFILE_SUPPORT)
635 pos
= PyLong_AsLongLong(posobj
);
637 pos
= PyLong_AsLong(posobj
);
639 if (PyErr_Occurred())
643 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
644 so don't even try using it. */
648 /* Truncate. Note that this may grow the file! */
649 Py_BEGIN_ALLOW_THREADS
651 hFile
= (HANDLE
)_get_osfhandle(fd
);
652 ret
= hFile
== (HANDLE
)-1;
654 ret
= SetEndOfFile(hFile
) == 0;
661 Py_BEGIN_ALLOW_THREADS
663 ret
= ftruncate(fd
, pos
);
665 #endif /* !MS_WINDOWS */
668 PyErr_SetFromErrno(PyExc_IOError
);
677 mode_string(PyFileIOObject
*self
)
679 if (self
->readable
) {
690 fileio_repr(PyFileIOObject
*self
)
693 return PyString_FromFormat("_fileio._FileIO(-1)");
695 return PyString_FromFormat("_fileio._FileIO(%d, '%s')",
696 self
->fd
, mode_string(self
));
700 fileio_isatty(PyFileIOObject
*self
)
706 Py_BEGIN_ALLOW_THREADS
707 res
= isatty(self
->fd
);
709 return PyBool_FromLong(res
);
713 PyDoc_STRVAR(fileio_doc
,
714 "file(name: str[, mode: str]) -> file IO object\n"
716 "Open a file. The mode can be 'r', 'w' or 'a' for reading (default),\n"
717 "writing or appending. The file will be created if it doesn't exist\n"
718 "when opened for writing or appending; it will be truncated when\n"
719 "opened for writing. Add a '+' to the mode to allow simultaneous\n"
720 "reading and writing.");
722 PyDoc_STRVAR(read_doc
,
723 "read(size: int) -> bytes. read at most size bytes, returned as bytes.\n"
725 "Only makes one system call, so less data may be returned than requested\n"
726 "In non-blocking mode, returns None if no data is available.\n"
727 "On end-of-file, returns ''.");
729 PyDoc_STRVAR(readall_doc
,
730 "readall() -> bytes. read all data from the file, returned as bytes.\n"
732 "In non-blocking mode, returns as much as is immediately available,\n"
733 "or None if no data is available. On end-of-file, returns ''.");
735 PyDoc_STRVAR(write_doc
,
736 "write(b: bytes) -> int. Write bytes b to file, return number written.\n"
738 "Only makes one system call, so not all of the data may be written.\n"
739 "The number of bytes actually written is returned.");
741 PyDoc_STRVAR(fileno_doc
,
742 "fileno() -> int. \"file descriptor\".\n"
744 "This is needed for lower-level file interfaces, such the fcntl module.");
746 PyDoc_STRVAR(seek_doc
,
747 "seek(offset: int[, whence: int]) -> None. Move to new file position.\n"
749 "Argument offset is a byte count. Optional argument whence defaults to\n"
750 "0 (offset from start of file, offset should be >= 0); other values are 1\n"
751 "(move relative to current position, positive or negative), and 2 (move\n"
752 "relative to end of file, usually negative, although many platforms allow\n"
753 "seeking beyond the end of a file)."
755 "Note that not all file objects are seekable.");
757 #ifdef HAVE_FTRUNCATE
758 PyDoc_STRVAR(truncate_doc
,
759 "truncate([size: int]) -> None. Truncate the file to at most size bytes.\n"
761 "Size defaults to the current file position, as returned by tell()."
762 "The current file position is changed to the value of size.");
765 PyDoc_STRVAR(tell_doc
,
766 "tell() -> int. Current file position");
768 PyDoc_STRVAR(readinto_doc
,
769 "readinto() -> Undocumented. Don't use this; it may go away.");
771 PyDoc_STRVAR(close_doc
,
772 "close() -> None. Close the file.\n"
774 "A closed file cannot be used for further I/O operations. close() may be\n"
775 "called more than once without error. Changes the fileno to -1.");
777 PyDoc_STRVAR(isatty_doc
,
778 "isatty() -> bool. True if the file is connected to a tty device.");
780 PyDoc_STRVAR(seekable_doc
,
781 "seekable() -> bool. True if file supports random-access.");
783 PyDoc_STRVAR(readable_doc
,
784 "readable() -> bool. True if file was opened in a read mode.");
786 PyDoc_STRVAR(writable_doc
,
787 "writable() -> bool. True if file was opened in a write mode.");
789 static PyMethodDef fileio_methods
[] = {
790 {"read", (PyCFunction
)fileio_read
, METH_VARARGS
, read_doc
},
791 {"readall", (PyCFunction
)fileio_readall
, METH_NOARGS
, readall_doc
},
792 {"readinto", (PyCFunction
)fileio_readinto
, METH_VARARGS
, readinto_doc
},
793 {"write", (PyCFunction
)fileio_write
, METH_VARARGS
, write_doc
},
794 {"seek", (PyCFunction
)fileio_seek
, METH_VARARGS
, seek_doc
},
795 {"tell", (PyCFunction
)fileio_tell
, METH_VARARGS
, tell_doc
},
796 #ifdef HAVE_FTRUNCATE
797 {"truncate", (PyCFunction
)fileio_truncate
, METH_VARARGS
, truncate_doc
},
799 {"close", (PyCFunction
)fileio_close
, METH_NOARGS
, close_doc
},
800 {"seekable", (PyCFunction
)fileio_seekable
, METH_NOARGS
, seekable_doc
},
801 {"readable", (PyCFunction
)fileio_readable
, METH_NOARGS
, readable_doc
},
802 {"writable", (PyCFunction
)fileio_writable
, METH_NOARGS
, writable_doc
},
803 {"fileno", (PyCFunction
)fileio_fileno
, METH_NOARGS
, fileno_doc
},
804 {"isatty", (PyCFunction
)fileio_isatty
, METH_NOARGS
, isatty_doc
},
805 {NULL
, NULL
} /* sentinel */
808 /* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
811 get_closed(PyFileIOObject
*self
, void *closure
)
813 return PyBool_FromLong((long)(self
->fd
< 0));
817 get_mode(PyFileIOObject
*self
, void *closure
)
819 return PyString_FromString(mode_string(self
));
822 static PyGetSetDef fileio_getsetlist
[] = {
823 {"closed", (getter
)get_closed
, NULL
, "True if the file is closed"},
824 {"mode", (getter
)get_mode
, NULL
, "String giving the file mode"},
828 PyTypeObject PyFileIO_Type
= {
829 PyVarObject_HEAD_INIT(&PyType_Type
, 0)
831 sizeof(PyFileIOObject
),
833 (destructor
)fileio_dealloc
, /* tp_dealloc */
838 (reprfunc
)fileio_repr
, /* tp_repr */
839 0, /* tp_as_number */
840 0, /* tp_as_sequence */
841 0, /* tp_as_mapping */
845 PyObject_GenericGetAttr
, /* tp_getattro */
847 0, /* tp_as_buffer */
848 Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
, /* tp_flags */
849 fileio_doc
, /* tp_doc */
852 0, /* tp_richcompare */
853 offsetof(PyFileIOObject
, weakreflist
), /* tp_weaklistoffset */
856 fileio_methods
, /* tp_methods */
858 fileio_getsetlist
, /* tp_getset */
861 0, /* tp_descr_get */
862 0, /* tp_descr_set */
863 0, /* tp_dictoffset */
864 fileio_init
, /* tp_init */
865 PyType_GenericAlloc
, /* tp_alloc */
866 fileio_new
, /* tp_new */
867 PyObject_Del
, /* tp_free */
870 static PyMethodDef module_methods
[] = {
877 PyObject
*m
; /* a module object */
879 m
= Py_InitModule3("_fileio", module_methods
,
880 "Fast implementation of io.FileIO.");
883 if (PyType_Ready(&PyFileIO_Type
) < 0)
885 Py_INCREF(&PyFileIO_Type
);
886 PyModule_AddObject(m
, "_FileIO", (PyObject
*) &PyFileIO_Type
);