blob: 80ca99c5bcdc6c0a5cdbc4aef8d8baf5a54cb64f [file] [log] [blame]
Guido van Rossuma9e20242007-03-08 00:43:48 +00001/* Author: Daniel Stutzbach */
2
3#define PY_SSIZE_T_CLEAN
4#include "Python.h"
Antoine Pitroue033e062010-10-29 10:38:18 +00005#include "structmember.h"
Benjamin Peterson2614cda2010-03-21 22:36:19 +00006#ifdef HAVE_SYS_TYPES_H
Guido van Rossuma9e20242007-03-08 00:43:48 +00007#include <sys/types.h>
Benjamin Peterson2614cda2010-03-21 22:36:19 +00008#endif
9#ifdef HAVE_SYS_STAT_H
Guido van Rossuma9e20242007-03-08 00:43:48 +000010#include <sys/stat.h>
Benjamin Peterson2614cda2010-03-21 22:36:19 +000011#endif
12#ifdef HAVE_FCNTL_H
Guido van Rossuma9e20242007-03-08 00:43:48 +000013#include <fcntl.h>
Benjamin Peterson2614cda2010-03-21 22:36:19 +000014#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +000015#include <stddef.h> /* For offsetof */
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000016#include "_iomodule.h"
Guido van Rossuma9e20242007-03-08 00:43:48 +000017
18/*
19 * Known likely problems:
20 *
21 * - Files larger then 2**32-1
22 * - Files with unicode filenames
23 * - Passing numbers greater than 2**32-1 when an integer is expected
24 * - Making it work on Windows and other oddball platforms
25 *
26 * To Do:
27 *
28 * - autoconfify header file inclusion
Guido van Rossuma9e20242007-03-08 00:43:48 +000029 */
30
31#ifdef MS_WINDOWS
32/* can simulate truncate with Win32 API functions; see file_truncate */
Thomas Hellerfdeee3a2007-07-12 11:21:36 +000033#define HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +000034#define WIN32_LEAN_AND_MEAN
35#include <windows.h>
36#endif
37
Christian Heimesa872de52008-12-05 08:26:55 +000038#if BUFSIZ < (8*1024)
39#define SMALLCHUNK (8*1024)
40#elif (BUFSIZ >= (2 << 25))
41#error "unreasonable BUFSIZ > 64MB defined"
42#else
43#define SMALLCHUNK BUFSIZ
44#endif
45
Guido van Rossuma9e20242007-03-08 00:43:48 +000046typedef struct {
Antoine Pitrouae4b4722010-05-05 16:31:07 +000047 PyObject_HEAD
48 int fd;
Charles-François Natalidc3044c2012-01-09 22:40:02 +010049 unsigned int created : 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +000050 unsigned int readable : 1;
51 unsigned int writable : 1;
Antoine Pitroue93b63b2013-09-04 20:46:33 +020052 unsigned int appending : 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +000053 signed int seekable : 2; /* -1 means unknown */
54 unsigned int closefd : 1;
Antoine Pitrou796564c2013-07-30 19:59:21 +020055 char finalizing;
Antoine Pitrouae4b4722010-05-05 16:31:07 +000056 PyObject *weakreflist;
57 PyObject *dict;
Benjamin Peterson680bf1a2009-06-12 02:07:12 +000058} fileio;
Guido van Rossuma9e20242007-03-08 00:43:48 +000059
Collin Winteraf334382007-03-08 21:46:15 +000060PyTypeObject PyFileIO_Type;
61
Victor Stinnerd9d04192013-11-06 23:50:10 +010062_Py_IDENTIFIER(name);
63
Guido van Rossuma9e20242007-03-08 00:43:48 +000064#define PyFileIO_Check(op) (PyObject_TypeCheck((op), &PyFileIO_Type))
65
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000066int
67_PyFileIO_closed(PyObject *self)
68{
Antoine Pitrouae4b4722010-05-05 16:31:07 +000069 return ((fileio *)self)->fd < 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000070}
Antoine Pitrou08838b62009-01-21 00:55:13 +000071
Antoine Pitroue033e062010-10-29 10:38:18 +000072/* Because this can call arbitrary code, it shouldn't be called when
73 the refcount is 0 (that is, not directly from tp_dealloc unless
74 the refcount has been temporarily re-incremented). */
75static PyObject *
76fileio_dealloc_warn(fileio *self, PyObject *source)
77{
78 if (self->fd >= 0 && self->closefd) {
79 PyObject *exc, *val, *tb;
80 PyErr_Fetch(&exc, &val, &tb);
81 if (PyErr_WarnFormat(PyExc_ResourceWarning, 1,
82 "unclosed file %R", source)) {
83 /* Spurious errors can appear at shutdown */
84 if (PyErr_ExceptionMatches(PyExc_Warning))
85 PyErr_WriteUnraisable((PyObject *) self);
86 }
87 PyErr_Restore(exc, val, tb);
88 }
89 Py_RETURN_NONE;
90}
91
Antoine Pitrou7fb111b2009-03-04 11:14:01 +000092static PyObject *
93portable_lseek(int fd, PyObject *posobj, int whence);
94
Antoine Pitroua28fcfd2009-03-13 23:42:55 +000095static PyObject *portable_lseek(int fd, PyObject *posobj, int whence);
96
Kristján Valur Jónsson19288c22008-12-18 17:15:54 +000097/* Returns 0 on success, -1 with exception set on failure. */
Neal Norwitz88b44da2007-08-12 17:23:54 +000098static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +000099internal_close(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000100{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000101 int err = 0;
102 int save_errno = 0;
103 if (self->fd >= 0) {
104 int fd = self->fd;
105 self->fd = -1;
106 /* fd is accessible and someone else may have closed it */
107 if (_PyVerify_fd(fd)) {
108 Py_BEGIN_ALLOW_THREADS
109 err = close(fd);
110 if (err < 0)
111 save_errno = errno;
112 Py_END_ALLOW_THREADS
113 } else {
114 save_errno = errno;
115 err = -1;
116 }
117 }
118 if (err < 0) {
119 errno = save_errno;
120 PyErr_SetFromErrno(PyExc_IOError);
121 return -1;
122 }
123 return 0;
Neal Norwitz88b44da2007-08-12 17:23:54 +0000124}
125
126static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000127fileio_close(fileio *self)
Neal Norwitz88b44da2007-08-12 17:23:54 +0000128{
Serhiy Storchakaa3712a92015-02-21 00:35:09 +0200129 PyObject *res;
130 PyObject *exc, *val, *tb;
131 int rc;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200132 _Py_IDENTIFIER(close);
Serhiy Storchakaa3712a92015-02-21 00:35:09 +0200133 res = _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
134 &PyId_close, "O", self);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000135 if (!self->closefd) {
136 self->fd = -1;
Serhiy Storchakaa3712a92015-02-21 00:35:09 +0200137 return res;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000138 }
Serhiy Storchakaa3712a92015-02-21 00:35:09 +0200139 if (res == NULL)
140 PyErr_Fetch(&exc, &val, &tb);
Antoine Pitrou796564c2013-07-30 19:59:21 +0200141 if (self->finalizing) {
Antoine Pitroue033e062010-10-29 10:38:18 +0000142 PyObject *r = fileio_dealloc_warn(self, (PyObject *) self);
143 if (r)
144 Py_DECREF(r);
145 else
146 PyErr_Clear();
147 }
Serhiy Storchakaa3712a92015-02-21 00:35:09 +0200148 rc = internal_close(self);
149 if (res == NULL)
150 _PyErr_ChainExceptions(exc, val, tb);
151 if (rc < 0)
152 Py_CLEAR(res);
153 return res;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000154}
155
156static PyObject *
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000157fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000158{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000159 fileio *self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000160
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000161 assert(type != NULL && type->tp_alloc != NULL);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000162
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000163 self = (fileio *) type->tp_alloc(type, 0);
164 if (self != NULL) {
165 self->fd = -1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100166 self->created = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000167 self->readable = 0;
168 self->writable = 0;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200169 self->appending = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000170 self->seekable = -1;
171 self->closefd = 1;
172 self->weakreflist = NULL;
173 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000174
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000175 return (PyObject *) self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000176}
177
178/* On Unix, open will succeed for directories.
179 In Python, there should be no file objects referring to
180 directories, so we need a check. */
181
182static int
Antoine Pitrou9235b252012-07-06 18:48:24 +0200183dircheck(fileio* self, PyObject *nameobj)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000184{
Christian Heimes91e8b812013-06-23 23:51:44 +0200185#if defined(HAVE_FSTAT) && defined(S_ISDIR) && defined(EISDIR)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000186 struct stat buf;
187 if (self->fd < 0)
188 return 0;
189 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
Antoine Pitrou9235b252012-07-06 18:48:24 +0200190 errno = EISDIR;
191 PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000192 return -1;
193 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000194#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000195 return 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000196}
197
Benjamin Peterson806d4022009-01-19 15:11:51 +0000198static int
199check_fd(int fd)
200{
201#if defined(HAVE_FSTAT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000202 struct stat buf;
203 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
204 PyObject *exc;
205 char *msg = strerror(EBADF);
206 exc = PyObject_CallFunction(PyExc_OSError, "(is)",
207 EBADF, msg);
208 PyErr_SetObject(PyExc_OSError, exc);
209 Py_XDECREF(exc);
210 return -1;
211 }
Benjamin Peterson806d4022009-01-19 15:11:51 +0000212#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000213 return 0;
Benjamin Peterson806d4022009-01-19 15:11:51 +0000214}
215
Victor Stinnerdaf45552013-08-28 00:53:59 +0200216#ifdef O_CLOEXEC
217extern int _Py_open_cloexec_works;
218#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +0000219
220static int
221fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
222{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000223 fileio *self = (fileio *) oself;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200224 static char *kwlist[] = {"file", "mode", "closefd", "opener", NULL};
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000225 const char *name = NULL;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200226 PyObject *nameobj, *stringobj = NULL, *opener = Py_None;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000227 char *mode = "r";
228 char *s;
Thomas Helleraf2be262007-07-12 11:03:13 +0000229#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000230 Py_UNICODE *widename = NULL;
Thomas Helleraf2be262007-07-12 11:03:13 +0000231#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000232 int ret = 0;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200233 int rwa = 0, plus = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000234 int flags = 0;
235 int fd = -1;
236 int closefd = 1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200237 int fd_is_own = 0;
Victor Stinnerdaf45552013-08-28 00:53:59 +0200238#ifdef O_CLOEXEC
239 int *atomic_flag_works = &_Py_open_cloexec_works;
240#elif !defined(MS_WINDOWS)
241 int *atomic_flag_works = NULL;
242#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +0000243
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000244 assert(PyFileIO_Check(oself));
245 if (self->fd >= 0) {
Hynek Schlawack2cc71562012-05-25 10:05:53 +0200246 if (self->closefd) {
247 /* Have to close the existing file first. */
248 if (internal_close(self) < 0)
249 return -1;
250 }
251 else
252 self->fd = -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000253 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000254
Ross Lagerwall59142db2011-10-31 20:34:46 +0200255 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|siO:fileio",
256 kwlist, &nameobj, &mode, &closefd,
257 &opener))
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000258 return -1;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000259
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000260 if (PyFloat_Check(nameobj)) {
261 PyErr_SetString(PyExc_TypeError,
262 "integer argument expected, got float");
263 return -1;
264 }
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000265
Serhiy Storchaka78980432013-01-15 01:12:17 +0200266 fd = _PyLong_AsInt(nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000267 if (fd < 0) {
268 if (!PyErr_Occurred()) {
269 PyErr_SetString(PyExc_ValueError,
270 "Negative filedescriptor");
271 return -1;
272 }
273 PyErr_Clear();
274 }
Guido van Rossumb0428152007-04-08 17:44:42 +0000275
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +0000276#ifdef MS_WINDOWS
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200277 if (PyUnicode_Check(nameobj)) {
Antoine Pitrou13348842012-01-29 18:36:34 +0100278 int rv = _PyUnicode_HasNULChars(nameobj);
279 if (rv) {
280 if (rv != -1)
281 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
282 return -1;
283 }
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200284 widename = PyUnicode_AsUnicode(nameobj);
285 if (widename == NULL)
286 return -1;
287 } else
Guido van Rossuma9e20242007-03-08 00:43:48 +0000288#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000289 if (fd < 0)
290 {
Antoine Pitrou13348842012-01-29 18:36:34 +0100291 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
292 return -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000293 }
Antoine Pitrou13348842012-01-29 18:36:34 +0100294 name = PyBytes_AS_STRING(stringobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000295 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000296
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000297 s = mode;
298 while (*s) {
299 switch (*s++) {
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100300 case 'x':
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000301 if (rwa) {
302 bad_mode:
303 PyErr_SetString(PyExc_ValueError,
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100304 "Must have exactly one of create/read/write/append "
Georg Brandl28928ae2010-10-21 13:45:52 +0000305 "mode and at most one plus");
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000306 goto error;
307 }
308 rwa = 1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100309 self->created = 1;
310 self->writable = 1;
311 flags |= O_EXCL | O_CREAT;
312 break;
313 case 'r':
314 if (rwa)
315 goto bad_mode;
316 rwa = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000317 self->readable = 1;
318 break;
319 case 'w':
320 if (rwa)
321 goto bad_mode;
322 rwa = 1;
323 self->writable = 1;
324 flags |= O_CREAT | O_TRUNC;
325 break;
326 case 'a':
327 if (rwa)
328 goto bad_mode;
329 rwa = 1;
330 self->writable = 1;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200331 self->appending = 1;
332 flags |= O_APPEND | O_CREAT;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000333 break;
334 case 'b':
335 break;
336 case '+':
337 if (plus)
338 goto bad_mode;
339 self->readable = self->writable = 1;
340 plus = 1;
341 break;
342 default:
343 PyErr_Format(PyExc_ValueError,
344 "invalid mode: %.200s", mode);
345 goto error;
346 }
347 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000348
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000349 if (!rwa)
350 goto bad_mode;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000351
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000352 if (self->readable && self->writable)
353 flags |= O_RDWR;
354 else if (self->readable)
355 flags |= O_RDONLY;
356 else
357 flags |= O_WRONLY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000358
359#ifdef O_BINARY
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000360 flags |= O_BINARY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000361#endif
362
Victor Stinnerdaf45552013-08-28 00:53:59 +0200363#ifdef MS_WINDOWS
364 flags |= O_NOINHERIT;
365#elif defined(O_CLOEXEC)
366 flags |= O_CLOEXEC;
367#endif
Walter Dörwald0e411482007-06-06 16:55:38 +0000368
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000369 if (fd >= 0) {
370 if (check_fd(fd))
371 goto error;
372 self->fd = fd;
373 self->closefd = closefd;
374 }
375 else {
376 self->closefd = 1;
377 if (!closefd) {
378 PyErr_SetString(PyExc_ValueError,
379 "Cannot use closefd=False with file name");
380 goto error;
381 }
Guido van Rossum2dced8b2007-10-30 17:27:30 +0000382
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000383 errno = 0;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200384 if (opener == Py_None) {
385 Py_BEGIN_ALLOW_THREADS
Thomas Helleraf2be262007-07-12 11:03:13 +0000386#ifdef MS_WINDOWS
Ross Lagerwall59142db2011-10-31 20:34:46 +0200387 if (widename != NULL)
388 self->fd = _wopen(widename, flags, 0666);
389 else
Thomas Helleraf2be262007-07-12 11:03:13 +0000390#endif
Ross Lagerwall59142db2011-10-31 20:34:46 +0200391 self->fd = open(name, flags, 0666);
Victor Stinnerdaf45552013-08-28 00:53:59 +0200392
Ross Lagerwall59142db2011-10-31 20:34:46 +0200393 Py_END_ALLOW_THREADS
Victor Stinnerdaf45552013-08-28 00:53:59 +0200394 }
395 else {
396 PyObject *fdobj;
397
398#ifndef MS_WINDOWS
399 /* the opener may clear the atomic flag */
400 atomic_flag_works = NULL;
401#endif
402
403 fdobj = PyObject_CallFunction(opener, "Oi", nameobj, flags);
Ross Lagerwall59142db2011-10-31 20:34:46 +0200404 if (fdobj == NULL)
405 goto error;
406 if (!PyLong_Check(fdobj)) {
407 Py_DECREF(fdobj);
408 PyErr_SetString(PyExc_TypeError,
409 "expected integer from opener");
410 goto error;
411 }
412
Serhiy Storchaka78980432013-01-15 01:12:17 +0200413 self->fd = _PyLong_AsInt(fdobj);
Ross Lagerwall59142db2011-10-31 20:34:46 +0200414 Py_DECREF(fdobj);
415 if (self->fd == -1) {
416 goto error;
417 }
418 }
419
Hynek Schlawack7f59fd72012-06-22 09:32:22 +0200420 fd_is_own = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000421 if (self->fd < 0) {
Victor Stinner292c8352012-10-30 02:17:38 +0100422 PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000423 goto error;
424 }
Victor Stinnerdaf45552013-08-28 00:53:59 +0200425
426#ifndef MS_WINDOWS
427 if (_Py_set_inheritable(self->fd, 0, atomic_flag_works) < 0)
428 goto error;
429#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000430 }
Antoine Pitrou9235b252012-07-06 18:48:24 +0200431 if (dircheck(self, nameobj) < 0)
432 goto error;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000433
Victor Stinner89e34362011-01-07 18:47:22 +0000434#if defined(MS_WINDOWS) || defined(__CYGWIN__)
435 /* don't translate newlines (\r\n <=> \n) */
436 _setmode(self->fd, O_BINARY);
437#endif
438
Victor Stinnerd9d04192013-11-06 23:50:10 +0100439 if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000440 goto error;
Antoine Pitrou08838b62009-01-21 00:55:13 +0000441
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200442 if (self->appending) {
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000443 /* For consistent behaviour, we explicitly seek to the
444 end of file (otherwise, it might be done only on the
445 first write()). */
446 PyObject *pos = portable_lseek(self->fd, NULL, 2);
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200447 if (pos == NULL)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000448 goto error;
449 Py_DECREF(pos);
450 }
Antoine Pitrou7fb111b2009-03-04 11:14:01 +0000451
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000452 goto done;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000453
454 error:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000455 ret = -1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200456 if (!fd_is_own)
457 self->fd = -1;
Benjamin Petersonbbb04122010-10-30 23:16:28 +0000458 if (self->fd >= 0)
459 internal_close(self);
Guido van Rossum53807da2007-04-10 19:01:47 +0000460
Guido van Rossuma9e20242007-03-08 00:43:48 +0000461 done:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000462 Py_CLEAR(stringobj);
463 return ret;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000464}
465
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000466static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000467fileio_traverse(fileio *self, visitproc visit, void *arg)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000468{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000469 Py_VISIT(self->dict);
470 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000471}
472
473static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000474fileio_clear(fileio *self)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000475{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000476 Py_CLEAR(self->dict);
477 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000478}
479
Guido van Rossuma9e20242007-03-08 00:43:48 +0000480static void
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000481fileio_dealloc(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000482{
Antoine Pitrou796564c2013-07-30 19:59:21 +0200483 self->finalizing = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000484 if (_PyIOBase_finalize((PyObject *) self) < 0)
485 return;
486 _PyObject_GC_UNTRACK(self);
487 if (self->weakreflist != NULL)
488 PyObject_ClearWeakRefs((PyObject *) self);
489 Py_CLEAR(self->dict);
490 Py_TYPE(self)->tp_free((PyObject *)self);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000491}
492
493static PyObject *
494err_closed(void)
495{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000496 PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
497 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000498}
499
500static PyObject *
Guido van Rossum53807da2007-04-10 19:01:47 +0000501err_mode(char *action)
502{
Antoine Pitrou712cb732013-12-21 15:51:54 +0100503 _PyIO_State *state = IO_STATE();
504 if (state != NULL)
505 PyErr_Format(state->unsupported_operation,
506 "File not open for %s", action);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000507 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000508}
509
510static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000511fileio_fileno(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000512{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000513 if (self->fd < 0)
514 return err_closed();
515 return PyLong_FromLong((long) self->fd);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000516}
517
518static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000519fileio_readable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000520{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000521 if (self->fd < 0)
522 return err_closed();
523 return PyBool_FromLong((long) self->readable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000524}
525
526static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000527fileio_writable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000528{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000529 if (self->fd < 0)
530 return err_closed();
531 return PyBool_FromLong((long) self->writable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000532}
533
534static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000535fileio_seekable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000536{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000537 if (self->fd < 0)
538 return err_closed();
539 if (self->seekable < 0) {
540 PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR);
541 if (pos == NULL) {
542 PyErr_Clear();
543 self->seekable = 0;
544 } else {
545 Py_DECREF(pos);
546 self->seekable = 1;
547 }
548 }
549 return PyBool_FromLong((long) self->seekable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000550}
551
552static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000553fileio_readinto(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000554{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000555 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000556 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100557 int err;
Guido van Rossum53807da2007-04-10 19:01:47 +0000558
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000559 if (self->fd < 0)
560 return err_closed();
561 if (!self->readable)
562 return err_mode("reading");
Guido van Rossum53807da2007-04-10 19:01:47 +0000563
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000564 if (!PyArg_ParseTuple(args, "w*", &pbuf))
565 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000566
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000567 if (_PyVerify_fd(self->fd)) {
Victor Stinnere6edec22011-01-04 00:29:35 +0000568 len = pbuf.len;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000569 Py_BEGIN_ALLOW_THREADS
570 errno = 0;
Victor Stinner14b9b112013-06-25 00:37:25 +0200571#ifdef MS_WINDOWS
Victor Stinnere6edec22011-01-04 00:29:35 +0000572 if (len > INT_MAX)
573 len = INT_MAX;
574 n = read(self->fd, pbuf.buf, (int)len);
575#else
Victor Stinner72344792011-01-11 00:04:12 +0000576 n = read(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000577#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000578 Py_END_ALLOW_THREADS
579 } else
580 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100581 err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000582 PyBuffer_Release(&pbuf);
583 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100584 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000585 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100586 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000587 PyErr_SetFromErrno(PyExc_IOError);
588 return NULL;
589 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000590
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000591 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000592}
593
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100594#ifndef HAVE_FSTAT
595
596static PyObject *
597fileio_readall(fileio *self)
598{
599 _Py_IDENTIFIER(readall);
600 return _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
601 &PyId_readall, "O", self);
602}
603
604#else
605
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000606static size_t
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100607new_buffersize(fileio *self, size_t currentsize)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000608{
Antoine Pitroua3f44572012-04-17 13:50:58 +0200609 size_t addend;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100610
Nadeem Vawdad41a98b2011-10-13 13:34:16 +0200611 /* Expand the buffer by an amount proportional to the current size,
Antoine Pitroua3f44572012-04-17 13:50:58 +0200612 giving us amortized linear-time behavior. For bigger sizes, use a
613 less-than-double growth factor to avoid excessive allocation. */
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100614 assert(currentsize <= PY_SSIZE_T_MAX);
Antoine Pitroua3f44572012-04-17 13:50:58 +0200615 if (currentsize > 65536)
616 addend = currentsize >> 3;
617 else
618 addend = 256 + currentsize;
619 if (addend < SMALLCHUNK)
620 /* Avoid tiny read() calls. */
621 addend = SMALLCHUNK;
622 return addend + currentsize;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000623}
624
Guido van Rossum7165cb12007-07-10 06:54:34 +0000625static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000626fileio_readall(fileio *self)
Guido van Rossum7165cb12007-07-10 06:54:34 +0000627{
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200628 struct stat st;
Victor Stinnera2a64772011-10-11 22:45:02 +0200629 Py_off_t pos, end;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000630 PyObject *result;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100631 Py_ssize_t bytes_read = 0;
Victor Stinnerc44057d2013-01-03 03:33:21 +0100632 Py_ssize_t n;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100633 size_t bufsize;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000634
Victor Stinnerb79f28c2011-05-25 22:09:03 +0200635 if (self->fd < 0)
636 return err_closed();
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000637 if (!_PyVerify_fd(self->fd))
638 return PyErr_SetFromErrno(PyExc_IOError);
Kristján Valur Jónssona8abe862009-03-24 15:27:42 +0000639
Victor Stinner14b9b112013-06-25 00:37:25 +0200640#ifdef MS_WINDOWS
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200641 pos = _lseeki64(self->fd, 0L, SEEK_CUR);
642#else
643 pos = lseek(self->fd, 0L, SEEK_CUR);
644#endif
645 if (fstat(self->fd, &st) == 0)
646 end = st.st_size;
647 else
Victor Stinnera2a64772011-10-11 22:45:02 +0200648 end = (Py_off_t)-1;
Christian Heimesa872de52008-12-05 08:26:55 +0000649
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100650 if (end > 0 && end >= pos && pos >= 0 && end - pos < PY_SSIZE_T_MAX) {
651 /* This is probably a real file, so we try to allocate a
652 buffer one byte larger than the rest of the file. If the
653 calculation is right then we should get EOF without having
654 to enlarge the buffer. */
655 bufsize = (size_t)(end - pos + 1);
656 } else {
657 bufsize = SMALLCHUNK;
658 }
659
660 result = PyBytes_FromStringAndSize(NULL, bufsize);
661 if (result == NULL)
662 return NULL;
663
664 while (1) {
665 if (bytes_read >= (Py_ssize_t)bufsize) {
666 bufsize = new_buffersize(self, bytes_read);
667 if (bufsize > PY_SSIZE_T_MAX || bufsize <= 0) {
668 PyErr_SetString(PyExc_OverflowError,
669 "unbounded read returned more bytes "
Victor Stinner3e269392013-05-18 00:38:43 +0200670 "than a Python string can hold");
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100671 Py_DECREF(result);
672 return NULL;
673 }
674
675 if (PyBytes_GET_SIZE(result) < (Py_ssize_t)bufsize) {
676 if (_PyBytes_Resize(&result, bufsize) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000677 return NULL;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000678 }
679 }
680 Py_BEGIN_ALLOW_THREADS
681 errno = 0;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100682 n = bufsize - bytes_read;
Victor Stinner14b9b112013-06-25 00:37:25 +0200683#ifdef MS_WINDOWS
Victor Stinnerc44057d2013-01-03 03:33:21 +0100684 if (n > INT_MAX)
685 n = INT_MAX;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100686 n = read(self->fd, PyBytes_AS_STRING(result) + bytes_read, (int)n);
Victor Stinnerc44057d2013-01-03 03:33:21 +0100687#else
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100688 n = read(self->fd, PyBytes_AS_STRING(result) + bytes_read, n);
Victor Stinnerc44057d2013-01-03 03:33:21 +0100689#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000690 Py_END_ALLOW_THREADS
691 if (n == 0)
692 break;
693 if (n < 0) {
Gregory P. Smith51359922012-06-23 23:55:39 -0700694 if (errno == EINTR) {
695 if (PyErr_CheckSignals()) {
696 Py_DECREF(result);
697 return NULL;
698 }
699 continue;
700 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000701 if (errno == EAGAIN) {
Victor Stinnere10920f2014-07-02 22:59:31 +0200702 if (bytes_read > 0)
703 break;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000704 Py_DECREF(result);
705 Py_RETURN_NONE;
706 }
707 Py_DECREF(result);
708 PyErr_SetFromErrno(PyExc_IOError);
709 return NULL;
710 }
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100711 bytes_read += n;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200712 pos += n;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000713 }
Guido van Rossum7165cb12007-07-10 06:54:34 +0000714
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100715 if (PyBytes_GET_SIZE(result) > bytes_read) {
716 if (_PyBytes_Resize(&result, bytes_read) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000717 return NULL;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000718 }
719 return result;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000720}
721
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100722#endif /* HAVE_FSTAT */
723
Guido van Rossuma9e20242007-03-08 00:43:48 +0000724static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000725fileio_read(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000726{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000727 char *ptr;
728 Py_ssize_t n;
729 Py_ssize_t size = -1;
730 PyObject *bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000731
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000732 if (self->fd < 0)
733 return err_closed();
734 if (!self->readable)
735 return err_mode("reading");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000736
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000737 if (!PyArg_ParseTuple(args, "|O&", &_PyIO_ConvertSsize_t, &size))
738 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000739
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000740 if (size < 0) {
741 return fileio_readall(self);
742 }
Guido van Rossumc2f93dc2007-05-24 00:50:02 +0000743
Victor Stinner14b9b112013-06-25 00:37:25 +0200744#ifdef MS_WINDOWS
Victor Stinnerc655a722011-07-05 11:31:49 +0200745 if (size > INT_MAX)
746 size = INT_MAX;
747#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000748 bytes = PyBytes_FromStringAndSize(NULL, size);
749 if (bytes == NULL)
750 return NULL;
751 ptr = PyBytes_AS_STRING(bytes);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000752
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000753 if (_PyVerify_fd(self->fd)) {
754 Py_BEGIN_ALLOW_THREADS
755 errno = 0;
Victor Stinner14b9b112013-06-25 00:37:25 +0200756#ifdef MS_WINDOWS
Victor Stinnerc655a722011-07-05 11:31:49 +0200757 n = read(self->fd, ptr, (int)size);
758#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000759 n = read(self->fd, ptr, size);
Victor Stinnerc655a722011-07-05 11:31:49 +0200760#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000761 Py_END_ALLOW_THREADS
762 } else
763 n = -1;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000764
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000765 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100766 int err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000767 Py_DECREF(bytes);
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100768 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000769 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100770 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000771 PyErr_SetFromErrno(PyExc_IOError);
772 return NULL;
773 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000774
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000775 if (n != size) {
776 if (_PyBytes_Resize(&bytes, n) < 0) {
Victor Stinner85c761d2013-07-16 21:36:02 +0200777 Py_CLEAR(bytes);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000778 return NULL;
779 }
780 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000781
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000782 return (PyObject *) bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000783}
784
785static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000786fileio_write(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000787{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000788 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000789 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100790 int err;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000791
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000792 if (self->fd < 0)
793 return err_closed();
794 if (!self->writable)
795 return err_mode("writing");
Guido van Rossum53807da2007-04-10 19:01:47 +0000796
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000797 if (!PyArg_ParseTuple(args, "y*", &pbuf))
798 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000799
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000800 if (_PyVerify_fd(self->fd)) {
801 Py_BEGIN_ALLOW_THREADS
802 errno = 0;
Victor Stinnere6edec22011-01-04 00:29:35 +0000803 len = pbuf.len;
Victor Stinner14b9b112013-06-25 00:37:25 +0200804#ifdef MS_WINDOWS
Victor Stinnere0daff12011-03-20 23:36:35 +0100805 if (len > 32767 && isatty(self->fd)) {
806 /* Issue #11395: the Windows console returns an error (12: not
807 enough space error) on writing into stdout if stdout mode is
808 binary and the length is greater than 66,000 bytes (or less,
809 depending on heap usage). */
810 len = 32767;
811 }
812 else if (len > INT_MAX)
Victor Stinnere6edec22011-01-04 00:29:35 +0000813 len = INT_MAX;
814 n = write(self->fd, pbuf.buf, (int)len);
815#else
Victor Stinner72344792011-01-11 00:04:12 +0000816 n = write(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000817#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000818 Py_END_ALLOW_THREADS
819 } else
820 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100821 err = errno;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000822
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000823 PyBuffer_Release(&pbuf);
Martin v. Löwis423be952008-08-13 15:53:07 +0000824
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000825 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100826 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000827 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100828 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000829 PyErr_SetFromErrno(PyExc_IOError);
830 return NULL;
831 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000832
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000833 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000834}
835
Guido van Rossum53807da2007-04-10 19:01:47 +0000836/* XXX Windows support below is likely incomplete */
837
Guido van Rossum53807da2007-04-10 19:01:47 +0000838/* Cribbed from posix_lseek() */
839static PyObject *
840portable_lseek(int fd, PyObject *posobj, int whence)
841{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000842 Py_off_t pos, res;
Guido van Rossum53807da2007-04-10 19:01:47 +0000843
844#ifdef SEEK_SET
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000845 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
846 switch (whence) {
Guido van Rossum53807da2007-04-10 19:01:47 +0000847#if SEEK_SET != 0
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000848 case 0: whence = SEEK_SET; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000849#endif
850#if SEEK_CUR != 1
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000851 case 1: whence = SEEK_CUR; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000852#endif
Antoine Pitrou4f7945f2009-01-20 11:42:11 +0000853#if SEEK_END != 2
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000854 case 2: whence = SEEK_END; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000855#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000856 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000857#endif /* SEEK_SET */
858
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000859 if (posobj == NULL)
860 pos = 0;
861 else {
862 if(PyFloat_Check(posobj)) {
863 PyErr_SetString(PyExc_TypeError, "an integer is required");
864 return NULL;
865 }
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000866#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000867 pos = PyLong_AsLongLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000868#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000869 pos = PyLong_AsLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000870#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000871 if (PyErr_Occurred())
872 return NULL;
873 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000874
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000875 if (_PyVerify_fd(fd)) {
876 Py_BEGIN_ALLOW_THREADS
Victor Stinner14b9b112013-06-25 00:37:25 +0200877#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000878 res = _lseeki64(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000879#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000880 res = lseek(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000881#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000882 Py_END_ALLOW_THREADS
883 } else
884 res = -1;
885 if (res < 0)
886 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum53807da2007-04-10 19:01:47 +0000887
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000888#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000889 return PyLong_FromLongLong(res);
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000890#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000891 return PyLong_FromLong(res);
Guido van Rossum53807da2007-04-10 19:01:47 +0000892#endif
893}
894
Guido van Rossuma9e20242007-03-08 00:43:48 +0000895static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000896fileio_seek(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000897{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000898 PyObject *posobj;
899 int whence = 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000900
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000901 if (self->fd < 0)
902 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000903
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000904 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
905 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000906
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000907 return portable_lseek(self->fd, posobj, whence);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000908}
909
910static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000911fileio_tell(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000912{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000913 if (self->fd < 0)
914 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000915
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000916 return portable_lseek(self->fd, NULL, 1);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000917}
918
Thomas Hellerc6a55ee2007-07-11 12:45:46 +0000919#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +0000920static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000921fileio_truncate(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000922{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000923 PyObject *posobj = NULL; /* the new size wanted by the user */
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000924#ifndef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000925 Py_off_t pos;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000926#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000927 int ret;
928 int fd;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000929
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000930 fd = self->fd;
931 if (fd < 0)
932 return err_closed();
933 if (!self->writable)
934 return err_mode("writing");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000935
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000936 if (!PyArg_ParseTuple(args, "|O", &posobj))
937 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000938
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000939 if (posobj == Py_None || posobj == NULL) {
940 /* Get the current position. */
941 posobj = portable_lseek(fd, NULL, 1);
942 if (posobj == NULL)
943 return NULL;
944 }
945 else {
946 Py_INCREF(posobj);
947 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000948
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000949#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000950 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
951 so don't even try using it. */
952 {
953 PyObject *oldposobj, *tempposobj;
954 HANDLE hFile;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000955
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000956 /* we save the file pointer position */
957 oldposobj = portable_lseek(fd, NULL, 1);
958 if (oldposobj == NULL) {
959 Py_DECREF(posobj);
960 return NULL;
961 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000962
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000963 /* we then move to the truncation position */
964 tempposobj = portable_lseek(fd, posobj, 0);
965 if (tempposobj == NULL) {
966 Py_DECREF(oldposobj);
967 Py_DECREF(posobj);
968 return NULL;
969 }
970 Py_DECREF(tempposobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000971
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000972 /* Truncate. Note that this may grow the file! */
973 Py_BEGIN_ALLOW_THREADS
974 errno = 0;
975 hFile = (HANDLE)_get_osfhandle(fd);
976 ret = hFile == (HANDLE)-1; /* testing for INVALID_HANDLE value */
977 if (ret == 0) {
978 ret = SetEndOfFile(hFile) == 0;
979 if (ret)
980 errno = EACCES;
981 }
982 Py_END_ALLOW_THREADS
983
984 /* we restore the file pointer position in any case */
985 tempposobj = portable_lseek(fd, oldposobj, 0);
986 Py_DECREF(oldposobj);
987 if (tempposobj == NULL) {
988 Py_DECREF(posobj);
989 return NULL;
990 }
991 Py_DECREF(tempposobj);
992 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000993#else
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000994
995#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000996 pos = PyLong_AsLongLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000997#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000998 pos = PyLong_AsLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000999#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001000 if (PyErr_Occurred()){
1001 Py_DECREF(posobj);
1002 return NULL;
1003 }
Antoine Pitrou905a2ff2010-01-31 22:47:27 +00001004
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001005 Py_BEGIN_ALLOW_THREADS
1006 errno = 0;
1007 ret = ftruncate(fd, pos);
1008 Py_END_ALLOW_THREADS
Antoine Pitrou905a2ff2010-01-31 22:47:27 +00001009
Thomas Hellerfdeee3a2007-07-12 11:21:36 +00001010#endif /* !MS_WINDOWS */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001011
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001012 if (ret != 0) {
1013 Py_DECREF(posobj);
1014 PyErr_SetFromErrno(PyExc_IOError);
1015 return NULL;
1016 }
Guido van Rossuma9e20242007-03-08 00:43:48 +00001017
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001018 return posobj;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001019}
Antoine Pitrou905a2ff2010-01-31 22:47:27 +00001020#endif /* HAVE_FTRUNCATE */
Guido van Rossum53807da2007-04-10 19:01:47 +00001021
1022static char *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001023mode_string(fileio *self)
Guido van Rossum53807da2007-04-10 19:01:47 +00001024{
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001025 if (self->created) {
1026 if (self->readable)
1027 return "xb+";
1028 else
1029 return "xb";
1030 }
Antoine Pitroue93b63b2013-09-04 20:46:33 +02001031 if (self->appending) {
1032 if (self->readable)
1033 return "ab+";
1034 else
1035 return "ab";
1036 }
1037 else if (self->readable) {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001038 if (self->writable)
1039 return "rb+";
1040 else
1041 return "rb";
1042 }
1043 else
1044 return "wb";
Guido van Rossum53807da2007-04-10 19:01:47 +00001045}
Guido van Rossuma9e20242007-03-08 00:43:48 +00001046
1047static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001048fileio_repr(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001049{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001050 PyObject *nameobj, *res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001051
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001052 if (self->fd < 0)
1053 return PyUnicode_FromFormat("<_io.FileIO [closed]>");
Antoine Pitrou716c4442009-05-23 19:04:03 +00001054
Martin v. Löwis767046a2011-10-14 15:35:36 +02001055 nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001056 if (nameobj == NULL) {
1057 if (PyErr_ExceptionMatches(PyExc_AttributeError))
1058 PyErr_Clear();
1059 else
1060 return NULL;
1061 res = PyUnicode_FromFormat("<_io.FileIO fd=%d mode='%s'>",
1062 self->fd, mode_string(self));
1063 }
1064 else {
1065 res = PyUnicode_FromFormat("<_io.FileIO name=%R mode='%s'>",
1066 nameobj, mode_string(self));
1067 Py_DECREF(nameobj);
1068 }
1069 return res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001070}
1071
1072static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001073fileio_isatty(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001074{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001075 long res;
Guido van Rossum53807da2007-04-10 19:01:47 +00001076
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001077 if (self->fd < 0)
1078 return err_closed();
1079 Py_BEGIN_ALLOW_THREADS
1080 res = isatty(self->fd);
1081 Py_END_ALLOW_THREADS
1082 return PyBool_FromLong(res);
Guido van Rossuma9e20242007-03-08 00:43:48 +00001083}
1084
Antoine Pitrou243757e2010-11-05 21:15:39 +00001085static PyObject *
1086fileio_getstate(fileio *self)
1087{
1088 PyErr_Format(PyExc_TypeError,
1089 "cannot serialize '%s' object", Py_TYPE(self)->tp_name);
1090 return NULL;
1091}
1092
Guido van Rossuma9e20242007-03-08 00:43:48 +00001093
1094PyDoc_STRVAR(fileio_doc,
Ross Lagerwall59142db2011-10-31 20:34:46 +02001095"file(name: str[, mode: str][, opener: None]) -> file IO object\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001096"\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001097"Open a file. The mode can be 'r', 'w', 'x' or 'a' for reading (default),\n"
Charles-François Natalid612de12012-01-14 11:51:00 +01001098"writing, exclusive creation or appending. The file will be created if it\n"
1099"doesn't exist when opened for writing or appending; it will be truncated\n"
1100"when opened for writing. A `FileExistsError` will be raised if it already\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001101"exists when opened for creating. Opening a file for creating implies\n"
1102"writing so this mode behaves in a similar way to 'w'.Add a '+' to the mode\n"
1103"to allow simultaneous reading and writing. A custom opener can be used by\n"
1104"passing a callable as *opener*. The underlying file descriptor for the file\n"
Ross Lagerwall59142db2011-10-31 20:34:46 +02001105"object is then obtained by calling opener with (*name*, *flags*).\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001106"*opener* must return an open file descriptor (passing os.open as *opener*\n"
1107"results in functionality similar to passing None).");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001108
1109PyDoc_STRVAR(read_doc,
1110"read(size: int) -> bytes. read at most size bytes, returned as bytes.\n"
1111"\n"
1112"Only makes one system call, so less data may be returned than requested\n"
Guido van Rossum7165cb12007-07-10 06:54:34 +00001113"In non-blocking mode, returns None if no data is available.\n"
1114"On end-of-file, returns ''.");
1115
1116PyDoc_STRVAR(readall_doc,
1117"readall() -> bytes. read all data from the file, returned as bytes.\n"
1118"\n"
1119"In non-blocking mode, returns as much as is immediately available,\n"
1120"or None if no data is available. On end-of-file, returns ''.");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001121
1122PyDoc_STRVAR(write_doc,
1123"write(b: bytes) -> int. Write bytes b to file, return number written.\n"
1124"\n"
1125"Only makes one system call, so not all of the data may be written.\n"
1126"The number of bytes actually written is returned.");
1127
1128PyDoc_STRVAR(fileno_doc,
1129"fileno() -> int. \"file descriptor\".\n"
1130"\n"
1131"This is needed for lower-level file interfaces, such the fcntl module.");
1132
1133PyDoc_STRVAR(seek_doc,
Berker Peksagb87630c2014-09-24 12:43:29 +03001134"seek(offset: int[, whence: int]) -> int. Move to new file position and\n"
1135"return the file position.\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001136"\n"
1137"Argument offset is a byte count. Optional argument whence defaults to\n"
1138"0 (offset from start of file, offset should be >= 0); other values are 1\n"
1139"(move relative to current position, positive or negative), and 2 (move\n"
1140"relative to end of file, usually negative, although many platforms allow\n"
1141"seeking beyond the end of a file)."
1142"\n"
1143"Note that not all file objects are seekable.");
1144
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001145#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +00001146PyDoc_STRVAR(truncate_doc,
Berker Peksagb87630c2014-09-24 12:43:29 +03001147"truncate([size: int]) -> int. Truncate the file to at most size bytes\n"
1148"and return the truncated size.\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001149"\n"
Berker Peksagb87630c2014-09-24 12:43:29 +03001150"Size defaults to the current file position, as returned by tell().\n"
Alexandre Vassalotti77250f42008-05-06 19:48:38 +00001151"The current file position is changed to the value of size.");
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001152#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +00001153
1154PyDoc_STRVAR(tell_doc,
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001155"tell() -> int. Current file position");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001156
1157PyDoc_STRVAR(readinto_doc,
Benjamin Peterson9a8082f2009-03-05 00:55:56 +00001158"readinto() -> Same as RawIOBase.readinto().");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001159
1160PyDoc_STRVAR(close_doc,
1161"close() -> None. Close the file.\n"
1162"\n"
1163"A closed file cannot be used for further I/O operations. close() may be\n"
1164"called more than once without error. Changes the fileno to -1.");
1165
1166PyDoc_STRVAR(isatty_doc,
1167"isatty() -> bool. True if the file is connected to a tty device.");
1168
Guido van Rossuma9e20242007-03-08 00:43:48 +00001169PyDoc_STRVAR(seekable_doc,
1170"seekable() -> bool. True if file supports random-access.");
1171
1172PyDoc_STRVAR(readable_doc,
1173"readable() -> bool. True if file was opened in a read mode.");
1174
1175PyDoc_STRVAR(writable_doc,
1176"writable() -> bool. True if file was opened in a write mode.");
1177
1178static PyMethodDef fileio_methods[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001179 {"read", (PyCFunction)fileio_read, METH_VARARGS, read_doc},
1180 {"readall", (PyCFunction)fileio_readall, METH_NOARGS, readall_doc},
1181 {"readinto", (PyCFunction)fileio_readinto, METH_VARARGS, readinto_doc},
1182 {"write", (PyCFunction)fileio_write, METH_VARARGS, write_doc},
1183 {"seek", (PyCFunction)fileio_seek, METH_VARARGS, seek_doc},
1184 {"tell", (PyCFunction)fileio_tell, METH_VARARGS, tell_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001185#ifdef HAVE_FTRUNCATE
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001186 {"truncate", (PyCFunction)fileio_truncate, METH_VARARGS, truncate_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001187#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001188 {"close", (PyCFunction)fileio_close, METH_NOARGS, close_doc},
1189 {"seekable", (PyCFunction)fileio_seekable, METH_NOARGS, seekable_doc},
1190 {"readable", (PyCFunction)fileio_readable, METH_NOARGS, readable_doc},
1191 {"writable", (PyCFunction)fileio_writable, METH_NOARGS, writable_doc},
1192 {"fileno", (PyCFunction)fileio_fileno, METH_NOARGS, fileno_doc},
1193 {"isatty", (PyCFunction)fileio_isatty, METH_NOARGS, isatty_doc},
Antoine Pitroue033e062010-10-29 10:38:18 +00001194 {"_dealloc_warn", (PyCFunction)fileio_dealloc_warn, METH_O, NULL},
Antoine Pitrou243757e2010-11-05 21:15:39 +00001195 {"__getstate__", (PyCFunction)fileio_getstate, METH_NOARGS, NULL},
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001196 {NULL, NULL} /* sentinel */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001197};
1198
Guido van Rossum53807da2007-04-10 19:01:47 +00001199/* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
1200
Guido van Rossumb0428152007-04-08 17:44:42 +00001201static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001202get_closed(fileio *self, void *closure)
Guido van Rossumb0428152007-04-08 17:44:42 +00001203{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001204 return PyBool_FromLong((long)(self->fd < 0));
Guido van Rossum53807da2007-04-10 19:01:47 +00001205}
1206
1207static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001208get_closefd(fileio *self, void *closure)
Christian Heimesecc42a22008-11-05 19:30:32 +00001209{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001210 return PyBool_FromLong((long)(self->closefd));
Christian Heimesecc42a22008-11-05 19:30:32 +00001211}
1212
1213static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001214get_mode(fileio *self, void *closure)
Guido van Rossum53807da2007-04-10 19:01:47 +00001215{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001216 return PyUnicode_FromString(mode_string(self));
Guido van Rossumb0428152007-04-08 17:44:42 +00001217}
1218
1219static PyGetSetDef fileio_getsetlist[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001220 {"closed", (getter)get_closed, NULL, "True if the file is closed"},
1221 {"closefd", (getter)get_closefd, NULL,
1222 "True if the file descriptor will be closed"},
1223 {"mode", (getter)get_mode, NULL, "String giving the file mode"},
1224 {NULL},
Guido van Rossumb0428152007-04-08 17:44:42 +00001225};
1226
Antoine Pitrou796564c2013-07-30 19:59:21 +02001227static PyMemberDef fileio_members[] = {
1228 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
1229 {NULL}
1230};
1231
Guido van Rossuma9e20242007-03-08 00:43:48 +00001232PyTypeObject PyFileIO_Type = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001233 PyVarObject_HEAD_INIT(NULL, 0)
1234 "_io.FileIO",
1235 sizeof(fileio),
1236 0,
1237 (destructor)fileio_dealloc, /* tp_dealloc */
1238 0, /* tp_print */
1239 0, /* tp_getattr */
1240 0, /* tp_setattr */
1241 0, /* tp_reserved */
1242 (reprfunc)fileio_repr, /* tp_repr */
1243 0, /* tp_as_number */
1244 0, /* tp_as_sequence */
1245 0, /* tp_as_mapping */
1246 0, /* tp_hash */
1247 0, /* tp_call */
1248 0, /* tp_str */
1249 PyObject_GenericGetAttr, /* tp_getattro */
1250 0, /* tp_setattro */
1251 0, /* tp_as_buffer */
1252 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
Antoine Pitrou796564c2013-07-30 19:59:21 +02001253 | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001254 fileio_doc, /* tp_doc */
1255 (traverseproc)fileio_traverse, /* tp_traverse */
1256 (inquiry)fileio_clear, /* tp_clear */
1257 0, /* tp_richcompare */
1258 offsetof(fileio, weakreflist), /* tp_weaklistoffset */
1259 0, /* tp_iter */
1260 0, /* tp_iternext */
1261 fileio_methods, /* tp_methods */
Antoine Pitrou796564c2013-07-30 19:59:21 +02001262 fileio_members, /* tp_members */
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001263 fileio_getsetlist, /* tp_getset */
1264 0, /* tp_base */
1265 0, /* tp_dict */
1266 0, /* tp_descr_get */
1267 0, /* tp_descr_set */
1268 offsetof(fileio, dict), /* tp_dictoffset */
1269 fileio_init, /* tp_init */
1270 PyType_GenericAlloc, /* tp_alloc */
1271 fileio_new, /* tp_new */
1272 PyObject_GC_Del, /* tp_free */
Antoine Pitrou796564c2013-07-30 19:59:21 +02001273 0, /* tp_is_gc */
1274 0, /* tp_bases */
1275 0, /* tp_mro */
1276 0, /* tp_cache */
1277 0, /* tp_subclasses */
1278 0, /* tp_weaklist */
1279 0, /* tp_del */
1280 0, /* tp_version_tag */
1281 0, /* tp_finalize */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001282};