blob: 985fa81a57b133a4586a02691505e73e5fcb6ed0 [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"
5#include <sys/types.h>
6#include <sys/stat.h>
7#include <fcntl.h>
8#include <stddef.h> /* For offsetof */
9
10/*
11 * Known likely problems:
12 *
13 * - Files larger then 2**32-1
14 * - Files with unicode filenames
15 * - Passing numbers greater than 2**32-1 when an integer is expected
16 * - Making it work on Windows and other oddball platforms
17 *
18 * To Do:
19 *
20 * - autoconfify header file inclusion
Guido van Rossuma9e20242007-03-08 00:43:48 +000021 */
22
23#ifdef MS_WINDOWS
24/* can simulate truncate with Win32 API functions; see file_truncate */
25#define HAVE_FTRUNCATE
26#define WIN32_LEAN_AND_MEAN
27#include <windows.h>
28#endif
29
30typedef struct {
31 PyObject_HEAD
32 int fd;
Guido van Rossuma9e20242007-03-08 00:43:48 +000033 int readable;
34 int writable;
35 int seekable; /* -1 means unknown */
36 PyObject *weakreflist;
37} PyFileIOObject;
38
Collin Winteraf334382007-03-08 21:46:15 +000039PyTypeObject PyFileIO_Type;
40
Guido van Rossuma9e20242007-03-08 00:43:48 +000041#define PyFileIO_Check(op) (PyObject_TypeCheck((op), &PyFileIO_Type))
42
43/* Note: if this function is changed so that it can return a true value,
44 * then we need a separate function for __exit__
45 */
46static PyObject *
47fileio_close(PyFileIOObject *self)
48{
49 if (self->fd >= 0) {
Guido van Rossumb0428152007-04-08 17:44:42 +000050 int fd = self->fd;
51 self->fd = -1;
Guido van Rossuma9e20242007-03-08 00:43:48 +000052 Py_BEGIN_ALLOW_THREADS
53 errno = 0;
Guido van Rossumb0428152007-04-08 17:44:42 +000054 close(fd);
Guido van Rossuma9e20242007-03-08 00:43:48 +000055 Py_END_ALLOW_THREADS
56 if (errno < 0) {
57 PyErr_SetFromErrno(PyExc_IOError);
58 return NULL;
59 }
Guido van Rossuma9e20242007-03-08 00:43:48 +000060 }
61
62 Py_RETURN_NONE;
63}
64
65static PyObject *
66fileio_new(PyTypeObject *type, PyObject *args, PyObject *kews)
67{
68 PyFileIOObject *self;
69
70 assert(type != NULL && type->tp_alloc != NULL);
71
72 self = (PyFileIOObject *) type->tp_alloc(type, 0);
73 if (self != NULL) {
74 self->fd = -1;
75 self->weakreflist = NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +000076 }
77
78 return (PyObject *) self;
79}
80
81/* On Unix, open will succeed for directories.
82 In Python, there should be no file objects referring to
83 directories, so we need a check. */
84
85static int
86dircheck(PyFileIOObject* self)
87{
88#if defined(HAVE_FSTAT) && defined(S_IFDIR) && defined(EISDIR)
89 struct stat buf;
90 if (self->fd < 0)
91 return 0;
92 if (fstat(self->fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
93#ifdef HAVE_STRERROR
94 char *msg = strerror(EISDIR);
95#else
96 char *msg = "Is a directory";
97#endif
98 PyObject *exc;
99 PyObject *closeresult = fileio_close(self);
100 Py_DECREF(closeresult);
Guido van Rossum53807da2007-04-10 19:01:47 +0000101
Guido van Rossuma9e20242007-03-08 00:43:48 +0000102 exc = PyObject_CallFunction(PyExc_IOError, "(is)",
103 EISDIR, msg);
104 PyErr_SetObject(PyExc_IOError, exc);
105 Py_XDECREF(exc);
106 return -1;
107 }
108#endif
109 return 0;
110}
111
112
113static int
114fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
115{
116 PyFileIOObject *self = (PyFileIOObject *) oself;
Guido van Rossumb0428152007-04-08 17:44:42 +0000117 static char *kwlist[] = {"file", "mode", NULL};
Guido van Rossuma9e20242007-03-08 00:43:48 +0000118 char *name = NULL;
119 char *mode = "r";
Guido van Rossum53807da2007-04-10 19:01:47 +0000120 char *s;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000121 int wideargument = 0;
122 int ret = 0;
123 int rwa = 0, plus = 0, append = 0;
124 int flags = 0;
Guido van Rossumb0428152007-04-08 17:44:42 +0000125 int fd = -1;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000126
127 assert(PyFileIO_Check(oself));
128 if (self->fd >= 0)
129 {
130 /* Have to close the existing file first. */
131 PyObject *closeresult = fileio_close(self);
132 if (closeresult == NULL)
133 return -1;
134 Py_DECREF(closeresult);
135 }
136
Guido van Rossumb0428152007-04-08 17:44:42 +0000137 if (PyArg_ParseTupleAndKeywords(args, kwds, "i|s:fileio",
138 kwlist, &fd, &mode)) {
139 if (fd < 0) {
140 PyErr_SetString(PyExc_ValueError,
141 "Negative filedescriptor");
142 return -1;
143 }
144 }
145 else {
146 PyErr_Clear();
147
Guido van Rossuma9e20242007-03-08 00:43:48 +0000148#ifdef Py_WIN_WIDE_FILENAMES
Guido van Rossumb0428152007-04-08 17:44:42 +0000149 if (GetVersion() < 0x80000000) {
150 /* On NT, so wide API available */
Guido van Rossuma9e20242007-03-08 00:43:48 +0000151 PyObject *po;
152 if (PyArg_ParseTupleAndKeywords(args, kwds, "U|s:fileio",
153 kwlist, &po, &mode)) {
154 wideargument = 1;
155 } else {
156 /* Drop the argument parsing error as narrow
157 strings are also valid. */
158 PyErr_Clear();
159 }
160
161 PyErr_SetString(PyExc_NotImplementedError,
Guido van Rossumb0428152007-04-08 17:44:42 +0000162 "Windows wide filenames are not yet supported");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000163 goto error;
Guido van Rossumb0428152007-04-08 17:44:42 +0000164 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000165#endif
166
Guido van Rossumb0428152007-04-08 17:44:42 +0000167 if (!wideargument) {
Guido van Rossuma9e20242007-03-08 00:43:48 +0000168 if (!PyArg_ParseTupleAndKeywords(args, kwds, "et|s:fileio",
169 kwlist,
170 Py_FileSystemDefaultEncoding,
171 &name, &mode))
172 goto error;
Guido van Rossumb0428152007-04-08 17:44:42 +0000173 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000174 }
175
176 self->readable = self->writable = 0;
Guido van Rossum53807da2007-04-10 19:01:47 +0000177 self->seekable = -1;
178 s = mode;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000179 while (*s) {
180 switch (*s++) {
181 case 'r':
182 if (rwa) {
183 bad_mode:
184 PyErr_SetString(PyExc_ValueError,
185 "Must have exactly one of read/write/append mode");
186 goto error;
187 }
188 rwa = 1;
189 self->readable = 1;
190 break;
191 case 'w':
192 if (rwa)
193 goto bad_mode;
194 rwa = 1;
195 self->writable = 1;
196 flags |= O_CREAT | O_TRUNC;
197 break;
198 case 'a':
199 if (rwa)
200 goto bad_mode;
201 rwa = 1;
202 self->writable = 1;
203 flags |= O_CREAT;
204 append = 1;
205 break;
206 case '+':
207 if (plus)
208 goto bad_mode;
209 self->readable = self->writable = 1;
210 plus = 1;
211 break;
212 default:
213 PyErr_Format(PyExc_ValueError,
214 "invalid mode: %.200s", mode);
215 goto error;
216 }
217 }
218
219 if (!rwa)
220 goto bad_mode;
221
222 if (self->readable && self->writable)
223 flags |= O_RDWR;
224 else if (self->readable)
225 flags |= O_RDONLY;
226 else
227 flags |= O_WRONLY;
228
229#ifdef O_BINARY
230 flags |= O_BINARY;
231#endif
232
Guido van Rossumb0428152007-04-08 17:44:42 +0000233 if (fd >= 0) {
234 self->fd = fd;
Guido van Rossumb0428152007-04-08 17:44:42 +0000235 }
236 else {
237 Py_BEGIN_ALLOW_THREADS
238 errno = 0;
239 self->fd = open(name, flags, 0666);
240 Py_END_ALLOW_THREADS
241 if (self->fd < 0 || dircheck(self) < 0) {
242 PyErr_SetFromErrnoWithFilename(PyExc_IOError, name);
243 goto error;
244 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000245 }
246
247 goto done;
248
249 error:
250 ret = -1;
Guido van Rossum53807da2007-04-10 19:01:47 +0000251
Guido van Rossuma9e20242007-03-08 00:43:48 +0000252 done:
253 PyMem_Free(name);
254 return ret;
255}
256
257static void
258fileio_dealloc(PyFileIOObject *self)
259{
260 if (self->weakreflist != NULL)
261 PyObject_ClearWeakRefs((PyObject *) self);
262
Guido van Rossum53807da2007-04-10 19:01:47 +0000263 if (self->fd >= 0) {
Guido van Rossuma9e20242007-03-08 00:43:48 +0000264 PyObject *closeresult = fileio_close(self);
265 if (closeresult == NULL) {
266#ifdef HAVE_STRERROR
Guido van Rossum53807da2007-04-10 19:01:47 +0000267 PySys_WriteStderr("close failed: [Errno %d] %s\n",
268 errno, strerror(errno));
Guido van Rossuma9e20242007-03-08 00:43:48 +0000269#else
270 PySys_WriteStderr("close failed: [Errno %d]\n", errno);
271#endif
Guido van Rossum53807da2007-04-10 19:01:47 +0000272 } else
Guido van Rossuma9e20242007-03-08 00:43:48 +0000273 Py_DECREF(closeresult);
274 }
275
276 self->ob_type->tp_free((PyObject *)self);
277}
278
279static PyObject *
280err_closed(void)
281{
282 PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
283 return NULL;
284}
285
286static PyObject *
Guido van Rossum53807da2007-04-10 19:01:47 +0000287err_mode(char *action)
288{
289 PyErr_Format(PyExc_ValueError, "File not open for %s", action);
290 return NULL;
291}
292
293static PyObject *
Guido van Rossuma9e20242007-03-08 00:43:48 +0000294fileio_fileno(PyFileIOObject *self)
295{
296 if (self->fd < 0)
297 return err_closed();
298 return PyInt_FromLong((long) self->fd);
299}
300
301static PyObject *
302fileio_readable(PyFileIOObject *self)
303{
304 if (self->fd < 0)
305 return err_closed();
306 return PyInt_FromLong((long) self->readable);
307}
308
309static PyObject *
310fileio_writable(PyFileIOObject *self)
311{
312 if (self->fd < 0)
313 return err_closed();
314 return PyInt_FromLong((long) self->writable);
315}
316
317static PyObject *
318fileio_seekable(PyFileIOObject *self)
319{
320 if (self->fd < 0)
321 return err_closed();
322 if (self->seekable < 0) {
323 int ret;
324 Py_BEGIN_ALLOW_THREADS
325 ret = lseek(self->fd, 0, SEEK_CUR);
326 Py_END_ALLOW_THREADS
327 if (ret < 0)
328 self->seekable = 0;
329 else
330 self->seekable = 1;
331 }
332 return PyInt_FromLong((long) self->seekable);
333}
334
335static PyObject *
336fileio_readinto(PyFileIOObject *self, PyObject *args)
337{
338 char *ptr;
339 Py_ssize_t n;
Guido van Rossum53807da2007-04-10 19:01:47 +0000340
Guido van Rossuma9e20242007-03-08 00:43:48 +0000341 if (self->fd < 0)
342 return err_closed();
Guido van Rossum53807da2007-04-10 19:01:47 +0000343 if (!self->readable)
344 return err_mode("reading");
345
Guido van Rossuma9e20242007-03-08 00:43:48 +0000346 if (!PyArg_ParseTuple(args, "w#", &ptr, &n))
347 return NULL;
348
349 Py_BEGIN_ALLOW_THREADS
350 errno = 0;
351 n = read(self->fd, ptr, n);
352 Py_END_ALLOW_THREADS
353 if (n < 0) {
354 if (errno == EAGAIN)
355 Py_RETURN_NONE;
356 PyErr_SetFromErrno(PyExc_IOError);
357 return NULL;
358 }
359
360 return PyInt_FromLong(n);
361}
362
363static PyObject *
364fileio_read(PyFileIOObject *self, PyObject *args)
365{
366 char *ptr;
367 Py_ssize_t n, size;
368 PyObject *bytes;
369
370 if (self->fd < 0)
371 return err_closed();
Guido van Rossum53807da2007-04-10 19:01:47 +0000372 if (!self->readable)
373 return err_mode("reading");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000374
375 if (!PyArg_ParseTuple(args, "i", &size))
376 return NULL;
377
378 bytes = PyBytes_FromStringAndSize(NULL, size);
379 if (bytes == NULL)
380 return NULL;
381 ptr = PyBytes_AsString(bytes);
382
383 Py_BEGIN_ALLOW_THREADS
384 errno = 0;
385 n = read(self->fd, ptr, size);
386 Py_END_ALLOW_THREADS
387
388 if (n < 0) {
389 if (errno == EAGAIN)
390 Py_RETURN_NONE;
391 PyErr_SetFromErrno(PyExc_IOError);
392 return NULL;
393 }
394
395 if (n != size) {
396 if (PyBytes_Resize(bytes, n) < 0) {
397 Py_DECREF(bytes);
Guido van Rossum53807da2007-04-10 19:01:47 +0000398 return NULL;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000399 }
Guido van Rossum53807da2007-04-10 19:01:47 +0000400 }
Guido van Rossuma9e20242007-03-08 00:43:48 +0000401
402 return (PyObject *) bytes;
403}
404
405static PyObject *
406fileio_write(PyFileIOObject *self, PyObject *args)
407{
408 Py_ssize_t n;
409 char *ptr;
410
411 if (self->fd < 0)
412 return err_closed();
Guido van Rossum53807da2007-04-10 19:01:47 +0000413 if (!self->writable)
414 return err_mode("writing");
415
Guido van Rossuma9e20242007-03-08 00:43:48 +0000416 if (!PyArg_ParseTuple(args, "s#", &ptr, &n))
417 return NULL;
418
419 Py_BEGIN_ALLOW_THREADS
420 errno = 0;
421 n = write(self->fd, ptr, n);
422 Py_END_ALLOW_THREADS
423
424 if (n < 0) {
425 if (errno == EAGAIN)
426 Py_RETURN_NONE;
427 PyErr_SetFromErrno(PyExc_IOError);
428 return NULL;
429 }
430
431 return PyInt_FromLong(n);
432}
433
Guido van Rossum53807da2007-04-10 19:01:47 +0000434/* XXX Windows support below is likely incomplete */
435
436#if defined(MS_WIN64) || defined(MS_WINDOWS)
437typedef PY_LONG_LONG Py_off_t;
438#else
439typedef off_t Py_off_t;
440#endif
441
442/* Cribbed from posix_lseek() */
443static PyObject *
444portable_lseek(int fd, PyObject *posobj, int whence)
445{
446 Py_off_t pos, res;
447
448#ifdef SEEK_SET
449 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
450 switch (whence) {
451#if SEEK_SET != 0
452 case 0: whence = SEEK_SET; break;
453#endif
454#if SEEK_CUR != 1
455 case 1: whence = SEEK_CUR; break;
456#endif
457#if SEEL_END != 2
458 case 2: whence = SEEK_END; break;
459#endif
460 }
461#endif /* SEEK_SET */
462
463 if (posobj == NULL)
464 pos = 0;
465 else {
466#if !defined(HAVE_LARGEFILE_SUPPORT)
467 pos = PyInt_AsLong(posobj);
468#else
469 pos = PyLong_Check(posobj) ?
470 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
471#endif
472 if (PyErr_Occurred())
473 return NULL;
474 }
475
476 Py_BEGIN_ALLOW_THREADS
477#if defined(MS_WIN64) || defined(MS_WINDOWS)
478 res = _lseeki64(fd, pos, whence);
479#else
480 res = lseek(fd, pos, whence);
481#endif
482 Py_END_ALLOW_THREADS
483 if (res < 0)
484 return PyErr_SetFromErrno(PyExc_IOError);
485
486#if !defined(HAVE_LARGEFILE_SUPPORT)
487 return PyInt_FromLong(res);
488#else
489 return PyLong_FromLongLong(res);
490#endif
491}
492
Guido van Rossuma9e20242007-03-08 00:43:48 +0000493static PyObject *
494fileio_seek(PyFileIOObject *self, PyObject *args)
495{
Guido van Rossum53807da2007-04-10 19:01:47 +0000496 PyObject *posobj;
497 int whence = 0;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000498
499 if (self->fd < 0)
500 return err_closed();
501
Guido van Rossum53807da2007-04-10 19:01:47 +0000502 if (!PyArg_ParseTuple(args, "O|i", &posobj, &whence))
Guido van Rossuma9e20242007-03-08 00:43:48 +0000503 return NULL;
504
Guido van Rossum53807da2007-04-10 19:01:47 +0000505 return portable_lseek(self->fd, posobj, whence);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000506}
507
508static PyObject *
509fileio_tell(PyFileIOObject *self, PyObject *args)
510{
Guido van Rossuma9e20242007-03-08 00:43:48 +0000511 if (self->fd < 0)
512 return err_closed();
513
Guido van Rossum53807da2007-04-10 19:01:47 +0000514 return portable_lseek(self->fd, NULL, 1);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000515}
516
Guido van Rossuma9e20242007-03-08 00:43:48 +0000517static PyObject *
518fileio_truncate(PyFileIOObject *self, PyObject *args)
519{
Guido van Rossum53807da2007-04-10 19:01:47 +0000520 PyObject *posobj = NULL;
521 Py_off_t pos;
522 int fd, whence;
Guido van Rossuma9e20242007-03-08 00:43:48 +0000523
Guido van Rossum53807da2007-04-10 19:01:47 +0000524 fd = self->fd;
525 if (fd < 0)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000526 return err_closed();
Guido van Rossum53807da2007-04-10 19:01:47 +0000527 if (!self->writable)
528 return err_mode("writing");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000529
Guido van Rossum53807da2007-04-10 19:01:47 +0000530 if (!PyArg_ParseTuple(args, "|O", &posobj))
531 return NULL;
532
533 if (posobj == NULL)
534 whence = 1;
535 else
536 whence = 0;
537
538 posobj = portable_lseek(fd, posobj, whence);
539 if (posobj == NULL)
540 return NULL;
541
542#if !defined(HAVE_LARGEFILE_SUPPORT)
543 pos = PyInt_AsLong(posobj);
544#else
545 pos = PyLong_Check(posobj) ?
546 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
547#endif
548 Py_DECREF(posobj);
549 if (PyErr_Occurred())
550 return NULL;
551
Guido van Rossuma9e20242007-03-08 00:43:48 +0000552 Py_BEGIN_ALLOW_THREADS
553 errno = 0;
Guido van Rossum53807da2007-04-10 19:01:47 +0000554 pos = ftruncate(fd, pos);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000555 Py_END_ALLOW_THREADS
556
Guido van Rossum53807da2007-04-10 19:01:47 +0000557 if (errno < 0)
Guido van Rossuma9e20242007-03-08 00:43:48 +0000558 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossuma9e20242007-03-08 00:43:48 +0000559
Guido van Rossuma9e20242007-03-08 00:43:48 +0000560 Py_RETURN_NONE;
561}
Guido van Rossum53807da2007-04-10 19:01:47 +0000562
563static char *
564mode_string(PyFileIOObject *self)
565{
566 if (self->readable) {
567 if (self->writable)
568 return "r+";
569 else
570 return "r";
571 }
572 else
573 return "w";
574}
Guido van Rossuma9e20242007-03-08 00:43:48 +0000575
576static PyObject *
577fileio_repr(PyFileIOObject *self)
578{
Guido van Rossum53807da2007-04-10 19:01:47 +0000579 if (self->fd < 0)
580 return PyString_FromFormat("_fileio._FileIO(-1)");
Guido van Rossuma9e20242007-03-08 00:43:48 +0000581
Guido van Rossum53807da2007-04-10 19:01:47 +0000582 return PyString_FromFormat("_fileio._FileIO(%d, '%s')",
583 self->fd, mode_string(self));
Guido van Rossuma9e20242007-03-08 00:43:48 +0000584}
585
586static PyObject *
587fileio_isatty(PyFileIOObject *self)
588{
589 long res;
Guido van Rossum53807da2007-04-10 19:01:47 +0000590
Guido van Rossuma9e20242007-03-08 00:43:48 +0000591 if (self->fd < 0)
592 return err_closed();
593 Py_BEGIN_ALLOW_THREADS
594 res = isatty(self->fd);
595 Py_END_ALLOW_THREADS
596 return PyBool_FromLong(res);
597}
598
Guido van Rossuma9e20242007-03-08 00:43:48 +0000599
600PyDoc_STRVAR(fileio_doc,
601"file(name: str[, mode: str]) -> file IO object\n"
602"\n"
603"Open a file. The mode can be 'r', 'w' or 'a' for reading (default),\n"
604"writing or appending. The file will be created if it doesn't exist\n"
605"when opened for writing or appending; it will be truncated when\n"
606"opened for writing. Add a '+' to the mode to allow simultaneous\n"
607"reading and writing.");
608
609PyDoc_STRVAR(read_doc,
610"read(size: int) -> bytes. read at most size bytes, returned as bytes.\n"
611"\n"
612"Only makes one system call, so less data may be returned than requested\n"
613"In non-blocking mode, returns None if no data is available. On\n"
614"end-of-file, returns 0.");
615
616PyDoc_STRVAR(write_doc,
617"write(b: bytes) -> int. Write bytes b to file, return number written.\n"
618"\n"
619"Only makes one system call, so not all of the data may be written.\n"
620"The number of bytes actually written is returned.");
621
622PyDoc_STRVAR(fileno_doc,
623"fileno() -> int. \"file descriptor\".\n"
624"\n"
625"This is needed for lower-level file interfaces, such the fcntl module.");
626
627PyDoc_STRVAR(seek_doc,
628"seek(offset: int[, whence: int]) -> None. Move to new file position.\n"
629"\n"
630"Argument offset is a byte count. Optional argument whence defaults to\n"
631"0 (offset from start of file, offset should be >= 0); other values are 1\n"
632"(move relative to current position, positive or negative), and 2 (move\n"
633"relative to end of file, usually negative, although many platforms allow\n"
634"seeking beyond the end of a file)."
635"\n"
636"Note that not all file objects are seekable.");
637
638PyDoc_STRVAR(truncate_doc,
639"truncate([size: int]) -> None. Truncate the file to at most size bytes.\n"
640"\n"
641"Size defaults to the current file position, as returned by tell().");
642
643PyDoc_STRVAR(tell_doc,
644"tell() -> int. Current file position");
645
646PyDoc_STRVAR(readinto_doc,
647"readinto() -> Undocumented. Don't use this; it may go away.");
648
649PyDoc_STRVAR(close_doc,
650"close() -> None. Close the file.\n"
651"\n"
652"A closed file cannot be used for further I/O operations. close() may be\n"
653"called more than once without error. Changes the fileno to -1.");
654
655PyDoc_STRVAR(isatty_doc,
656"isatty() -> bool. True if the file is connected to a tty device.");
657
Guido van Rossuma9e20242007-03-08 00:43:48 +0000658PyDoc_STRVAR(seekable_doc,
659"seekable() -> bool. True if file supports random-access.");
660
661PyDoc_STRVAR(readable_doc,
662"readable() -> bool. True if file was opened in a read mode.");
663
664PyDoc_STRVAR(writable_doc,
665"writable() -> bool. True if file was opened in a write mode.");
666
667static PyMethodDef fileio_methods[] = {
668 {"read", (PyCFunction)fileio_read, METH_VARARGS, read_doc},
669 {"readinto", (PyCFunction)fileio_readinto, METH_VARARGS, readinto_doc},
670 {"write", (PyCFunction)fileio_write, METH_VARARGS, write_doc},
671 {"seek", (PyCFunction)fileio_seek, METH_VARARGS, seek_doc},
672 {"tell", (PyCFunction)fileio_tell, METH_VARARGS, tell_doc},
673 {"truncate", (PyCFunction)fileio_truncate, METH_VARARGS, truncate_doc},
674 {"close", (PyCFunction)fileio_close, METH_NOARGS, close_doc},
675 {"seekable", (PyCFunction)fileio_seekable, METH_NOARGS, seekable_doc},
676 {"readable", (PyCFunction)fileio_readable, METH_NOARGS, readable_doc},
677 {"writable", (PyCFunction)fileio_writable, METH_NOARGS, writable_doc},
678 {"fileno", (PyCFunction)fileio_fileno, METH_NOARGS, fileno_doc},
679 {"isatty", (PyCFunction)fileio_isatty, METH_NOARGS, isatty_doc},
Guido van Rossuma9e20242007-03-08 00:43:48 +0000680 {NULL, NULL} /* sentinel */
681};
682
Guido van Rossum53807da2007-04-10 19:01:47 +0000683/* 'closed' and 'mode' are attributes for backwards compatibility reasons. */
684
Guido van Rossumb0428152007-04-08 17:44:42 +0000685static PyObject *
Guido van Rossum53807da2007-04-10 19:01:47 +0000686get_closed(PyFileIOObject *self, void *closure)
Guido van Rossumb0428152007-04-08 17:44:42 +0000687{
Guido van Rossum53807da2007-04-10 19:01:47 +0000688 return PyBool_FromLong((long)(self->fd < 0));
689}
690
691static PyObject *
692get_mode(PyFileIOObject *self, void *closure)
693{
694 return PyString_FromString(mode_string(self));
Guido van Rossumb0428152007-04-08 17:44:42 +0000695}
696
697static PyGetSetDef fileio_getsetlist[] = {
698 {"closed", (getter)get_closed, NULL, "True if the file is closed"},
Guido van Rossum53807da2007-04-10 19:01:47 +0000699 {"mode", (getter)get_mode, NULL, "String giving the file mode"},
Guido van Rossumb0428152007-04-08 17:44:42 +0000700 {0},
701};
702
Guido van Rossuma9e20242007-03-08 00:43:48 +0000703PyTypeObject PyFileIO_Type = {
704 PyObject_HEAD_INIT(&PyType_Type)
705 0,
706 "FileIO",
707 sizeof(PyFileIOObject),
708 0,
709 (destructor)fileio_dealloc, /* tp_dealloc */
710 0, /* tp_print */
711 0, /* tp_getattr */
712 0, /* tp_setattr */
713 0, /* tp_compare */
714 (reprfunc)fileio_repr, /* tp_repr */
715 0, /* tp_as_number */
716 0, /* tp_as_sequence */
717 0, /* tp_as_mapping */
718 0, /* tp_hash */
719 0, /* tp_call */
720 0, /* tp_str */
721 PyObject_GenericGetAttr, /* tp_getattro */
722 0, /* tp_setattro */
723 0, /* tp_as_buffer */
724 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
725 fileio_doc, /* tp_doc */
726 0, /* tp_traverse */
727 0, /* tp_clear */
728 0, /* tp_richcompare */
729 offsetof(PyFileIOObject, weakreflist), /* tp_weaklistoffset */
730 0, /* tp_iter */
731 0, /* tp_iternext */
732 fileio_methods, /* tp_methods */
733 0, /* tp_members */
Guido van Rossumb0428152007-04-08 17:44:42 +0000734 fileio_getsetlist, /* tp_getset */
Guido van Rossuma9e20242007-03-08 00:43:48 +0000735 0, /* tp_base */
736 0, /* tp_dict */
737 0, /* tp_descr_get */
738 0, /* tp_descr_set */
739 0, /* tp_dictoffset */
740 fileio_init, /* tp_init */
741 PyType_GenericAlloc, /* tp_alloc */
742 fileio_new, /* tp_new */
743 PyObject_Del, /* tp_free */
744};
745
746static PyMethodDef module_methods[] = {
747 {NULL, NULL}
748};
749
750PyMODINIT_FUNC
751init_fileio(void)
752{
753 PyObject *m; /* a module object */
754
755 m = Py_InitModule3("_fileio", module_methods,
756 "Fast implementation of io.FileIO.");
757 if (m == NULL)
758 return;
759 if (PyType_Ready(&PyFileIO_Type) < 0)
760 return;
761 Py_INCREF(&PyFileIO_Type);
762 PyModule_AddObject(m, "_FileIO", (PyObject *) &PyFileIO_Type);
763}