blob: a2b253bd03b16b478b400f51fef6e6fc349f9c64 [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{
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200129 _Py_IDENTIFIER(close);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000130 if (!self->closefd) {
131 self->fd = -1;
132 Py_RETURN_NONE;
133 }
Antoine Pitrou796564c2013-07-30 19:59:21 +0200134 if (self->finalizing) {
Antoine Pitroue033e062010-10-29 10:38:18 +0000135 PyObject *r = fileio_dealloc_warn(self, (PyObject *) self);
136 if (r)
137 Py_DECREF(r);
138 else
139 PyErr_Clear();
140 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000141 errno = internal_close(self);
142 if (errno < 0)
143 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000144
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200145 return _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
146 &PyId_close, "O", self);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000147}
148
149static PyObject *
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000150fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000151{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000152 fileio *self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000153
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000154 assert(type != NULL && type->tp_alloc != NULL);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000155
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000156 self = (fileio *) type->tp_alloc(type, 0);
157 if (self != NULL) {
158 self->fd = -1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100159 self->created = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000160 self->readable = 0;
161 self->writable = 0;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200162 self->appending = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000163 self->seekable = -1;
164 self->closefd = 1;
165 self->weakreflist = NULL;
166 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000167
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000168 return (PyObject *) self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000169}
170
171/* On Unix, open will succeed for directories.
172 In Python, there should be no file objects referring to
173 directories, so we need a check. */
174
175static int
Antoine Pitrou9235b252012-07-06 18:48:24 +0200176dircheck(fileio* self, PyObject *nameobj)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000177{
Christian Heimes91e8b812013-06-23 23:51:44 +0200178#if defined(HAVE_FSTAT) && defined(S_ISDIR) && defined(EISDIR)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000179 struct stat buf;
180 if (self->fd < 0)
181 return 0;
182 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
Antoine Pitrou9235b252012-07-06 18:48:24 +0200183 errno = EISDIR;
184 PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000185 return -1;
186 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000187#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000188 return 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000189}
190
Benjamin Peterson806d4022009-01-19 15:11:51 +0000191static int
192check_fd(int fd)
193{
194#if defined(HAVE_FSTAT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000195 struct stat buf;
196 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
197 PyObject *exc;
198 char *msg = strerror(EBADF);
199 exc = PyObject_CallFunction(PyExc_OSError, "(is)",
200 EBADF, msg);
201 PyErr_SetObject(PyExc_OSError, exc);
202 Py_XDECREF(exc);
203 return -1;
204 }
Benjamin Peterson806d4022009-01-19 15:11:51 +0000205#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000206 return 0;
Benjamin Peterson806d4022009-01-19 15:11:51 +0000207}
208
Victor Stinnerdaf45552013-08-28 00:53:59 +0200209#ifdef O_CLOEXEC
210extern int _Py_open_cloexec_works;
211#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +0000212
213static int
214fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
215{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000216 fileio *self = (fileio *) oself;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200217 static char *kwlist[] = {"file", "mode", "closefd", "opener", NULL};
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000218 const char *name = NULL;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200219 PyObject *nameobj, *stringobj = NULL, *opener = Py_None;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000220 char *mode = "r";
221 char *s;
Thomas Helleraf2be262007-07-12 11:03:13 +0000222#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000223 Py_UNICODE *widename = NULL;
Thomas Helleraf2be262007-07-12 11:03:13 +0000224#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000225 int ret = 0;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200226 int rwa = 0, plus = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000227 int flags = 0;
228 int fd = -1;
229 int closefd = 1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200230 int fd_is_own = 0;
Victor Stinnerdaf45552013-08-28 00:53:59 +0200231#ifdef O_CLOEXEC
232 int *atomic_flag_works = &_Py_open_cloexec_works;
233#elif !defined(MS_WINDOWS)
234 int *atomic_flag_works = NULL;
235#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +0000236
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000237 assert(PyFileIO_Check(oself));
238 if (self->fd >= 0) {
Hynek Schlawack2cc71562012-05-25 10:05:53 +0200239 if (self->closefd) {
240 /* Have to close the existing file first. */
241 if (internal_close(self) < 0)
242 return -1;
243 }
244 else
245 self->fd = -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000246 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000247
Ross Lagerwall59142db2011-10-31 20:34:46 +0200248 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|siO:fileio",
249 kwlist, &nameobj, &mode, &closefd,
250 &opener))
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000251 return -1;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000252
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000253 if (PyFloat_Check(nameobj)) {
254 PyErr_SetString(PyExc_TypeError,
255 "integer argument expected, got float");
256 return -1;
257 }
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000258
Serhiy Storchaka78980432013-01-15 01:12:17 +0200259 fd = _PyLong_AsInt(nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000260 if (fd < 0) {
261 if (!PyErr_Occurred()) {
262 PyErr_SetString(PyExc_ValueError,
263 "Negative filedescriptor");
264 return -1;
265 }
266 PyErr_Clear();
267 }
Guido van Rossumb0428152007-04-08 17:44:42 +0000268
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +0000269#ifdef MS_WINDOWS
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200270 if (PyUnicode_Check(nameobj)) {
Antoine Pitrou13348842012-01-29 18:36:34 +0100271 int rv = _PyUnicode_HasNULChars(nameobj);
272 if (rv) {
273 if (rv != -1)
274 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
275 return -1;
276 }
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200277 widename = PyUnicode_AsUnicode(nameobj);
278 if (widename == NULL)
279 return -1;
280 } else
Guido van Rossuma9e20242007-03-08 00:43:48 +0000281#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000282 if (fd < 0)
283 {
Antoine Pitrou13348842012-01-29 18:36:34 +0100284 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
285 return -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000286 }
Antoine Pitrou13348842012-01-29 18:36:34 +0100287 name = PyBytes_AS_STRING(stringobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000288 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000289
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000290 s = mode;
291 while (*s) {
292 switch (*s++) {
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100293 case 'x':
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000294 if (rwa) {
295 bad_mode:
296 PyErr_SetString(PyExc_ValueError,
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100297 "Must have exactly one of create/read/write/append "
Georg Brandl28928ae2010-10-21 13:45:52 +0000298 "mode and at most one plus");
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000299 goto error;
300 }
301 rwa = 1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100302 self->created = 1;
303 self->writable = 1;
304 flags |= O_EXCL | O_CREAT;
305 break;
306 case 'r':
307 if (rwa)
308 goto bad_mode;
309 rwa = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000310 self->readable = 1;
311 break;
312 case 'w':
313 if (rwa)
314 goto bad_mode;
315 rwa = 1;
316 self->writable = 1;
317 flags |= O_CREAT | O_TRUNC;
318 break;
319 case 'a':
320 if (rwa)
321 goto bad_mode;
322 rwa = 1;
323 self->writable = 1;
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200324 self->appending = 1;
325 flags |= O_APPEND | O_CREAT;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000326 break;
327 case 'b':
328 break;
329 case '+':
330 if (plus)
331 goto bad_mode;
332 self->readable = self->writable = 1;
333 plus = 1;
334 break;
335 default:
336 PyErr_Format(PyExc_ValueError,
337 "invalid mode: %.200s", mode);
338 goto error;
339 }
340 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000341
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000342 if (!rwa)
343 goto bad_mode;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000344
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000345 if (self->readable && self->writable)
346 flags |= O_RDWR;
347 else if (self->readable)
348 flags |= O_RDONLY;
349 else
350 flags |= O_WRONLY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000351
352#ifdef O_BINARY
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000353 flags |= O_BINARY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000354#endif
355
Victor Stinnerdaf45552013-08-28 00:53:59 +0200356#ifdef MS_WINDOWS
357 flags |= O_NOINHERIT;
358#elif defined(O_CLOEXEC)
359 flags |= O_CLOEXEC;
360#endif
Walter Dörwald0e411482007-06-06 16:55:38 +0000361
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000362 if (fd >= 0) {
363 if (check_fd(fd))
364 goto error;
365 self->fd = fd;
366 self->closefd = closefd;
367 }
368 else {
369 self->closefd = 1;
370 if (!closefd) {
371 PyErr_SetString(PyExc_ValueError,
372 "Cannot use closefd=False with file name");
373 goto error;
374 }
Guido van Rossum2dced8b2007-10-30 17:27:30 +0000375
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000376 errno = 0;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200377 if (opener == Py_None) {
378 Py_BEGIN_ALLOW_THREADS
Thomas Helleraf2be262007-07-12 11:03:13 +0000379#ifdef MS_WINDOWS
Ross Lagerwall59142db2011-10-31 20:34:46 +0200380 if (widename != NULL)
381 self->fd = _wopen(widename, flags, 0666);
382 else
Thomas Helleraf2be262007-07-12 11:03:13 +0000383#endif
Ross Lagerwall59142db2011-10-31 20:34:46 +0200384 self->fd = open(name, flags, 0666);
Victor Stinnerdaf45552013-08-28 00:53:59 +0200385
Ross Lagerwall59142db2011-10-31 20:34:46 +0200386 Py_END_ALLOW_THREADS
Victor Stinnerdaf45552013-08-28 00:53:59 +0200387 }
388 else {
389 PyObject *fdobj;
390
391#ifndef MS_WINDOWS
392 /* the opener may clear the atomic flag */
393 atomic_flag_works = NULL;
394#endif
395
396 fdobj = PyObject_CallFunction(opener, "Oi", nameobj, flags);
Ross Lagerwall59142db2011-10-31 20:34:46 +0200397 if (fdobj == NULL)
398 goto error;
399 if (!PyLong_Check(fdobj)) {
400 Py_DECREF(fdobj);
401 PyErr_SetString(PyExc_TypeError,
402 "expected integer from opener");
403 goto error;
404 }
405
Serhiy Storchaka78980432013-01-15 01:12:17 +0200406 self->fd = _PyLong_AsInt(fdobj);
Ross Lagerwall59142db2011-10-31 20:34:46 +0200407 Py_DECREF(fdobj);
408 if (self->fd == -1) {
409 goto error;
410 }
411 }
412
Hynek Schlawack7f59fd72012-06-22 09:32:22 +0200413 fd_is_own = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000414 if (self->fd < 0) {
Victor Stinner292c8352012-10-30 02:17:38 +0100415 PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000416 goto error;
417 }
Victor Stinnerdaf45552013-08-28 00:53:59 +0200418
419#ifndef MS_WINDOWS
420 if (_Py_set_inheritable(self->fd, 0, atomic_flag_works) < 0)
421 goto error;
422#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000423 }
Antoine Pitrou9235b252012-07-06 18:48:24 +0200424 if (dircheck(self, nameobj) < 0)
425 goto error;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000426
Victor Stinner89e34362011-01-07 18:47:22 +0000427#if defined(MS_WINDOWS) || defined(__CYGWIN__)
428 /* don't translate newlines (\r\n <=> \n) */
429 _setmode(self->fd, O_BINARY);
430#endif
431
Victor Stinnerd9d04192013-11-06 23:50:10 +0100432 if (_PyObject_SetAttrId((PyObject *)self, &PyId_name, nameobj) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000433 goto error;
Antoine Pitrou08838b62009-01-21 00:55:13 +0000434
Antoine Pitroue93b63b2013-09-04 20:46:33 +0200435 if (self->appending) {
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000436 /* For consistent behaviour, we explicitly seek to the
437 end of file (otherwise, it might be done only on the
438 first write()). */
439 PyObject *pos = portable_lseek(self->fd, NULL, 2);
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200440 if (pos == NULL)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000441 goto error;
442 Py_DECREF(pos);
443 }
Antoine Pitrou7fb111b2009-03-04 11:14:01 +0000444
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000445 goto done;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000446
447 error:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000448 ret = -1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200449 if (!fd_is_own)
450 self->fd = -1;
Benjamin Petersonbbb04122010-10-30 23:16:28 +0000451 if (self->fd >= 0)
452 internal_close(self);
Guido van Rossum53807da2007-04-10 19:01:47 +0000453
Guido van Rossuma9e20242007-03-08 00:43:48 +0000454 done:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000455 Py_CLEAR(stringobj);
456 return ret;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000457}
458
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000459static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000460fileio_traverse(fileio *self, visitproc visit, void *arg)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000461{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000462 Py_VISIT(self->dict);
463 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000464}
465
466static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000467fileio_clear(fileio *self)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000468{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000469 Py_CLEAR(self->dict);
470 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000471}
472
Guido van Rossuma9e20242007-03-08 00:43:48 +0000473static void
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000474fileio_dealloc(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000475{
Antoine Pitrou796564c2013-07-30 19:59:21 +0200476 self->finalizing = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000477 if (_PyIOBase_finalize((PyObject *) self) < 0)
478 return;
479 _PyObject_GC_UNTRACK(self);
480 if (self->weakreflist != NULL)
481 PyObject_ClearWeakRefs((PyObject *) self);
482 Py_CLEAR(self->dict);
483 Py_TYPE(self)->tp_free((PyObject *)self);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000484}
485
486static PyObject *
487err_closed(void)
488{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000489 PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
490 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000491}
492
493static PyObject *
Guido van Rossum53807da2007-04-10 19:01:47 +0000494err_mode(char *action)
495{
Antoine Pitrou712cb732013-12-21 15:51:54 +0100496 _PyIO_State *state = IO_STATE();
497 if (state != NULL)
498 PyErr_Format(state->unsupported_operation,
499 "File not open for %s", action);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000500 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000501}
502
503static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000504fileio_fileno(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000505{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000506 if (self->fd < 0)
507 return err_closed();
508 return PyLong_FromLong((long) self->fd);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000509}
510
511static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000512fileio_readable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000513{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000514 if (self->fd < 0)
515 return err_closed();
516 return PyBool_FromLong((long) self->readable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000517}
518
519static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000520fileio_writable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000521{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000522 if (self->fd < 0)
523 return err_closed();
524 return PyBool_FromLong((long) self->writable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000525}
526
527static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000528fileio_seekable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000529{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000530 if (self->fd < 0)
531 return err_closed();
532 if (self->seekable < 0) {
533 PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR);
534 if (pos == NULL) {
535 PyErr_Clear();
536 self->seekable = 0;
537 } else {
538 Py_DECREF(pos);
539 self->seekable = 1;
540 }
541 }
542 return PyBool_FromLong((long) self->seekable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000543}
544
545static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000546fileio_readinto(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000547{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000548 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000549 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100550 int err;
Guido van Rossum53807da2007-04-10 19:01:47 +0000551
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000552 if (self->fd < 0)
553 return err_closed();
554 if (!self->readable)
555 return err_mode("reading");
Guido van Rossum53807da2007-04-10 19:01:47 +0000556
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000557 if (!PyArg_ParseTuple(args, "w*", &pbuf))
558 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000559
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000560 if (_PyVerify_fd(self->fd)) {
Victor Stinnere6edec22011-01-04 00:29:35 +0000561 len = pbuf.len;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000562 Py_BEGIN_ALLOW_THREADS
563 errno = 0;
Victor Stinner14b9b112013-06-25 00:37:25 +0200564#ifdef MS_WINDOWS
Victor Stinnere6edec22011-01-04 00:29:35 +0000565 if (len > INT_MAX)
566 len = INT_MAX;
567 n = read(self->fd, pbuf.buf, (int)len);
568#else
Victor Stinner72344792011-01-11 00:04:12 +0000569 n = read(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000570#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000571 Py_END_ALLOW_THREADS
572 } else
573 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100574 err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000575 PyBuffer_Release(&pbuf);
576 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100577 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000578 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100579 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000580 PyErr_SetFromErrno(PyExc_IOError);
581 return NULL;
582 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000583
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000584 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000585}
586
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100587#ifndef HAVE_FSTAT
588
589static PyObject *
590fileio_readall(fileio *self)
591{
592 _Py_IDENTIFIER(readall);
593 return _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
594 &PyId_readall, "O", self);
595}
596
597#else
598
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000599static size_t
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100600new_buffersize(fileio *self, size_t currentsize)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000601{
Antoine Pitroua3f44572012-04-17 13:50:58 +0200602 size_t addend;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100603
Nadeem Vawdad41a98b2011-10-13 13:34:16 +0200604 /* Expand the buffer by an amount proportional to the current size,
Antoine Pitroua3f44572012-04-17 13:50:58 +0200605 giving us amortized linear-time behavior. For bigger sizes, use a
606 less-than-double growth factor to avoid excessive allocation. */
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100607 assert(currentsize <= PY_SSIZE_T_MAX);
Antoine Pitroua3f44572012-04-17 13:50:58 +0200608 if (currentsize > 65536)
609 addend = currentsize >> 3;
610 else
611 addend = 256 + currentsize;
612 if (addend < SMALLCHUNK)
613 /* Avoid tiny read() calls. */
614 addend = SMALLCHUNK;
615 return addend + currentsize;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000616}
617
Guido van Rossum7165cb12007-07-10 06:54:34 +0000618static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000619fileio_readall(fileio *self)
Guido van Rossum7165cb12007-07-10 06:54:34 +0000620{
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200621 struct stat st;
Victor Stinnera2a64772011-10-11 22:45:02 +0200622 Py_off_t pos, end;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000623 PyObject *result;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100624 Py_ssize_t bytes_read = 0;
Victor Stinnerc44057d2013-01-03 03:33:21 +0100625 Py_ssize_t n;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100626 size_t bufsize;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000627
Victor Stinnerb79f28c2011-05-25 22:09:03 +0200628 if (self->fd < 0)
629 return err_closed();
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000630 if (!_PyVerify_fd(self->fd))
631 return PyErr_SetFromErrno(PyExc_IOError);
Kristján Valur Jónssona8abe862009-03-24 15:27:42 +0000632
Victor Stinner14b9b112013-06-25 00:37:25 +0200633#ifdef MS_WINDOWS
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200634 pos = _lseeki64(self->fd, 0L, SEEK_CUR);
635#else
636 pos = lseek(self->fd, 0L, SEEK_CUR);
637#endif
638 if (fstat(self->fd, &st) == 0)
639 end = st.st_size;
640 else
Victor Stinnera2a64772011-10-11 22:45:02 +0200641 end = (Py_off_t)-1;
Christian Heimesa872de52008-12-05 08:26:55 +0000642
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100643 if (end > 0 && end >= pos && pos >= 0 && end - pos < PY_SSIZE_T_MAX) {
644 /* This is probably a real file, so we try to allocate a
645 buffer one byte larger than the rest of the file. If the
646 calculation is right then we should get EOF without having
647 to enlarge the buffer. */
648 bufsize = (size_t)(end - pos + 1);
649 } else {
650 bufsize = SMALLCHUNK;
651 }
652
653 result = PyBytes_FromStringAndSize(NULL, bufsize);
654 if (result == NULL)
655 return NULL;
656
657 while (1) {
658 if (bytes_read >= (Py_ssize_t)bufsize) {
659 bufsize = new_buffersize(self, bytes_read);
660 if (bufsize > PY_SSIZE_T_MAX || bufsize <= 0) {
661 PyErr_SetString(PyExc_OverflowError,
662 "unbounded read returned more bytes "
Victor Stinner3e269392013-05-18 00:38:43 +0200663 "than a Python string can hold");
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100664 Py_DECREF(result);
665 return NULL;
666 }
667
668 if (PyBytes_GET_SIZE(result) < (Py_ssize_t)bufsize) {
669 if (_PyBytes_Resize(&result, bufsize) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000670 return NULL;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000671 }
672 }
673 Py_BEGIN_ALLOW_THREADS
674 errno = 0;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100675 n = bufsize - bytes_read;
Victor Stinner14b9b112013-06-25 00:37:25 +0200676#ifdef MS_WINDOWS
Victor Stinnerc44057d2013-01-03 03:33:21 +0100677 if (n > INT_MAX)
678 n = INT_MAX;
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100679 n = read(self->fd, PyBytes_AS_STRING(result) + bytes_read, (int)n);
Victor Stinnerc44057d2013-01-03 03:33:21 +0100680#else
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100681 n = read(self->fd, PyBytes_AS_STRING(result) + bytes_read, n);
Victor Stinnerc44057d2013-01-03 03:33:21 +0100682#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000683 Py_END_ALLOW_THREADS
684 if (n == 0)
685 break;
686 if (n < 0) {
Gregory P. Smith51359922012-06-23 23:55:39 -0700687 if (errno == EINTR) {
688 if (PyErr_CheckSignals()) {
689 Py_DECREF(result);
690 return NULL;
691 }
692 continue;
693 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000694 if (errno == EAGAIN) {
Victor Stinnere10920f2014-07-02 22:59:31 +0200695 if (bytes_read > 0)
696 break;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000697 Py_DECREF(result);
698 Py_RETURN_NONE;
699 }
700 Py_DECREF(result);
701 PyErr_SetFromErrno(PyExc_IOError);
702 return NULL;
703 }
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100704 bytes_read += n;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200705 pos += n;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000706 }
Guido van Rossum7165cb12007-07-10 06:54:34 +0000707
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100708 if (PyBytes_GET_SIZE(result) > bytes_read) {
709 if (_PyBytes_Resize(&result, bytes_read) < 0)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000710 return NULL;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000711 }
712 return result;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000713}
714
Richard Oudkerkaf7260e2013-05-17 23:34:42 +0100715#endif /* HAVE_FSTAT */
716
Guido van Rossuma9e20242007-03-08 00:43:48 +0000717static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000718fileio_read(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000719{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000720 char *ptr;
721 Py_ssize_t n;
722 Py_ssize_t size = -1;
723 PyObject *bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000724
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000725 if (self->fd < 0)
726 return err_closed();
727 if (!self->readable)
728 return err_mode("reading");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000729
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000730 if (!PyArg_ParseTuple(args, "|O&", &_PyIO_ConvertSsize_t, &size))
731 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000732
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000733 if (size < 0) {
734 return fileio_readall(self);
735 }
Guido van Rossumc2f93dc2007-05-24 00:50:02 +0000736
Victor Stinner14b9b112013-06-25 00:37:25 +0200737#ifdef MS_WINDOWS
Victor Stinnerc655a722011-07-05 11:31:49 +0200738 if (size > INT_MAX)
739 size = INT_MAX;
740#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000741 bytes = PyBytes_FromStringAndSize(NULL, size);
742 if (bytes == NULL)
743 return NULL;
744 ptr = PyBytes_AS_STRING(bytes);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000745
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000746 if (_PyVerify_fd(self->fd)) {
747 Py_BEGIN_ALLOW_THREADS
748 errno = 0;
Victor Stinner14b9b112013-06-25 00:37:25 +0200749#ifdef MS_WINDOWS
Victor Stinnerc655a722011-07-05 11:31:49 +0200750 n = read(self->fd, ptr, (int)size);
751#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000752 n = read(self->fd, ptr, size);
Victor Stinnerc655a722011-07-05 11:31:49 +0200753#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000754 Py_END_ALLOW_THREADS
755 } else
756 n = -1;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000757
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000758 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100759 int err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000760 Py_DECREF(bytes);
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100761 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000762 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100763 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000764 PyErr_SetFromErrno(PyExc_IOError);
765 return NULL;
766 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000767
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000768 if (n != size) {
769 if (_PyBytes_Resize(&bytes, n) < 0) {
Victor Stinner85c761d2013-07-16 21:36:02 +0200770 Py_CLEAR(bytes);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000771 return NULL;
772 }
773 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000774
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000775 return (PyObject *) bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000776}
777
778static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000779fileio_write(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000780{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000781 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000782 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100783 int err;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000784
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000785 if (self->fd < 0)
786 return err_closed();
787 if (!self->writable)
788 return err_mode("writing");
Guido van Rossum53807da2007-04-10 19:01:47 +0000789
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000790 if (!PyArg_ParseTuple(args, "y*", &pbuf))
791 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000792
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000793 if (_PyVerify_fd(self->fd)) {
794 Py_BEGIN_ALLOW_THREADS
795 errno = 0;
Victor Stinnere6edec22011-01-04 00:29:35 +0000796 len = pbuf.len;
Victor Stinner14b9b112013-06-25 00:37:25 +0200797#ifdef MS_WINDOWS
Victor Stinnere0daff12011-03-20 23:36:35 +0100798 if (len > 32767 && isatty(self->fd)) {
799 /* Issue #11395: the Windows console returns an error (12: not
800 enough space error) on writing into stdout if stdout mode is
801 binary and the length is greater than 66,000 bytes (or less,
802 depending on heap usage). */
803 len = 32767;
804 }
805 else if (len > INT_MAX)
Victor Stinnere6edec22011-01-04 00:29:35 +0000806 len = INT_MAX;
807 n = write(self->fd, pbuf.buf, (int)len);
808#else
Victor Stinner72344792011-01-11 00:04:12 +0000809 n = write(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000810#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000811 Py_END_ALLOW_THREADS
812 } else
813 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100814 err = errno;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000815
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000816 PyBuffer_Release(&pbuf);
Martin v. Löwis423be952008-08-13 15:53:07 +0000817
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000818 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100819 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000820 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100821 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000822 PyErr_SetFromErrno(PyExc_IOError);
823 return NULL;
824 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000825
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000826 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000827}
828
Guido van Rossum53807da2007-04-10 19:01:47 +0000829/* XXX Windows support below is likely incomplete */
830
Guido van Rossum53807da2007-04-10 19:01:47 +0000831/* Cribbed from posix_lseek() */
832static PyObject *
833portable_lseek(int fd, PyObject *posobj, int whence)
834{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000835 Py_off_t pos, res;
Guido van Rossum53807da2007-04-10 19:01:47 +0000836
837#ifdef SEEK_SET
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000838 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
839 switch (whence) {
Guido van Rossum53807da2007-04-10 19:01:47 +0000840#if SEEK_SET != 0
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000841 case 0: whence = SEEK_SET; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000842#endif
843#if SEEK_CUR != 1
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000844 case 1: whence = SEEK_CUR; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000845#endif
Antoine Pitrou4f7945f2009-01-20 11:42:11 +0000846#if SEEK_END != 2
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000847 case 2: whence = SEEK_END; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000848#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000849 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000850#endif /* SEEK_SET */
851
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000852 if (posobj == NULL)
853 pos = 0;
854 else {
855 if(PyFloat_Check(posobj)) {
856 PyErr_SetString(PyExc_TypeError, "an integer is required");
857 return NULL;
858 }
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000859#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000860 pos = PyLong_AsLongLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000861#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000862 pos = PyLong_AsLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000863#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000864 if (PyErr_Occurred())
865 return NULL;
866 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000867
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000868 if (_PyVerify_fd(fd)) {
869 Py_BEGIN_ALLOW_THREADS
Victor Stinner14b9b112013-06-25 00:37:25 +0200870#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000871 res = _lseeki64(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000872#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000873 res = lseek(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000874#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000875 Py_END_ALLOW_THREADS
876 } else
877 res = -1;
878 if (res < 0)
879 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum53807da2007-04-10 19:01:47 +0000880
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000881#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000882 return PyLong_FromLongLong(res);
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000883#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000884 return PyLong_FromLong(res);
Guido van Rossum53807da2007-04-10 19:01:47 +0000885#endif
886}
887
Guido van Rossuma9e20242007-03-08 00:43:48 +0000888static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000889fileio_seek(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000890{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000891 PyObject *posobj;
892 int whence = 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000893
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000894 if (self->fd < 0)
895 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000896
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000897 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
898 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000899
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000900 return portable_lseek(self->fd, posobj, whence);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000901}
902
903static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000904fileio_tell(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000905{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000906 if (self->fd < 0)
907 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000908
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000909 return portable_lseek(self->fd, NULL, 1);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000910}
911
Thomas Hellerc6a55ee2007-07-11 12:45:46 +0000912#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +0000913static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000914fileio_truncate(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000915{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000916 PyObject *posobj = NULL; /* the new size wanted by the user */
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000917#ifndef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000918 Py_off_t pos;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000919#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000920 int ret;
921 int fd;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000922
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000923 fd = self->fd;
924 if (fd < 0)
925 return err_closed();
926 if (!self->writable)
927 return err_mode("writing");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000928
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000929 if (!PyArg_ParseTuple(args, "|O", &posobj))
930 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000931
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000932 if (posobj == Py_None || posobj == NULL) {
933 /* Get the current position. */
934 posobj = portable_lseek(fd, NULL, 1);
935 if (posobj == NULL)
936 return NULL;
937 }
938 else {
939 Py_INCREF(posobj);
940 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000941
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000942#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000943 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
944 so don't even try using it. */
945 {
946 PyObject *oldposobj, *tempposobj;
947 HANDLE hFile;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000948
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000949 /* we save the file pointer position */
950 oldposobj = portable_lseek(fd, NULL, 1);
951 if (oldposobj == NULL) {
952 Py_DECREF(posobj);
953 return NULL;
954 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000955
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000956 /* we then move to the truncation position */
957 tempposobj = portable_lseek(fd, posobj, 0);
958 if (tempposobj == NULL) {
959 Py_DECREF(oldposobj);
960 Py_DECREF(posobj);
961 return NULL;
962 }
963 Py_DECREF(tempposobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000964
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000965 /* Truncate. Note that this may grow the file! */
966 Py_BEGIN_ALLOW_THREADS
967 errno = 0;
968 hFile = (HANDLE)_get_osfhandle(fd);
969 ret = hFile == (HANDLE)-1; /* testing for INVALID_HANDLE value */
970 if (ret == 0) {
971 ret = SetEndOfFile(hFile) == 0;
972 if (ret)
973 errno = EACCES;
974 }
975 Py_END_ALLOW_THREADS
976
977 /* we restore the file pointer position in any case */
978 tempposobj = portable_lseek(fd, oldposobj, 0);
979 Py_DECREF(oldposobj);
980 if (tempposobj == NULL) {
981 Py_DECREF(posobj);
982 return NULL;
983 }
984 Py_DECREF(tempposobj);
985 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000986#else
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000987
988#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000989 pos = PyLong_AsLongLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000990#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000991 pos = PyLong_AsLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000992#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000993 if (PyErr_Occurred()){
994 Py_DECREF(posobj);
995 return NULL;
996 }
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000997
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000998 Py_BEGIN_ALLOW_THREADS
999 errno = 0;
1000 ret = ftruncate(fd, pos);
1001 Py_END_ALLOW_THREADS
Antoine Pitrou905a2ff2010-01-31 22:47:27 +00001002
Thomas Hellerfdeee3a2007-07-12 11:21:36 +00001003#endif /* !MS_WINDOWS */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001004
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001005 if (ret != 0) {
1006 Py_DECREF(posobj);
1007 PyErr_SetFromErrno(PyExc_IOError);
1008 return NULL;
1009 }
Guido van Rossuma9e20242007-03-08 00:43:48 +00001010
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001011 return posobj;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001012}
Antoine Pitrou905a2ff2010-01-31 22:47:27 +00001013#endif /* HAVE_FTRUNCATE */
Guido van Rossum53807da2007-04-10 19:01:47 +00001014
1015static char *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001016mode_string(fileio *self)
Guido van Rossum53807da2007-04-10 19:01:47 +00001017{
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001018 if (self->created) {
1019 if (self->readable)
1020 return "xb+";
1021 else
1022 return "xb";
1023 }
Antoine Pitroue93b63b2013-09-04 20:46:33 +02001024 if (self->appending) {
1025 if (self->readable)
1026 return "ab+";
1027 else
1028 return "ab";
1029 }
1030 else if (self->readable) {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001031 if (self->writable)
1032 return "rb+";
1033 else
1034 return "rb";
1035 }
1036 else
1037 return "wb";
Guido van Rossum53807da2007-04-10 19:01:47 +00001038}
Guido van Rossuma9e20242007-03-08 00:43:48 +00001039
1040static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001041fileio_repr(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001042{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001043 PyObject *nameobj, *res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001044
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001045 if (self->fd < 0)
1046 return PyUnicode_FromFormat("<_io.FileIO [closed]>");
Antoine Pitrou716c4442009-05-23 19:04:03 +00001047
Martin v. Löwis767046a2011-10-14 15:35:36 +02001048 nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001049 if (nameobj == NULL) {
1050 if (PyErr_ExceptionMatches(PyExc_AttributeError))
1051 PyErr_Clear();
1052 else
1053 return NULL;
1054 res = PyUnicode_FromFormat("<_io.FileIO fd=%d mode='%s'>",
1055 self->fd, mode_string(self));
1056 }
1057 else {
1058 res = PyUnicode_FromFormat("<_io.FileIO name=%R mode='%s'>",
1059 nameobj, mode_string(self));
1060 Py_DECREF(nameobj);
1061 }
1062 return res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001063}
1064
1065static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001066fileio_isatty(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001067{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001068 long res;
Guido van Rossum53807da2007-04-10 19:01:47 +00001069
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001070 if (self->fd < 0)
1071 return err_closed();
1072 Py_BEGIN_ALLOW_THREADS
1073 res = isatty(self->fd);
1074 Py_END_ALLOW_THREADS
1075 return PyBool_FromLong(res);
Guido van Rossuma9e20242007-03-08 00:43:48 +00001076}
1077
Antoine Pitrou243757e2010-11-05 21:15:39 +00001078static PyObject *
1079fileio_getstate(fileio *self)
1080{
1081 PyErr_Format(PyExc_TypeError,
1082 "cannot serialize '%s' object", Py_TYPE(self)->tp_name);
1083 return NULL;
1084}
1085
Guido van Rossuma9e20242007-03-08 00:43:48 +00001086
1087PyDoc_STRVAR(fileio_doc,
Ross Lagerwall59142db2011-10-31 20:34:46 +02001088"file(name: str[, mode: str][, opener: None]) -> file IO object\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001089"\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001090"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 +01001091"writing, exclusive creation or appending. The file will be created if it\n"
1092"doesn't exist when opened for writing or appending; it will be truncated\n"
1093"when opened for writing. A `FileExistsError` will be raised if it already\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001094"exists when opened for creating. Opening a file for creating implies\n"
1095"writing so this mode behaves in a similar way to 'w'.Add a '+' to the mode\n"
1096"to allow simultaneous reading and writing. A custom opener can be used by\n"
1097"passing a callable as *opener*. The underlying file descriptor for the file\n"
Ross Lagerwall59142db2011-10-31 20:34:46 +02001098"object is then obtained by calling opener with (*name*, *flags*).\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001099"*opener* must return an open file descriptor (passing os.open as *opener*\n"
1100"results in functionality similar to passing None).");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001101
1102PyDoc_STRVAR(read_doc,
1103"read(size: int) -> bytes. read at most size bytes, returned as bytes.\n"
1104"\n"
1105"Only makes one system call, so less data may be returned than requested\n"
Guido van Rossum7165cb12007-07-10 06:54:34 +00001106"In non-blocking mode, returns None if no data is available.\n"
1107"On end-of-file, returns ''.");
1108
1109PyDoc_STRVAR(readall_doc,
1110"readall() -> bytes. read all data from the file, returned as bytes.\n"
1111"\n"
1112"In non-blocking mode, returns as much as is immediately available,\n"
1113"or None if no data is available. On end-of-file, returns ''.");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001114
1115PyDoc_STRVAR(write_doc,
1116"write(b: bytes) -> int. Write bytes b to file, return number written.\n"
1117"\n"
1118"Only makes one system call, so not all of the data may be written.\n"
1119"The number of bytes actually written is returned.");
1120
1121PyDoc_STRVAR(fileno_doc,
1122"fileno() -> int. \"file descriptor\".\n"
1123"\n"
1124"This is needed for lower-level file interfaces, such the fcntl module.");
1125
1126PyDoc_STRVAR(seek_doc,
Berker Peksagb87630c2014-09-24 12:43:29 +03001127"seek(offset: int[, whence: int]) -> int. Move to new file position and\n"
1128"return the file position.\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001129"\n"
1130"Argument offset is a byte count. Optional argument whence defaults to\n"
1131"0 (offset from start of file, offset should be >= 0); other values are 1\n"
1132"(move relative to current position, positive or negative), and 2 (move\n"
1133"relative to end of file, usually negative, although many platforms allow\n"
1134"seeking beyond the end of a file)."
1135"\n"
1136"Note that not all file objects are seekable.");
1137
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001138#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +00001139PyDoc_STRVAR(truncate_doc,
Berker Peksagb87630c2014-09-24 12:43:29 +03001140"truncate([size: int]) -> int. Truncate the file to at most size bytes\n"
1141"and return the truncated size.\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001142"\n"
Berker Peksagb87630c2014-09-24 12:43:29 +03001143"Size defaults to the current file position, as returned by tell().\n"
Alexandre Vassalotti77250f42008-05-06 19:48:38 +00001144"The current file position is changed to the value of size.");
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001145#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +00001146
1147PyDoc_STRVAR(tell_doc,
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001148"tell() -> int. Current file position");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001149
1150PyDoc_STRVAR(readinto_doc,
Benjamin Peterson9a8082f2009-03-05 00:55:56 +00001151"readinto() -> Same as RawIOBase.readinto().");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001152
1153PyDoc_STRVAR(close_doc,
1154"close() -> None. Close the file.\n"
1155"\n"
1156"A closed file cannot be used for further I/O operations. close() may be\n"
1157"called more than once without error. Changes the fileno to -1.");
1158
1159PyDoc_STRVAR(isatty_doc,
1160"isatty() -> bool. True if the file is connected to a tty device.");
1161
Guido van Rossuma9e20242007-03-08 00:43:48 +00001162PyDoc_STRVAR(seekable_doc,
1163"seekable() -> bool. True if file supports random-access.");
1164
1165PyDoc_STRVAR(readable_doc,
1166"readable() -> bool. True if file was opened in a read mode.");
1167
1168PyDoc_STRVAR(writable_doc,
1169"writable() -> bool. True if file was opened in a write mode.");
1170
1171static PyMethodDef fileio_methods[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001172 {"read", (PyCFunction)fileio_read, METH_VARARGS, read_doc},
1173 {"readall", (PyCFunction)fileio_readall, METH_NOARGS, readall_doc},
1174 {"readinto", (PyCFunction)fileio_readinto, METH_VARARGS, readinto_doc},
1175 {"write", (PyCFunction)fileio_write, METH_VARARGS, write_doc},
1176 {"seek", (PyCFunction)fileio_seek, METH_VARARGS, seek_doc},
1177 {"tell", (PyCFunction)fileio_tell, METH_VARARGS, tell_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001178#ifdef HAVE_FTRUNCATE
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001179 {"truncate", (PyCFunction)fileio_truncate, METH_VARARGS, truncate_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001180#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001181 {"close", (PyCFunction)fileio_close, METH_NOARGS, close_doc},
1182 {"seekable", (PyCFunction)fileio_seekable, METH_NOARGS, seekable_doc},
1183 {"readable", (PyCFunction)fileio_readable, METH_NOARGS, readable_doc},
1184 {"writable", (PyCFunction)fileio_writable, METH_NOARGS, writable_doc},
1185 {"fileno", (PyCFunction)fileio_fileno, METH_NOARGS, fileno_doc},
1186 {"isatty", (PyCFunction)fileio_isatty, METH_NOARGS, isatty_doc},
Antoine Pitroue033e062010-10-29 10:38:18 +00001187 {"_dealloc_warn", (PyCFunction)fileio_dealloc_warn, METH_O, NULL},
Antoine Pitrou243757e2010-11-05 21:15:39 +00001188 {"__getstate__", (PyCFunction)fileio_getstate, METH_NOARGS, NULL},
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001189 {NULL, NULL} /* sentinel */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001190};
1191
Guido van Rossum53807da2007-04-10 19:01:47 +00001192/* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
1193
Guido van Rossumb0428152007-04-08 17:44:42 +00001194static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001195get_closed(fileio *self, void *closure)
Guido van Rossumb0428152007-04-08 17:44:42 +00001196{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001197 return PyBool_FromLong((long)(self->fd < 0));
Guido van Rossum53807da2007-04-10 19:01:47 +00001198}
1199
1200static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001201get_closefd(fileio *self, void *closure)
Christian Heimesecc42a22008-11-05 19:30:32 +00001202{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001203 return PyBool_FromLong((long)(self->closefd));
Christian Heimesecc42a22008-11-05 19:30:32 +00001204}
1205
1206static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001207get_mode(fileio *self, void *closure)
Guido van Rossum53807da2007-04-10 19:01:47 +00001208{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001209 return PyUnicode_FromString(mode_string(self));
Guido van Rossumb0428152007-04-08 17:44:42 +00001210}
1211
1212static PyGetSetDef fileio_getsetlist[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001213 {"closed", (getter)get_closed, NULL, "True if the file is closed"},
1214 {"closefd", (getter)get_closefd, NULL,
1215 "True if the file descriptor will be closed"},
1216 {"mode", (getter)get_mode, NULL, "String giving the file mode"},
1217 {NULL},
Guido van Rossumb0428152007-04-08 17:44:42 +00001218};
1219
Antoine Pitrou796564c2013-07-30 19:59:21 +02001220static PyMemberDef fileio_members[] = {
1221 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
1222 {NULL}
1223};
1224
Guido van Rossuma9e20242007-03-08 00:43:48 +00001225PyTypeObject PyFileIO_Type = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001226 PyVarObject_HEAD_INIT(NULL, 0)
1227 "_io.FileIO",
1228 sizeof(fileio),
1229 0,
1230 (destructor)fileio_dealloc, /* tp_dealloc */
1231 0, /* tp_print */
1232 0, /* tp_getattr */
1233 0, /* tp_setattr */
1234 0, /* tp_reserved */
1235 (reprfunc)fileio_repr, /* tp_repr */
1236 0, /* tp_as_number */
1237 0, /* tp_as_sequence */
1238 0, /* tp_as_mapping */
1239 0, /* tp_hash */
1240 0, /* tp_call */
1241 0, /* tp_str */
1242 PyObject_GenericGetAttr, /* tp_getattro */
1243 0, /* tp_setattro */
1244 0, /* tp_as_buffer */
1245 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
Antoine Pitrou796564c2013-07-30 19:59:21 +02001246 | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001247 fileio_doc, /* tp_doc */
1248 (traverseproc)fileio_traverse, /* tp_traverse */
1249 (inquiry)fileio_clear, /* tp_clear */
1250 0, /* tp_richcompare */
1251 offsetof(fileio, weakreflist), /* tp_weaklistoffset */
1252 0, /* tp_iter */
1253 0, /* tp_iternext */
1254 fileio_methods, /* tp_methods */
Antoine Pitrou796564c2013-07-30 19:59:21 +02001255 fileio_members, /* tp_members */
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001256 fileio_getsetlist, /* tp_getset */
1257 0, /* tp_base */
1258 0, /* tp_dict */
1259 0, /* tp_descr_get */
1260 0, /* tp_descr_set */
1261 offsetof(fileio, dict), /* tp_dictoffset */
1262 fileio_init, /* tp_init */
1263 PyType_GenericAlloc, /* tp_alloc */
1264 fileio_new, /* tp_new */
1265 PyObject_GC_Del, /* tp_free */
Antoine Pitrou796564c2013-07-30 19:59:21 +02001266 0, /* tp_is_gc */
1267 0, /* tp_bases */
1268 0, /* tp_mro */
1269 0, /* tp_cache */
1270 0, /* tp_subclasses */
1271 0, /* tp_weaklist */
1272 0, /* tp_del */
1273 0, /* tp_version_tag */
1274 0, /* tp_finalize */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001275};