blob: beacd9fdce4348cc48c7c06cdaaa8bf5cdc80b58 [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;
52 signed int seekable : 2; /* -1 means unknown */
53 unsigned int closefd : 1;
Antoine Pitroue033e062010-10-29 10:38:18 +000054 unsigned int deallocating: 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +000055 PyObject *weakreflist;
56 PyObject *dict;
Benjamin Peterson680bf1a2009-06-12 02:07:12 +000057} fileio;
Guido van Rossuma9e20242007-03-08 00:43:48 +000058
Collin Winteraf334382007-03-08 21:46:15 +000059PyTypeObject PyFileIO_Type;
60
Guido van Rossuma9e20242007-03-08 00:43:48 +000061#define PyFileIO_Check(op) (PyObject_TypeCheck((op), &PyFileIO_Type))
62
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000063int
64_PyFileIO_closed(PyObject *self)
65{
Antoine Pitrouae4b4722010-05-05 16:31:07 +000066 return ((fileio *)self)->fd < 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000067}
Antoine Pitrou08838b62009-01-21 00:55:13 +000068
Antoine Pitroue033e062010-10-29 10:38:18 +000069/* Because this can call arbitrary code, it shouldn't be called when
70 the refcount is 0 (that is, not directly from tp_dealloc unless
71 the refcount has been temporarily re-incremented). */
72static PyObject *
73fileio_dealloc_warn(fileio *self, PyObject *source)
74{
75 if (self->fd >= 0 && self->closefd) {
76 PyObject *exc, *val, *tb;
77 PyErr_Fetch(&exc, &val, &tb);
78 if (PyErr_WarnFormat(PyExc_ResourceWarning, 1,
79 "unclosed file %R", source)) {
80 /* Spurious errors can appear at shutdown */
81 if (PyErr_ExceptionMatches(PyExc_Warning))
82 PyErr_WriteUnraisable((PyObject *) self);
83 }
84 PyErr_Restore(exc, val, tb);
85 }
86 Py_RETURN_NONE;
87}
88
Antoine Pitrou7fb111b2009-03-04 11:14:01 +000089static PyObject *
90portable_lseek(int fd, PyObject *posobj, int whence);
91
Antoine Pitroua28fcfd2009-03-13 23:42:55 +000092static PyObject *portable_lseek(int fd, PyObject *posobj, int whence);
93
Kristján Valur Jónsson19288c22008-12-18 17:15:54 +000094/* Returns 0 on success, -1 with exception set on failure. */
Neal Norwitz88b44da2007-08-12 17:23:54 +000095static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +000096internal_close(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +000097{
Antoine Pitrouae4b4722010-05-05 16:31:07 +000098 int err = 0;
99 int save_errno = 0;
100 if (self->fd >= 0) {
101 int fd = self->fd;
102 self->fd = -1;
103 /* fd is accessible and someone else may have closed it */
104 if (_PyVerify_fd(fd)) {
105 Py_BEGIN_ALLOW_THREADS
106 err = close(fd);
107 if (err < 0)
108 save_errno = errno;
109 Py_END_ALLOW_THREADS
110 } else {
111 save_errno = errno;
112 err = -1;
113 }
114 }
115 if (err < 0) {
116 errno = save_errno;
117 PyErr_SetFromErrno(PyExc_IOError);
118 return -1;
119 }
120 return 0;
Neal Norwitz88b44da2007-08-12 17:23:54 +0000121}
122
123static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000124fileio_close(fileio *self)
Neal Norwitz88b44da2007-08-12 17:23:54 +0000125{
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200126 _Py_IDENTIFIER(close);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000127 if (!self->closefd) {
128 self->fd = -1;
129 Py_RETURN_NONE;
130 }
Antoine Pitroue033e062010-10-29 10:38:18 +0000131 if (self->deallocating) {
132 PyObject *r = fileio_dealloc_warn(self, (PyObject *) self);
133 if (r)
134 Py_DECREF(r);
135 else
136 PyErr_Clear();
137 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000138 errno = internal_close(self);
139 if (errno < 0)
140 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000141
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200142 return _PyObject_CallMethodId((PyObject*)&PyRawIOBase_Type,
143 &PyId_close, "O", self);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000144}
145
146static PyObject *
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000147fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000148{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000149 fileio *self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000150
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000151 assert(type != NULL && type->tp_alloc != NULL);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000152
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000153 self = (fileio *) type->tp_alloc(type, 0);
154 if (self != NULL) {
155 self->fd = -1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100156 self->created = 0;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000157 self->readable = 0;
158 self->writable = 0;
159 self->seekable = -1;
160 self->closefd = 1;
161 self->weakreflist = NULL;
162 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000163
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000164 return (PyObject *) self;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000165}
166
167/* On Unix, open will succeed for directories.
168 In Python, there should be no file objects referring to
169 directories, so we need a check. */
170
171static int
Antoine Pitrou9235b252012-07-06 18:48:24 +0200172dircheck(fileio* self, PyObject *nameobj)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000173{
174#if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000175 struct stat buf;
176 if (self->fd < 0)
177 return 0;
178 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
Antoine Pitrou9235b252012-07-06 18:48:24 +0200179 errno = EISDIR;
180 PyErr_SetFromErrnoWithFilenameObject(PyExc_IOError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000181 return -1;
182 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000183#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000184 return 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000185}
186
Benjamin Peterson806d4022009-01-19 15:11:51 +0000187static int
188check_fd(int fd)
189{
190#if defined(HAVE_FSTAT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000191 struct stat buf;
192 if (!_PyVerify_fd(fd) || (fstat(fd, &buf) < 0 && errno == EBADF)) {
193 PyObject *exc;
194 char *msg = strerror(EBADF);
195 exc = PyObject_CallFunction(PyExc_OSError, "(is)",
196 EBADF, msg);
197 PyErr_SetObject(PyExc_OSError, exc);
198 Py_XDECREF(exc);
199 return -1;
200 }
Benjamin Peterson806d4022009-01-19 15:11:51 +0000201#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000202 return 0;
Benjamin Peterson806d4022009-01-19 15:11:51 +0000203}
204
Guido van Rossuma9e20242007-03-08 00:43:48 +0000205
206static int
207fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
208{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000209 fileio *self = (fileio *) oself;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200210 static char *kwlist[] = {"file", "mode", "closefd", "opener", NULL};
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000211 const char *name = NULL;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200212 PyObject *nameobj, *stringobj = NULL, *opener = Py_None;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000213 char *mode = "r";
214 char *s;
Thomas Helleraf2be262007-07-12 11:03:13 +0000215#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000216 Py_UNICODE *widename = NULL;
Thomas Helleraf2be262007-07-12 11:03:13 +0000217#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000218 int ret = 0;
219 int rwa = 0, plus = 0, append = 0;
220 int flags = 0;
221 int fd = -1;
222 int closefd = 1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200223 int fd_is_own = 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000224
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000225 assert(PyFileIO_Check(oself));
226 if (self->fd >= 0) {
Hynek Schlawack2cc71562012-05-25 10:05:53 +0200227 if (self->closefd) {
228 /* Have to close the existing file first. */
229 if (internal_close(self) < 0)
230 return -1;
231 }
232 else
233 self->fd = -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000234 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000235
Ross Lagerwall59142db2011-10-31 20:34:46 +0200236 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|siO:fileio",
237 kwlist, &nameobj, &mode, &closefd,
238 &opener))
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000239 return -1;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000240
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000241 if (PyFloat_Check(nameobj)) {
242 PyErr_SetString(PyExc_TypeError,
243 "integer argument expected, got float");
244 return -1;
245 }
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000246
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000247 fd = PyLong_AsLong(nameobj);
248 if (fd < 0) {
249 if (!PyErr_Occurred()) {
250 PyErr_SetString(PyExc_ValueError,
251 "Negative filedescriptor");
252 return -1;
253 }
254 PyErr_Clear();
255 }
Guido van Rossumb0428152007-04-08 17:44:42 +0000256
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +0000257#ifdef MS_WINDOWS
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200258 if (PyUnicode_Check(nameobj)) {
Antoine Pitrou13348842012-01-29 18:36:34 +0100259 int rv = _PyUnicode_HasNULChars(nameobj);
260 if (rv) {
261 if (rv != -1)
262 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
263 return -1;
264 }
Victor Stinnerfe9a8612011-09-29 23:19:04 +0200265 widename = PyUnicode_AsUnicode(nameobj);
266 if (widename == NULL)
267 return -1;
268 } else
Guido van Rossuma9e20242007-03-08 00:43:48 +0000269#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000270 if (fd < 0)
271 {
Antoine Pitrou13348842012-01-29 18:36:34 +0100272 if (!PyUnicode_FSConverter(nameobj, &stringobj)) {
273 return -1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000274 }
Antoine Pitrou13348842012-01-29 18:36:34 +0100275 name = PyBytes_AS_STRING(stringobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000276 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000277
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000278 s = mode;
279 while (*s) {
280 switch (*s++) {
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100281 case 'x':
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000282 if (rwa) {
283 bad_mode:
284 PyErr_SetString(PyExc_ValueError,
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100285 "Must have exactly one of create/read/write/append "
Georg Brandl28928ae2010-10-21 13:45:52 +0000286 "mode and at most one plus");
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000287 goto error;
288 }
289 rwa = 1;
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100290 self->created = 1;
291 self->writable = 1;
292 flags |= O_EXCL | O_CREAT;
293 break;
294 case 'r':
295 if (rwa)
296 goto bad_mode;
297 rwa = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000298 self->readable = 1;
299 break;
300 case 'w':
301 if (rwa)
302 goto bad_mode;
303 rwa = 1;
304 self->writable = 1;
305 flags |= O_CREAT | O_TRUNC;
306 break;
307 case 'a':
308 if (rwa)
309 goto bad_mode;
310 rwa = 1;
311 self->writable = 1;
312 flags |= O_CREAT;
313 append = 1;
314 break;
315 case 'b':
316 break;
317 case '+':
318 if (plus)
319 goto bad_mode;
320 self->readable = self->writable = 1;
321 plus = 1;
322 break;
323 default:
324 PyErr_Format(PyExc_ValueError,
325 "invalid mode: %.200s", mode);
326 goto error;
327 }
328 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000329
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000330 if (!rwa)
331 goto bad_mode;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000332
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000333 if (self->readable && self->writable)
334 flags |= O_RDWR;
335 else if (self->readable)
336 flags |= O_RDONLY;
337 else
338 flags |= O_WRONLY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000339
340#ifdef O_BINARY
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000341 flags |= O_BINARY;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000342#endif
343
Walter Dörwald0e411482007-06-06 16:55:38 +0000344#ifdef O_APPEND
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000345 if (append)
346 flags |= O_APPEND;
Walter Dörwald0e411482007-06-06 16:55:38 +0000347#endif
348
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000349 if (fd >= 0) {
350 if (check_fd(fd))
351 goto error;
352 self->fd = fd;
353 self->closefd = closefd;
354 }
355 else {
356 self->closefd = 1;
357 if (!closefd) {
358 PyErr_SetString(PyExc_ValueError,
359 "Cannot use closefd=False with file name");
360 goto error;
361 }
Guido van Rossum2dced8b2007-10-30 17:27:30 +0000362
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000363 errno = 0;
Ross Lagerwall59142db2011-10-31 20:34:46 +0200364 if (opener == Py_None) {
365 Py_BEGIN_ALLOW_THREADS
Thomas Helleraf2be262007-07-12 11:03:13 +0000366#ifdef MS_WINDOWS
Ross Lagerwall59142db2011-10-31 20:34:46 +0200367 if (widename != NULL)
368 self->fd = _wopen(widename, flags, 0666);
369 else
Thomas Helleraf2be262007-07-12 11:03:13 +0000370#endif
Ross Lagerwall59142db2011-10-31 20:34:46 +0200371 self->fd = open(name, flags, 0666);
372 Py_END_ALLOW_THREADS
373 } else {
374 PyObject *fdobj = PyObject_CallFunction(
375 opener, "Oi", nameobj, flags);
376 if (fdobj == NULL)
377 goto error;
378 if (!PyLong_Check(fdobj)) {
379 Py_DECREF(fdobj);
380 PyErr_SetString(PyExc_TypeError,
381 "expected integer from opener");
382 goto error;
383 }
384
385 self->fd = PyLong_AsLong(fdobj);
386 Py_DECREF(fdobj);
387 if (self->fd == -1) {
388 goto error;
389 }
390 }
391
Hynek Schlawack7f59fd72012-06-22 09:32:22 +0200392 fd_is_own = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000393 if (self->fd < 0) {
Victor Stinner292c8352012-10-30 02:17:38 +0100394 PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, nameobj);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000395 goto error;
396 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000397 }
Antoine Pitrou9235b252012-07-06 18:48:24 +0200398 if (dircheck(self, nameobj) < 0)
399 goto error;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000400
Victor Stinner89e34362011-01-07 18:47:22 +0000401#if defined(MS_WINDOWS) || defined(__CYGWIN__)
402 /* don't translate newlines (\r\n <=> \n) */
403 _setmode(self->fd, O_BINARY);
404#endif
405
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000406 if (PyObject_SetAttrString((PyObject *)self, "name", nameobj) < 0)
407 goto error;
Antoine Pitrou08838b62009-01-21 00:55:13 +0000408
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000409 if (append) {
410 /* For consistent behaviour, we explicitly seek to the
411 end of file (otherwise, it might be done only on the
412 first write()). */
413 PyObject *pos = portable_lseek(self->fd, NULL, 2);
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200414 if (pos == NULL)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000415 goto error;
416 Py_DECREF(pos);
417 }
Antoine Pitrou7fb111b2009-03-04 11:14:01 +0000418
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000419 goto done;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000420
421 error:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000422 ret = -1;
Hynek Schlawack9ed8b4e2012-06-21 20:20:25 +0200423 if (!fd_is_own)
424 self->fd = -1;
Benjamin Petersonbbb04122010-10-30 23:16:28 +0000425 if (self->fd >= 0)
426 internal_close(self);
Guido van Rossum53807da2007-04-10 19:01:47 +0000427
Guido van Rossuma9e20242007-03-08 00:43:48 +0000428 done:
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000429 Py_CLEAR(stringobj);
430 return ret;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000431}
432
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000433static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000434fileio_traverse(fileio *self, visitproc visit, void *arg)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000435{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000436 Py_VISIT(self->dict);
437 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000438}
439
440static int
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000441fileio_clear(fileio *self)
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000442{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000443 Py_CLEAR(self->dict);
444 return 0;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000445}
446
Guido van Rossuma9e20242007-03-08 00:43:48 +0000447static void
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000448fileio_dealloc(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000449{
Antoine Pitroue033e062010-10-29 10:38:18 +0000450 self->deallocating = 1;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000451 if (_PyIOBase_finalize((PyObject *) self) < 0)
452 return;
453 _PyObject_GC_UNTRACK(self);
454 if (self->weakreflist != NULL)
455 PyObject_ClearWeakRefs((PyObject *) self);
456 Py_CLEAR(self->dict);
457 Py_TYPE(self)->tp_free((PyObject *)self);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000458}
459
460static PyObject *
461err_closed(void)
462{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000463 PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
464 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000465}
466
467static PyObject *
Guido van Rossum53807da2007-04-10 19:01:47 +0000468err_mode(char *action)
469{
Antoine Pitrou0d739d72010-09-05 23:01:12 +0000470 PyErr_Format(IO_STATE->unsupported_operation,
471 "File not open for %s", action);
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000472 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000473}
474
475static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000476fileio_fileno(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000477{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000478 if (self->fd < 0)
479 return err_closed();
480 return PyLong_FromLong((long) self->fd);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000481}
482
483static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000484fileio_readable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000485{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000486 if (self->fd < 0)
487 return err_closed();
488 return PyBool_FromLong((long) self->readable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000489}
490
491static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000492fileio_writable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000493{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000494 if (self->fd < 0)
495 return err_closed();
496 return PyBool_FromLong((long) self->writable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000497}
498
499static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000500fileio_seekable(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000501{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000502 if (self->fd < 0)
503 return err_closed();
504 if (self->seekable < 0) {
505 PyObject *pos = portable_lseek(self->fd, NULL, SEEK_CUR);
506 if (pos == NULL) {
507 PyErr_Clear();
508 self->seekable = 0;
509 } else {
510 Py_DECREF(pos);
511 self->seekable = 1;
512 }
513 }
514 return PyBool_FromLong((long) self->seekable);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000515}
516
517static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000518fileio_readinto(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000519{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000520 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000521 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100522 int err;
Guido van Rossum53807da2007-04-10 19:01:47 +0000523
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000524 if (self->fd < 0)
525 return err_closed();
526 if (!self->readable)
527 return err_mode("reading");
Guido van Rossum53807da2007-04-10 19:01:47 +0000528
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000529 if (!PyArg_ParseTuple(args, "w*", &pbuf))
530 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000531
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000532 if (_PyVerify_fd(self->fd)) {
Victor Stinnere6edec22011-01-04 00:29:35 +0000533 len = pbuf.len;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000534 Py_BEGIN_ALLOW_THREADS
535 errno = 0;
Victor Stinnere6edec22011-01-04 00:29:35 +0000536#if defined(MS_WIN64) || defined(MS_WINDOWS)
537 if (len > INT_MAX)
538 len = INT_MAX;
539 n = read(self->fd, pbuf.buf, (int)len);
540#else
Victor Stinner72344792011-01-11 00:04:12 +0000541 n = read(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000542#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000543 Py_END_ALLOW_THREADS
544 } else
545 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100546 err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000547 PyBuffer_Release(&pbuf);
548 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100549 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000550 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100551 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000552 PyErr_SetFromErrno(PyExc_IOError);
553 return NULL;
554 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000555
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000556 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000557}
558
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000559static size_t
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200560new_buffersize(fileio *self, size_t currentsize
561#ifdef HAVE_FSTAT
Victor Stinnera2a64772011-10-11 22:45:02 +0200562 , Py_off_t pos, Py_off_t end
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200563#endif
564 )
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000565{
Antoine Pitroua3f44572012-04-17 13:50:58 +0200566 size_t addend;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000567#ifdef HAVE_FSTAT
Victor Stinnera2a64772011-10-11 22:45:02 +0200568 if (end != (Py_off_t)-1) {
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000569 /* Files claiming a size smaller than SMALLCHUNK may
570 actually be streaming pseudo-files. In this case, we
571 apply the more aggressive algorithm below.
572 */
573 if (end >= SMALLCHUNK && end >= pos && pos >= 0) {
574 /* Add 1 so if the file were to grow we'd notice. */
Victor Stinnerc5af7732011-10-11 23:00:31 +0200575 Py_off_t bufsize = currentsize + end - pos + 1;
576 if (bufsize < PY_SSIZE_T_MAX)
577 return (size_t)bufsize;
578 else
579 return PY_SSIZE_T_MAX;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000580 }
581 }
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000582#endif
Nadeem Vawdad41a98b2011-10-13 13:34:16 +0200583 /* Expand the buffer by an amount proportional to the current size,
Antoine Pitroua3f44572012-04-17 13:50:58 +0200584 giving us amortized linear-time behavior. For bigger sizes, use a
585 less-than-double growth factor to avoid excessive allocation. */
586 if (currentsize > 65536)
587 addend = currentsize >> 3;
588 else
589 addend = 256 + currentsize;
590 if (addend < SMALLCHUNK)
591 /* Avoid tiny read() calls. */
592 addend = SMALLCHUNK;
593 return addend + currentsize;
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000594}
595
Guido van Rossum7165cb12007-07-10 06:54:34 +0000596static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000597fileio_readall(fileio *self)
Guido van Rossum7165cb12007-07-10 06:54:34 +0000598{
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200599#ifdef HAVE_FSTAT
600 struct stat st;
Victor Stinnera2a64772011-10-11 22:45:02 +0200601 Py_off_t pos, end;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200602#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000603 PyObject *result;
604 Py_ssize_t total = 0;
605 int n;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200606 size_t newsize;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000607
Victor Stinnerb79f28c2011-05-25 22:09:03 +0200608 if (self->fd < 0)
609 return err_closed();
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000610 if (!_PyVerify_fd(self->fd))
611 return PyErr_SetFromErrno(PyExc_IOError);
Kristján Valur Jónssona8abe862009-03-24 15:27:42 +0000612
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000613 result = PyBytes_FromStringAndSize(NULL, SMALLCHUNK);
614 if (result == NULL)
615 return NULL;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000616
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200617#ifdef HAVE_FSTAT
618#if defined(MS_WIN64) || defined(MS_WINDOWS)
619 pos = _lseeki64(self->fd, 0L, SEEK_CUR);
620#else
621 pos = lseek(self->fd, 0L, SEEK_CUR);
622#endif
623 if (fstat(self->fd, &st) == 0)
624 end = st.st_size;
625 else
Victor Stinnera2a64772011-10-11 22:45:02 +0200626 end = (Py_off_t)-1;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200627#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000628 while (1) {
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200629#ifdef HAVE_FSTAT
630 newsize = new_buffersize(self, total, pos, end);
631#else
632 newsize = new_buffersize(self, total);
633#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000634 if (newsize > PY_SSIZE_T_MAX || newsize <= 0) {
635 PyErr_SetString(PyExc_OverflowError,
636 "unbounded read returned more bytes "
637 "than a Python string can hold ");
638 Py_DECREF(result);
639 return NULL;
640 }
Christian Heimesa872de52008-12-05 08:26:55 +0000641
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000642 if (PyBytes_GET_SIZE(result) < (Py_ssize_t)newsize) {
643 if (_PyBytes_Resize(&result, newsize) < 0) {
644 if (total == 0) {
645 Py_DECREF(result);
646 return NULL;
647 }
648 PyErr_Clear();
649 break;
650 }
651 }
652 Py_BEGIN_ALLOW_THREADS
653 errno = 0;
654 n = read(self->fd,
655 PyBytes_AS_STRING(result) + total,
656 newsize - total);
657 Py_END_ALLOW_THREADS
658 if (n == 0)
659 break;
660 if (n < 0) {
Gregory P. Smith51359922012-06-23 23:55:39 -0700661 if (errno == EINTR) {
662 if (PyErr_CheckSignals()) {
663 Py_DECREF(result);
664 return NULL;
665 }
666 continue;
667 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000668 if (total > 0)
669 break;
670 if (errno == EAGAIN) {
671 Py_DECREF(result);
672 Py_RETURN_NONE;
673 }
674 Py_DECREF(result);
675 PyErr_SetFromErrno(PyExc_IOError);
676 return NULL;
677 }
678 total += n;
Victor Stinnere9d44ccb2011-05-26 00:16:44 +0200679#ifdef HAVE_FSTAT
680 pos += n;
681#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000682 }
Guido van Rossum7165cb12007-07-10 06:54:34 +0000683
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000684 if (PyBytes_GET_SIZE(result) > total) {
685 if (_PyBytes_Resize(&result, total) < 0) {
686 /* This should never happen, but just in case */
687 Py_DECREF(result);
688 return NULL;
689 }
690 }
691 return result;
Guido van Rossum7165cb12007-07-10 06:54:34 +0000692}
693
Guido van Rossuma9e20242007-03-08 00:43:48 +0000694static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000695fileio_read(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000696{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000697 char *ptr;
698 Py_ssize_t n;
699 Py_ssize_t size = -1;
700 PyObject *bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000701
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000702 if (self->fd < 0)
703 return err_closed();
704 if (!self->readable)
705 return err_mode("reading");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000706
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000707 if (!PyArg_ParseTuple(args, "|O&", &_PyIO_ConvertSsize_t, &size))
708 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000709
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000710 if (size < 0) {
711 return fileio_readall(self);
712 }
Guido van Rossumc2f93dc2007-05-24 00:50:02 +0000713
Victor Stinnerc655a722011-07-05 11:31:49 +0200714#if defined(MS_WIN64) || defined(MS_WINDOWS)
715 if (size > INT_MAX)
716 size = INT_MAX;
717#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000718 bytes = PyBytes_FromStringAndSize(NULL, size);
719 if (bytes == NULL)
720 return NULL;
721 ptr = PyBytes_AS_STRING(bytes);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000722
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000723 if (_PyVerify_fd(self->fd)) {
724 Py_BEGIN_ALLOW_THREADS
725 errno = 0;
Victor Stinnerc655a722011-07-05 11:31:49 +0200726#if defined(MS_WIN64) || defined(MS_WINDOWS)
727 n = read(self->fd, ptr, (int)size);
728#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000729 n = read(self->fd, ptr, size);
Victor Stinnerc655a722011-07-05 11:31:49 +0200730#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000731 Py_END_ALLOW_THREADS
732 } else
733 n = -1;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000734
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000735 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100736 int err = errno;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000737 Py_DECREF(bytes);
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100738 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000739 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100740 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000741 PyErr_SetFromErrno(PyExc_IOError);
742 return NULL;
743 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000744
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000745 if (n != size) {
746 if (_PyBytes_Resize(&bytes, n) < 0) {
747 Py_DECREF(bytes);
748 return NULL;
749 }
750 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000751
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000752 return (PyObject *) bytes;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000753}
754
755static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000756fileio_write(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000757{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000758 Py_buffer pbuf;
Victor Stinnere6edec22011-01-04 00:29:35 +0000759 Py_ssize_t n, len;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100760 int err;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000761
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000762 if (self->fd < 0)
763 return err_closed();
764 if (!self->writable)
765 return err_mode("writing");
Guido van Rossum53807da2007-04-10 19:01:47 +0000766
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000767 if (!PyArg_ParseTuple(args, "y*", &pbuf))
768 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000769
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000770 if (_PyVerify_fd(self->fd)) {
771 Py_BEGIN_ALLOW_THREADS
772 errno = 0;
Victor Stinnere6edec22011-01-04 00:29:35 +0000773 len = pbuf.len;
774#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinnere0daff12011-03-20 23:36:35 +0100775 if (len > 32767 && isatty(self->fd)) {
776 /* Issue #11395: the Windows console returns an error (12: not
777 enough space error) on writing into stdout if stdout mode is
778 binary and the length is greater than 66,000 bytes (or less,
779 depending on heap usage). */
780 len = 32767;
781 }
782 else if (len > INT_MAX)
Victor Stinnere6edec22011-01-04 00:29:35 +0000783 len = INT_MAX;
784 n = write(self->fd, pbuf.buf, (int)len);
785#else
Victor Stinner72344792011-01-11 00:04:12 +0000786 n = write(self->fd, pbuf.buf, len);
Victor Stinnere6edec22011-01-04 00:29:35 +0000787#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000788 Py_END_ALLOW_THREADS
789 } else
790 n = -1;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100791 err = errno;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000792
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000793 PyBuffer_Release(&pbuf);
Martin v. Löwis423be952008-08-13 15:53:07 +0000794
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000795 if (n < 0) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100796 if (err == EAGAIN)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000797 Py_RETURN_NONE;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100798 errno = err;
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000799 PyErr_SetFromErrno(PyExc_IOError);
800 return NULL;
801 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000802
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000803 return PyLong_FromSsize_t(n);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000804}
805
Guido van Rossum53807da2007-04-10 19:01:47 +0000806/* XXX Windows support below is likely incomplete */
807
Guido van Rossum53807da2007-04-10 19:01:47 +0000808/* Cribbed from posix_lseek() */
809static PyObject *
810portable_lseek(int fd, PyObject *posobj, int whence)
811{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000812 Py_off_t pos, res;
Guido van Rossum53807da2007-04-10 19:01:47 +0000813
814#ifdef SEEK_SET
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000815 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
816 switch (whence) {
Guido van Rossum53807da2007-04-10 19:01:47 +0000817#if SEEK_SET != 0
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000818 case 0: whence = SEEK_SET; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000819#endif
820#if SEEK_CUR != 1
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000821 case 1: whence = SEEK_CUR; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000822#endif
Antoine Pitrou4f7945f2009-01-20 11:42:11 +0000823#if SEEK_END != 2
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000824 case 2: whence = SEEK_END; break;
Guido van Rossum53807da2007-04-10 19:01:47 +0000825#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000826 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000827#endif /* SEEK_SET */
828
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000829 if (posobj == NULL)
830 pos = 0;
831 else {
832 if(PyFloat_Check(posobj)) {
833 PyErr_SetString(PyExc_TypeError, "an integer is required");
834 return NULL;
835 }
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000836#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000837 pos = PyLong_AsLongLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000838#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000839 pos = PyLong_AsLong(posobj);
Guido van Rossum53807da2007-04-10 19:01:47 +0000840#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000841 if (PyErr_Occurred())
842 return NULL;
843 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000844
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000845 if (_PyVerify_fd(fd)) {
846 Py_BEGIN_ALLOW_THREADS
Guido van Rossum53807da2007-04-10 19:01:47 +0000847#if defined(MS_WIN64) || defined(MS_WINDOWS)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000848 res = _lseeki64(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000849#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000850 res = lseek(fd, pos, whence);
Guido van Rossum53807da2007-04-10 19:01:47 +0000851#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000852 Py_END_ALLOW_THREADS
853 } else
854 res = -1;
855 if (res < 0)
856 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum53807da2007-04-10 19:01:47 +0000857
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000858#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000859 return PyLong_FromLongLong(res);
Alexandre Vassalotti77250f42008-05-06 19:48:38 +0000860#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000861 return PyLong_FromLong(res);
Guido van Rossum53807da2007-04-10 19:01:47 +0000862#endif
863}
864
Guido van Rossuma9e20242007-03-08 00:43:48 +0000865static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000866fileio_seek(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000867{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000868 PyObject *posobj;
869 int whence = 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000870
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000871 if (self->fd < 0)
872 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000873
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000874 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
875 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000876
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000877 return portable_lseek(self->fd, posobj, whence);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000878}
879
880static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000881fileio_tell(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000882{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000883 if (self->fd < 0)
884 return err_closed();
Guido van Rossuma9e20242007-03-08 00:43:48 +0000885
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000886 return portable_lseek(self->fd, NULL, 1);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000887}
888
Thomas Hellerc6a55ee2007-07-11 12:45:46 +0000889#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +0000890static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000891fileio_truncate(fileio *self, PyObject *args)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000892{
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000893 PyObject *posobj = NULL; /* the new size wanted by the user */
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000894#ifndef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000895 Py_off_t pos;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000896#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000897 int ret;
898 int fd;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000899
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000900 fd = self->fd;
901 if (fd < 0)
902 return err_closed();
903 if (!self->writable)
904 return err_mode("writing");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000905
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000906 if (!PyArg_ParseTuple(args, "|O", &posobj))
907 return NULL;
Guido van Rossum53807da2007-04-10 19:01:47 +0000908
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000909 if (posobj == Py_None || posobj == NULL) {
910 /* Get the current position. */
911 posobj = portable_lseek(fd, NULL, 1);
912 if (posobj == NULL)
913 return NULL;
914 }
915 else {
916 Py_INCREF(posobj);
917 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000918
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000919#ifdef MS_WINDOWS
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000920 /* MS _chsize doesn't work if newsize doesn't fit in 32 bits,
921 so don't even try using it. */
922 {
923 PyObject *oldposobj, *tempposobj;
924 HANDLE hFile;
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000925
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000926 /* we save the file pointer position */
927 oldposobj = portable_lseek(fd, NULL, 1);
928 if (oldposobj == NULL) {
929 Py_DECREF(posobj);
930 return NULL;
931 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000932
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000933 /* we then move to the truncation position */
934 tempposobj = portable_lseek(fd, posobj, 0);
935 if (tempposobj == NULL) {
936 Py_DECREF(oldposobj);
937 Py_DECREF(posobj);
938 return NULL;
939 }
940 Py_DECREF(tempposobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000941
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000942 /* Truncate. Note that this may grow the file! */
943 Py_BEGIN_ALLOW_THREADS
944 errno = 0;
945 hFile = (HANDLE)_get_osfhandle(fd);
946 ret = hFile == (HANDLE)-1; /* testing for INVALID_HANDLE value */
947 if (ret == 0) {
948 ret = SetEndOfFile(hFile) == 0;
949 if (ret)
950 errno = EACCES;
951 }
952 Py_END_ALLOW_THREADS
953
954 /* we restore the file pointer position in any case */
955 tempposobj = portable_lseek(fd, oldposobj, 0);
956 Py_DECREF(oldposobj);
957 if (tempposobj == NULL) {
958 Py_DECREF(posobj);
959 return NULL;
960 }
961 Py_DECREF(tempposobj);
962 }
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000963#else
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000964
965#if defined(HAVE_LARGEFILE_SUPPORT)
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000966 pos = PyLong_AsLongLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000967#else
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000968 pos = PyLong_AsLong(posobj);
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000969#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000970 if (PyErr_Occurred()){
971 Py_DECREF(posobj);
972 return NULL;
973 }
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000974
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000975 Py_BEGIN_ALLOW_THREADS
976 errno = 0;
977 ret = ftruncate(fd, pos);
978 Py_END_ALLOW_THREADS
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000979
Thomas Hellerfdeee3a2007-07-12 11:21:36 +0000980#endif /* !MS_WINDOWS */
Guido van Rossuma9e20242007-03-08 00:43:48 +0000981
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000982 if (ret != 0) {
983 Py_DECREF(posobj);
984 PyErr_SetFromErrno(PyExc_IOError);
985 return NULL;
986 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000987
Antoine Pitrouae4b4722010-05-05 16:31:07 +0000988 return posobj;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000989}
Antoine Pitrou905a2ff2010-01-31 22:47:27 +0000990#endif /* HAVE_FTRUNCATE */
Guido van Rossum53807da2007-04-10 19:01:47 +0000991
992static char *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +0000993mode_string(fileio *self)
Guido van Rossum53807da2007-04-10 19:01:47 +0000994{
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100995 if (self->created) {
996 if (self->readable)
997 return "xb+";
998 else
999 return "xb";
1000 }
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001001 if (self->readable) {
1002 if (self->writable)
1003 return "rb+";
1004 else
1005 return "rb";
1006 }
1007 else
1008 return "wb";
Guido van Rossum53807da2007-04-10 19:01:47 +00001009}
Guido van Rossuma9e20242007-03-08 00:43:48 +00001010
1011static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001012fileio_repr(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001013{
Martin v. Löwis767046a2011-10-14 15:35:36 +02001014 _Py_IDENTIFIER(name);
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001015 PyObject *nameobj, *res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001016
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001017 if (self->fd < 0)
1018 return PyUnicode_FromFormat("<_io.FileIO [closed]>");
Antoine Pitrou716c4442009-05-23 19:04:03 +00001019
Martin v. Löwis767046a2011-10-14 15:35:36 +02001020 nameobj = _PyObject_GetAttrId((PyObject *) self, &PyId_name);
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001021 if (nameobj == NULL) {
1022 if (PyErr_ExceptionMatches(PyExc_AttributeError))
1023 PyErr_Clear();
1024 else
1025 return NULL;
1026 res = PyUnicode_FromFormat("<_io.FileIO fd=%d mode='%s'>",
1027 self->fd, mode_string(self));
1028 }
1029 else {
1030 res = PyUnicode_FromFormat("<_io.FileIO name=%R mode='%s'>",
1031 nameobj, mode_string(self));
1032 Py_DECREF(nameobj);
1033 }
1034 return res;
Guido van Rossuma9e20242007-03-08 00:43:48 +00001035}
1036
1037static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001038fileio_isatty(fileio *self)
Guido van Rossuma9e20242007-03-08 00:43:48 +00001039{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001040 long res;
Guido van Rossum53807da2007-04-10 19:01:47 +00001041
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001042 if (self->fd < 0)
1043 return err_closed();
1044 Py_BEGIN_ALLOW_THREADS
1045 res = isatty(self->fd);
1046 Py_END_ALLOW_THREADS
1047 return PyBool_FromLong(res);
Guido van Rossuma9e20242007-03-08 00:43:48 +00001048}
1049
Antoine Pitrou243757e2010-11-05 21:15:39 +00001050static PyObject *
1051fileio_getstate(fileio *self)
1052{
1053 PyErr_Format(PyExc_TypeError,
1054 "cannot serialize '%s' object", Py_TYPE(self)->tp_name);
1055 return NULL;
1056}
1057
Guido van Rossuma9e20242007-03-08 00:43:48 +00001058
1059PyDoc_STRVAR(fileio_doc,
Ross Lagerwall59142db2011-10-31 20:34:46 +02001060"file(name: str[, mode: str][, opener: None]) -> file IO object\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001061"\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001062"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 +01001063"writing, exclusive creation or appending. The file will be created if it\n"
1064"doesn't exist when opened for writing or appending; it will be truncated\n"
1065"when opened for writing. A `FileExistsError` will be raised if it already\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001066"exists when opened for creating. Opening a file for creating implies\n"
1067"writing so this mode behaves in a similar way to 'w'.Add a '+' to the mode\n"
1068"to allow simultaneous reading and writing. A custom opener can be used by\n"
1069"passing a callable as *opener*. The underlying file descriptor for the file\n"
Ross Lagerwall59142db2011-10-31 20:34:46 +02001070"object is then obtained by calling opener with (*name*, *flags*).\n"
Charles-François Natalidc3044c2012-01-09 22:40:02 +01001071"*opener* must return an open file descriptor (passing os.open as *opener*\n"
1072"results in functionality similar to passing None).");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001073
1074PyDoc_STRVAR(read_doc,
1075"read(size: int) -> bytes. read at most size bytes, returned as bytes.\n"
1076"\n"
1077"Only makes one system call, so less data may be returned than requested\n"
Guido van Rossum7165cb12007-07-10 06:54:34 +00001078"In non-blocking mode, returns None if no data is available.\n"
1079"On end-of-file, returns ''.");
1080
1081PyDoc_STRVAR(readall_doc,
1082"readall() -> bytes. read all data from the file, returned as bytes.\n"
1083"\n"
1084"In non-blocking mode, returns as much as is immediately available,\n"
1085"or None if no data is available. On end-of-file, returns ''.");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001086
1087PyDoc_STRVAR(write_doc,
1088"write(b: bytes) -> int. Write bytes b to file, return number written.\n"
1089"\n"
1090"Only makes one system call, so not all of the data may be written.\n"
1091"The number of bytes actually written is returned.");
1092
1093PyDoc_STRVAR(fileno_doc,
1094"fileno() -> int. \"file descriptor\".\n"
1095"\n"
1096"This is needed for lower-level file interfaces, such the fcntl module.");
1097
1098PyDoc_STRVAR(seek_doc,
1099"seek(offset: int[, whence: int]) -> None. Move to new file position.\n"
1100"\n"
1101"Argument offset is a byte count. Optional argument whence defaults to\n"
1102"0 (offset from start of file, offset should be >= 0); other values are 1\n"
1103"(move relative to current position, positive or negative), and 2 (move\n"
1104"relative to end of file, usually negative, although many platforms allow\n"
1105"seeking beyond the end of a file)."
1106"\n"
1107"Note that not all file objects are seekable.");
1108
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001109#ifdef HAVE_FTRUNCATE
Guido van Rossuma9e20242007-03-08 00:43:48 +00001110PyDoc_STRVAR(truncate_doc,
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001111"truncate([size: int]) -> None. Truncate the file to at most size bytes.\n"
Guido van Rossuma9e20242007-03-08 00:43:48 +00001112"\n"
Alexandre Vassalotti77250f42008-05-06 19:48:38 +00001113"Size defaults to the current file position, as returned by tell()."
1114"The current file position is changed to the value of size.");
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001115#endif
Guido van Rossuma9e20242007-03-08 00:43:48 +00001116
1117PyDoc_STRVAR(tell_doc,
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001118"tell() -> int. Current file position");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001119
1120PyDoc_STRVAR(readinto_doc,
Benjamin Peterson9a8082f2009-03-05 00:55:56 +00001121"readinto() -> Same as RawIOBase.readinto().");
Guido van Rossuma9e20242007-03-08 00:43:48 +00001122
1123PyDoc_STRVAR(close_doc,
1124"close() -> None. Close the file.\n"
1125"\n"
1126"A closed file cannot be used for further I/O operations. close() may be\n"
1127"called more than once without error. Changes the fileno to -1.");
1128
1129PyDoc_STRVAR(isatty_doc,
1130"isatty() -> bool. True if the file is connected to a tty device.");
1131
Guido van Rossuma9e20242007-03-08 00:43:48 +00001132PyDoc_STRVAR(seekable_doc,
1133"seekable() -> bool. True if file supports random-access.");
1134
1135PyDoc_STRVAR(readable_doc,
1136"readable() -> bool. True if file was opened in a read mode.");
1137
1138PyDoc_STRVAR(writable_doc,
1139"writable() -> bool. True if file was opened in a write mode.");
1140
1141static PyMethodDef fileio_methods[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001142 {"read", (PyCFunction)fileio_read, METH_VARARGS, read_doc},
1143 {"readall", (PyCFunction)fileio_readall, METH_NOARGS, readall_doc},
1144 {"readinto", (PyCFunction)fileio_readinto, METH_VARARGS, readinto_doc},
1145 {"write", (PyCFunction)fileio_write, METH_VARARGS, write_doc},
1146 {"seek", (PyCFunction)fileio_seek, METH_VARARGS, seek_doc},
1147 {"tell", (PyCFunction)fileio_tell, METH_VARARGS, tell_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001148#ifdef HAVE_FTRUNCATE
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001149 {"truncate", (PyCFunction)fileio_truncate, METH_VARARGS, truncate_doc},
Thomas Hellerc6a55ee2007-07-11 12:45:46 +00001150#endif
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001151 {"close", (PyCFunction)fileio_close, METH_NOARGS, close_doc},
1152 {"seekable", (PyCFunction)fileio_seekable, METH_NOARGS, seekable_doc},
1153 {"readable", (PyCFunction)fileio_readable, METH_NOARGS, readable_doc},
1154 {"writable", (PyCFunction)fileio_writable, METH_NOARGS, writable_doc},
1155 {"fileno", (PyCFunction)fileio_fileno, METH_NOARGS, fileno_doc},
1156 {"isatty", (PyCFunction)fileio_isatty, METH_NOARGS, isatty_doc},
Antoine Pitroue033e062010-10-29 10:38:18 +00001157 {"_dealloc_warn", (PyCFunction)fileio_dealloc_warn, METH_O, NULL},
Antoine Pitrou243757e2010-11-05 21:15:39 +00001158 {"__getstate__", (PyCFunction)fileio_getstate, METH_NOARGS, NULL},
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001159 {NULL, NULL} /* sentinel */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001160};
1161
Guido van Rossum53807da2007-04-10 19:01:47 +00001162/* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
1163
Guido van Rossumb0428152007-04-08 17:44:42 +00001164static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001165get_closed(fileio *self, void *closure)
Guido van Rossumb0428152007-04-08 17:44:42 +00001166{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001167 return PyBool_FromLong((long)(self->fd < 0));
Guido van Rossum53807da2007-04-10 19:01:47 +00001168}
1169
1170static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001171get_closefd(fileio *self, void *closure)
Christian Heimesecc42a22008-11-05 19:30:32 +00001172{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001173 return PyBool_FromLong((long)(self->closefd));
Christian Heimesecc42a22008-11-05 19:30:32 +00001174}
1175
1176static PyObject *
Benjamin Peterson680bf1a2009-06-12 02:07:12 +00001177get_mode(fileio *self, void *closure)
Guido van Rossum53807da2007-04-10 19:01:47 +00001178{
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001179 return PyUnicode_FromString(mode_string(self));
Guido van Rossumb0428152007-04-08 17:44:42 +00001180}
1181
1182static PyGetSetDef fileio_getsetlist[] = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001183 {"closed", (getter)get_closed, NULL, "True if the file is closed"},
1184 {"closefd", (getter)get_closefd, NULL,
1185 "True if the file descriptor will be closed"},
1186 {"mode", (getter)get_mode, NULL, "String giving the file mode"},
1187 {NULL},
Guido van Rossumb0428152007-04-08 17:44:42 +00001188};
1189
Guido van Rossuma9e20242007-03-08 00:43:48 +00001190PyTypeObject PyFileIO_Type = {
Antoine Pitrouae4b4722010-05-05 16:31:07 +00001191 PyVarObject_HEAD_INIT(NULL, 0)
1192 "_io.FileIO",
1193 sizeof(fileio),
1194 0,
1195 (destructor)fileio_dealloc, /* tp_dealloc */
1196 0, /* tp_print */
1197 0, /* tp_getattr */
1198 0, /* tp_setattr */
1199 0, /* tp_reserved */
1200 (reprfunc)fileio_repr, /* tp_repr */
1201 0, /* tp_as_number */
1202 0, /* tp_as_sequence */
1203 0, /* tp_as_mapping */
1204 0, /* tp_hash */
1205 0, /* tp_call */
1206 0, /* tp_str */
1207 PyObject_GenericGetAttr, /* tp_getattro */
1208 0, /* tp_setattro */
1209 0, /* tp_as_buffer */
1210 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
1211 | Py_TPFLAGS_HAVE_GC, /* tp_flags */
1212 fileio_doc, /* tp_doc */
1213 (traverseproc)fileio_traverse, /* tp_traverse */
1214 (inquiry)fileio_clear, /* tp_clear */
1215 0, /* tp_richcompare */
1216 offsetof(fileio, weakreflist), /* tp_weaklistoffset */
1217 0, /* tp_iter */
1218 0, /* tp_iternext */
1219 fileio_methods, /* tp_methods */
1220 0, /* tp_members */
1221 fileio_getsetlist, /* tp_getset */
1222 0, /* tp_base */
1223 0, /* tp_dict */
1224 0, /* tp_descr_get */
1225 0, /* tp_descr_set */
1226 offsetof(fileio, dict), /* tp_dictoffset */
1227 fileio_init, /* tp_init */
1228 PyType_GenericAlloc, /* tp_alloc */
1229 fileio_new, /* tp_new */
1230 PyObject_GC_Del, /* tp_free */
Guido van Rossuma9e20242007-03-08 00:43:48 +00001231};