blob: f4424184d2df1beae58ae7beec0f037cbb3aa59c [file] [log] [blame]
Guido van Rossumda5b8f22007-06-12 23:30:11 +00001/* File object implementation (what's left of it -- see io.py) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002
Martin v. Löwis18e16552006-02-15 17:27:45 +00003#define PY_SSIZE_T_CLEAN
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Jack Jansen7b8c7542002-04-14 20:12:41 +00006#ifdef HAVE_GETC_UNLOCKED
7#define GETC(f) getc_unlocked(f)
8#define FLOCKFILE(f) flockfile(f)
9#define FUNLOCKFILE(f) funlockfile(f)
10#else
11#define GETC(f) getc(f)
12#define FLOCKFILE(f)
13#define FUNLOCKFILE(f)
14#endif
15
Guido van Rossumda5b8f22007-06-12 23:30:11 +000016/* Newline flags */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000017#define NEWLINE_UNKNOWN 0 /* No newline seen, yet */
18#define NEWLINE_CR 1 /* \r newline seen */
19#define NEWLINE_LF 2 /* \n newline seen */
20#define NEWLINE_CRLF 4 /* \r\n newline seen */
Trent Mickf29f47b2000-08-11 19:02:59 +000021
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000022#ifdef __cplusplus
23extern "C" {
24#endif
25
Guido van Rossumda5b8f22007-06-12 23:30:11 +000026/* External C interface */
Tim Peters59c9a642001-09-13 05:38:56 +000027
28PyObject *
Serhiy Storchakac6792272013-10-19 21:03:34 +030029PyFile_FromFd(int fd, const char *name, const char *mode, int buffering, const char *encoding,
30 const char *errors, const char *newline, int closefd)
Tim Peters59c9a642001-09-13 05:38:56 +000031{
Victor Stinner3603cc52010-08-13 13:34:52 +000032 PyObject *io, *stream;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +020033 _Py_IDENTIFIER(open);
Guido van Rossum53970392007-06-12 00:28:30 +000034
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000035 io = PyImport_ImportModule("io");
36 if (io == NULL)
37 return NULL;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +020038 stream = _PyObject_CallMethodId(io, &PyId_open, "isisssi", fd, mode,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000039 buffering, encoding, errors,
40 newline, closefd);
41 Py_DECREF(io);
42 if (stream == NULL)
43 return NULL;
Victor Stinner3603cc52010-08-13 13:34:52 +000044 /* ignore name attribute because the name attribute of _BufferedIOMixin
45 and TextIOWrapper is read only */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000046 return stream;
Tim Peters59c9a642001-09-13 05:38:56 +000047}
48
49PyObject *
Fred Drakefd99de62000-07-09 05:02:18 +000050PyFile_GetLine(PyObject *f, int n)
Guido van Rossum0bd24411991-04-04 15:21:57 +000051{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000052 PyObject *result;
Guido van Rossum4ddf0a02001-01-07 20:51:39 +000053
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000054 if (f == NULL) {
55 PyErr_BadInternalCall();
56 return NULL;
57 }
Guido van Rossum4ddf0a02001-01-07 20:51:39 +000058
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000059 {
60 PyObject *reader;
61 PyObject *args;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +020062 _Py_IDENTIFIER(readline);
Guido van Rossum4ddf0a02001-01-07 20:51:39 +000063
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +020064 reader = _PyObject_GetAttrId(f, &PyId_readline);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000065 if (reader == NULL)
66 return NULL;
67 if (n <= 0)
68 args = PyTuple_New(0);
69 else
70 args = Py_BuildValue("(i)", n);
71 if (args == NULL) {
72 Py_DECREF(reader);
73 return NULL;
74 }
75 result = PyEval_CallObject(reader, args);
76 Py_DECREF(reader);
77 Py_DECREF(args);
78 if (result != NULL && !PyBytes_Check(result) &&
79 !PyUnicode_Check(result)) {
80 Py_DECREF(result);
81 result = NULL;
82 PyErr_SetString(PyExc_TypeError,
83 "object.readline() returned non-string");
84 }
85 }
Guido van Rossum4ddf0a02001-01-07 20:51:39 +000086
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000087 if (n < 0 && result != NULL && PyBytes_Check(result)) {
88 char *s = PyBytes_AS_STRING(result);
89 Py_ssize_t len = PyBytes_GET_SIZE(result);
90 if (len == 0) {
91 Py_DECREF(result);
92 result = NULL;
93 PyErr_SetString(PyExc_EOFError,
94 "EOF when reading a line");
95 }
96 else if (s[len-1] == '\n') {
97 if (result->ob_refcnt == 1)
98 _PyBytes_Resize(&result, len-1);
99 else {
100 PyObject *v;
101 v = PyBytes_FromStringAndSize(s, len-1);
102 Py_DECREF(result);
103 result = v;
104 }
105 }
106 }
107 if (n < 0 && result != NULL && PyUnicode_Check(result)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200108 Py_ssize_t len = PyUnicode_GET_LENGTH(result);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 if (len == 0) {
110 Py_DECREF(result);
111 result = NULL;
112 PyErr_SetString(PyExc_EOFError,
113 "EOF when reading a line");
114 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200115 else if (PyUnicode_READ_CHAR(result, len-1) == '\n') {
116 PyObject *v;
117 v = PyUnicode_Substring(result, 0, len-1);
118 Py_DECREF(result);
119 result = v;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000120 }
121 }
122 return result;
Guido van Rossum0bd24411991-04-04 15:21:57 +0000123}
124
Guido van Rossum3165fe61992-09-25 21:59:05 +0000125/* Interfaces to write objects/strings to file-like objects */
126
127int
Fred Drakefd99de62000-07-09 05:02:18 +0000128PyFile_WriteObject(PyObject *v, PyObject *f, int flags)
Guido van Rossum3165fe61992-09-25 21:59:05 +0000129{
Victor Stinner9def0902016-08-20 00:44:04 +0200130 PyObject *writer, *value, *result;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200131 _Py_IDENTIFIER(write);
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200132
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 if (f == NULL) {
134 PyErr_SetString(PyExc_TypeError, "writeobject with NULL file");
135 return -1;
136 }
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200137 writer = _PyObject_GetAttrId(f, &PyId_write);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000138 if (writer == NULL)
139 return -1;
140 if (flags & Py_PRINT_RAW) {
141 value = PyObject_Str(v);
142 }
143 else
144 value = PyObject_Repr(v);
145 if (value == NULL) {
146 Py_DECREF(writer);
147 return -1;
148 }
Victor Stinner559bb6a2016-08-22 22:48:54 +0200149 result = _PyObject_CallArg1(writer, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000150 Py_DECREF(value);
151 Py_DECREF(writer);
152 if (result == NULL)
153 return -1;
154 Py_DECREF(result);
155 return 0;
Guido van Rossum3165fe61992-09-25 21:59:05 +0000156}
157
Guido van Rossum27a60b11997-05-22 22:25:11 +0000158int
Tim Petersc1bbcb82001-11-28 22:13:25 +0000159PyFile_WriteString(const char *s, PyObject *f)
Guido van Rossum3165fe61992-09-25 21:59:05 +0000160{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000161 if (f == NULL) {
162 /* Should be caused by a pre-existing error */
163 if (!PyErr_Occurred())
164 PyErr_SetString(PyExc_SystemError,
165 "null file for PyFile_WriteString");
166 return -1;
167 }
168 else if (!PyErr_Occurred()) {
169 PyObject *v = PyUnicode_FromString(s);
170 int err;
171 if (v == NULL)
172 return -1;
173 err = PyFile_WriteObject(v, f, Py_PRINT_RAW);
174 Py_DECREF(v);
175 return err;
176 }
177 else
178 return -1;
Guido van Rossum3165fe61992-09-25 21:59:05 +0000179}
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000180
181/* Try to get a file-descriptor from a Python object. If the object
Serhiy Storchaka95949422013-08-27 19:40:23 +0300182 is an integer, its value is returned. If not, the
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000183 object's fileno() method is called if it exists; the method must return
Serhiy Storchaka95949422013-08-27 19:40:23 +0300184 an integer, which is returned as the file descriptor value.
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000185 -1 is returned on failure.
186*/
187
Guido van Rossumda5b8f22007-06-12 23:30:11 +0000188int
189PyObject_AsFileDescriptor(PyObject *o)
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000190{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 int fd;
192 PyObject *meth;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200193 _Py_IDENTIFIER(fileno);
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000194
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000195 if (PyLong_Check(o)) {
Serhiy Storchaka78980432013-01-15 01:12:17 +0200196 fd = _PyLong_AsInt(o);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000197 }
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200198 else if ((meth = _PyObject_GetAttrId(o, &PyId_fileno)) != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000199 {
200 PyObject *fno = PyEval_CallObject(meth, NULL);
201 Py_DECREF(meth);
202 if (fno == NULL)
203 return -1;
Tim Peters86821b22001-01-07 21:19:34 +0000204
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000205 if (PyLong_Check(fno)) {
Serhiy Storchaka78980432013-01-15 01:12:17 +0200206 fd = _PyLong_AsInt(fno);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000207 Py_DECREF(fno);
208 }
209 else {
210 PyErr_SetString(PyExc_TypeError,
211 "fileno() returned a non-integer");
212 Py_DECREF(fno);
213 return -1;
214 }
215 }
216 else {
217 PyErr_SetString(PyExc_TypeError,
218 "argument must be an int, or have a fileno() method.");
219 return -1;
220 }
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000221
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 if (fd == -1 && PyErr_Occurred())
223 return -1;
224 if (fd < 0) {
225 PyErr_Format(PyExc_ValueError,
226 "file descriptor cannot be a negative integer (%i)",
227 fd);
228 return -1;
229 }
230 return fd;
Andrew M. Kuchling06051ed2000-07-13 23:56:54 +0000231}
Jack Jansen7b8c7542002-04-14 20:12:41 +0000232
Jack Jansen7b8c7542002-04-14 20:12:41 +0000233/*
234** Py_UniversalNewlineFgets is an fgets variation that understands
235** all of \r, \n and \r\n conventions.
236** The stream should be opened in binary mode.
237** If fobj is NULL the routine always does newline conversion, and
238** it may peek one char ahead to gobble the second char in \r\n.
239** If fobj is non-NULL it must be a PyFileObject. In this case there
240** is no readahead but in stead a flag is used to skip a following
241** \n on the next read. Also, if the file is open in binary mode
242** the whole conversion is skipped. Finally, the routine keeps track of
243** the different types of newlines seen.
244** Note that we need no error handling: fgets() treats error and eof
245** identically.
246*/
247char *
248Py_UniversalNewlineFgets(char *buf, int n, FILE *stream, PyObject *fobj)
249{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 char *p = buf;
251 int c;
252 int newlinetypes = 0;
253 int skipnextlf = 0;
Tim Peters058b1412002-04-21 07:29:14 +0000254
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 if (fobj) {
256 errno = ENXIO; /* What can you do... */
257 return NULL;
258 }
259 FLOCKFILE(stream);
260 c = 'x'; /* Shut up gcc warning */
261 while (--n > 0 && (c = GETC(stream)) != EOF ) {
262 if (skipnextlf ) {
263 skipnextlf = 0;
264 if (c == '\n') {
265 /* Seeing a \n here with skipnextlf true
266 ** means we saw a \r before.
267 */
268 newlinetypes |= NEWLINE_CRLF;
269 c = GETC(stream);
270 if (c == EOF) break;
271 } else {
272 /*
273 ** Note that c == EOF also brings us here,
274 ** so we're okay if the last char in the file
275 ** is a CR.
276 */
277 newlinetypes |= NEWLINE_CR;
278 }
279 }
280 if (c == '\r') {
281 /* A \r is translated into a \n, and we skip
282 ** an adjacent \n, if any. We don't set the
283 ** newlinetypes flag until we've seen the next char.
284 */
285 skipnextlf = 1;
286 c = '\n';
287 } else if ( c == '\n') {
288 newlinetypes |= NEWLINE_LF;
289 }
290 *p++ = c;
291 if (c == '\n') break;
292 }
Brett Cannonb94767f2011-02-22 20:15:44 +0000293 /* if ( c == EOF && skipnextlf )
294 newlinetypes |= NEWLINE_CR; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 FUNLOCKFILE(stream);
296 *p = '\0';
297 if ( skipnextlf ) {
298 /* If we have no file object we cannot save the
299 ** skipnextlf flag. We have to readahead, which
300 ** will cause a pause if we're reading from an
301 ** interactive stream, but that is very unlikely
302 ** unless we're doing something silly like
303 ** exec(open("/dev/tty").read()).
304 */
305 c = GETC(stream);
306 if ( c != '\n' )
307 ungetc(c, stream);
308 }
309 if (p == buf)
310 return NULL;
311 return buf;
Jack Jansen7b8c7542002-04-14 20:12:41 +0000312}
313
Christian Heimesaf935e32007-11-12 16:05:45 +0000314/* **************************** std printer ****************************
315 * The stdprinter is used during the boot strapping phase as a preliminary
316 * file like object for sys.stderr.
317 */
Guido van Rossum826d8972007-10-30 18:34:07 +0000318
319typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000320 PyObject_HEAD
321 int fd;
Guido van Rossum826d8972007-10-30 18:34:07 +0000322} PyStdPrinter_Object;
323
324static PyObject *
325stdprinter_new(PyTypeObject *type, PyObject *args, PyObject *kews)
326{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327 PyStdPrinter_Object *self;
Guido van Rossum826d8972007-10-30 18:34:07 +0000328
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 assert(type != NULL && type->tp_alloc != NULL);
Guido van Rossum826d8972007-10-30 18:34:07 +0000330
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 self = (PyStdPrinter_Object *) type->tp_alloc(type, 0);
332 if (self != NULL) {
333 self->fd = -1;
334 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000335
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 return (PyObject *) self;
Guido van Rossum826d8972007-10-30 18:34:07 +0000337}
338
Christian Heimesaf935e32007-11-12 16:05:45 +0000339static int
Victor Stinnerdc555402011-01-04 13:15:39 +0000340stdprinter_init(PyObject *self, PyObject *args, PyObject *kwds)
Christian Heimesaf935e32007-11-12 16:05:45 +0000341{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000342 PyErr_SetString(PyExc_TypeError,
343 "cannot create 'stderrprinter' instances");
344 return -1;
Christian Heimesaf935e32007-11-12 16:05:45 +0000345}
346
Guido van Rossum826d8972007-10-30 18:34:07 +0000347PyObject *
348PyFile_NewStdPrinter(int fd)
349{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000350 PyStdPrinter_Object *self;
Guido van Rossum826d8972007-10-30 18:34:07 +0000351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 if (fd != fileno(stdout) && fd != fileno(stderr)) {
353 /* not enough infrastructure for PyErr_BadInternalCall() */
354 return NULL;
355 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 self = PyObject_New(PyStdPrinter_Object,
358 &PyStdPrinter_Type);
359 if (self != NULL) {
360 self->fd = fd;
361 }
362 return (PyObject*)self;
Guido van Rossum826d8972007-10-30 18:34:07 +0000363}
364
Martin v. Löwisff649b42008-06-13 07:24:48 +0000365static PyObject *
Guido van Rossum826d8972007-10-30 18:34:07 +0000366stdprinter_write(PyStdPrinter_Object *self, PyObject *args)
367{
Serhiy Storchakaa59018c2015-09-30 15:46:53 +0300368 PyObject *unicode;
369 PyObject *bytes = NULL;
Victor Stinner454bd3a2015-03-24 13:40:29 +0100370 char *str;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 Py_ssize_t n;
Victor Stinner89719e12015-09-30 15:01:34 +0200372 int err;
Guido van Rossum826d8972007-10-30 18:34:07 +0000373
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 if (self->fd < 0) {
375 /* fd might be invalid on Windows
376 * I can't raise an exception here. It may lead to an
377 * unlimited recursion in the case stderr is invalid.
378 */
379 Py_RETURN_NONE;
380 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000381
Serhiy Storchakaa59018c2015-09-30 15:46:53 +0300382 if (!PyArg_ParseTuple(args, "U", &unicode))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 return NULL;
Guido van Rossum826d8972007-10-30 18:34:07 +0000384
Serhiy Storchakaa59018c2015-09-30 15:46:53 +0300385 /* encode Unicode to UTF-8 */
386 str = PyUnicode_AsUTF8AndSize(unicode, &n);
387 if (str == NULL) {
388 PyErr_Clear();
389 bytes = _PyUnicode_AsUTF8String(unicode, "backslashreplace");
390 if (bytes == NULL)
391 return NULL;
392 if (PyBytes_AsStringAndSize(bytes, &str, &n) < 0) {
393 Py_DECREF(bytes);
394 return NULL;
395 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000396 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000397
Serhiy Storchaka008fc772015-09-30 15:50:32 +0300398 n = _Py_write(self->fd, str, n);
Victor Stinner89719e12015-09-30 15:01:34 +0200399 /* save errno, it can be modified indirectly by Py_XDECREF() */
400 err = errno;
Victor Stinner89719e12015-09-30 15:01:34 +0200401
Serhiy Storchakaa59018c2015-09-30 15:46:53 +0300402 Py_XDECREF(bytes);
Guido van Rossum826d8972007-10-30 18:34:07 +0000403
Victor Stinner66aab0c2015-03-19 22:53:20 +0100404 if (n == -1) {
Victor Stinnerae86da92015-09-30 15:03:31 +0200405 if (err == EAGAIN) {
Victor Stinner66aab0c2015-03-19 22:53:20 +0100406 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000407 Py_RETURN_NONE;
Victor Stinner66aab0c2015-03-19 22:53:20 +0100408 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 return NULL;
410 }
Guido van Rossum826d8972007-10-30 18:34:07 +0000411
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 return PyLong_FromSsize_t(n);
Christian Heimesaf935e32007-11-12 16:05:45 +0000413}
414
415static PyObject *
416stdprinter_fileno(PyStdPrinter_Object *self)
417{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000418 return PyLong_FromLong((long) self->fd);
Christian Heimesaf935e32007-11-12 16:05:45 +0000419}
420
421static PyObject *
422stdprinter_repr(PyStdPrinter_Object *self)
423{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 return PyUnicode_FromFormat("<stdprinter(fd=%d) object at 0x%x>",
425 self->fd, self);
Christian Heimesaf935e32007-11-12 16:05:45 +0000426}
427
428static PyObject *
429stdprinter_noop(PyStdPrinter_Object *self)
430{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000431 Py_RETURN_NONE;
Christian Heimesaf935e32007-11-12 16:05:45 +0000432}
433
434static PyObject *
435stdprinter_isatty(PyStdPrinter_Object *self)
436{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000437 long res;
438 if (self->fd < 0) {
439 Py_RETURN_FALSE;
440 }
Christian Heimesaf935e32007-11-12 16:05:45 +0000441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 Py_BEGIN_ALLOW_THREADS
443 res = isatty(self->fd);
444 Py_END_ALLOW_THREADS
Christian Heimesaf935e32007-11-12 16:05:45 +0000445
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 return PyBool_FromLong(res);
Guido van Rossum826d8972007-10-30 18:34:07 +0000447}
448
449static PyMethodDef stdprinter_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 {"close", (PyCFunction)stdprinter_noop, METH_NOARGS, ""},
451 {"flush", (PyCFunction)stdprinter_noop, METH_NOARGS, ""},
452 {"fileno", (PyCFunction)stdprinter_fileno, METH_NOARGS, ""},
453 {"isatty", (PyCFunction)stdprinter_isatty, METH_NOARGS, ""},
454 {"write", (PyCFunction)stdprinter_write, METH_VARARGS, ""},
455 {NULL, NULL} /*sentinel */
Christian Heimesaf935e32007-11-12 16:05:45 +0000456};
457
458static PyObject *
459get_closed(PyStdPrinter_Object *self, void *closure)
460{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000461 Py_INCREF(Py_False);
462 return Py_False;
Christian Heimesaf935e32007-11-12 16:05:45 +0000463}
464
465static PyObject *
466get_mode(PyStdPrinter_Object *self, void *closure)
467{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000468 return PyUnicode_FromString("w");
Christian Heimesaf935e32007-11-12 16:05:45 +0000469}
470
471static PyObject *
472get_encoding(PyStdPrinter_Object *self, void *closure)
473{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 Py_RETURN_NONE;
Christian Heimesaf935e32007-11-12 16:05:45 +0000475}
476
477static PyGetSetDef stdprinter_getsetlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000478 {"closed", (getter)get_closed, NULL, "True if the file is closed"},
479 {"encoding", (getter)get_encoding, NULL, "Encoding of the file"},
480 {"mode", (getter)get_mode, NULL, "String giving the file mode"},
481 {0},
Guido van Rossum826d8972007-10-30 18:34:07 +0000482};
483
484PyTypeObject PyStdPrinter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 PyVarObject_HEAD_INIT(&PyType_Type, 0)
486 "stderrprinter", /* tp_name */
487 sizeof(PyStdPrinter_Object), /* tp_basicsize */
488 0, /* tp_itemsize */
489 /* methods */
490 0, /* tp_dealloc */
491 0, /* tp_print */
492 0, /* tp_getattr */
493 0, /* tp_setattr */
494 0, /* tp_reserved */
495 (reprfunc)stdprinter_repr, /* tp_repr */
496 0, /* tp_as_number */
497 0, /* tp_as_sequence */
498 0, /* tp_as_mapping */
499 0, /* tp_hash */
500 0, /* tp_call */
501 0, /* tp_str */
502 PyObject_GenericGetAttr, /* tp_getattro */
503 0, /* tp_setattro */
504 0, /* tp_as_buffer */
505 Py_TPFLAGS_DEFAULT, /* tp_flags */
506 0, /* tp_doc */
507 0, /* tp_traverse */
508 0, /* tp_clear */
509 0, /* tp_richcompare */
510 0, /* tp_weaklistoffset */
511 0, /* tp_iter */
512 0, /* tp_iternext */
513 stdprinter_methods, /* tp_methods */
514 0, /* tp_members */
515 stdprinter_getsetlist, /* tp_getset */
516 0, /* tp_base */
517 0, /* tp_dict */
518 0, /* tp_descr_get */
519 0, /* tp_descr_set */
520 0, /* tp_dictoffset */
Victor Stinnerdc555402011-01-04 13:15:39 +0000521 stdprinter_init, /* tp_init */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 PyType_GenericAlloc, /* tp_alloc */
523 stdprinter_new, /* tp_new */
524 PyObject_Del, /* tp_free */
Guido van Rossum826d8972007-10-30 18:34:07 +0000525};
526
527
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000528#ifdef __cplusplus
529}
530#endif