Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1 | |
| 2 | #include "Python.h" |
| 3 | #include "import.h" |
| 4 | #include "cStringIO.h" |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 5 | #include "structmember.h" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6 | |
| 7 | PyDoc_STRVAR(cStringIO_module_documentation, |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 8 | "A simple fast partial StringIO replacement.\n" |
| 9 | "\n" |
| 10 | "This module provides a simple useful replacement for\n" |
| 11 | "the StringIO module that is written in C. It does not provide the\n" |
Fred Drake | aef1000 | 2000-06-19 13:17:41 +0000 | [diff] [blame] | 12 | "full generality of StringIO, but it provides enough for most\n" |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 13 | "applications and is especially useful in conjunction with the\n" |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 14 | "pickle module.\n" |
| 15 | "\n" |
| 16 | "Usage:\n" |
| 17 | "\n" |
| 18 | " from cStringIO import StringIO\n" |
| 19 | "\n" |
| 20 | " an_output_stream=StringIO()\n" |
| 21 | " an_output_stream.write(some_stuff)\n" |
| 22 | " ...\n" |
Jeremy Hylton | b189b07 | 2002-03-08 17:17:33 +0000 | [diff] [blame] | 23 | " value=an_output_stream.getvalue()\n" |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 24 | "\n" |
| 25 | " an_input_stream=StringIO(a_string)\n" |
| 26 | " spam=an_input_stream.readline()\n" |
| 27 | " spam=an_input_stream.read(5)\n" |
Guido van Rossum | 7d9b413 | 1998-11-25 16:17:32 +0000 | [diff] [blame] | 28 | " an_input_stream.seek(0) # OK, start over\n" |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 29 | " spam=an_input_stream.read() # and read it all\n" |
| 30 | " \n" |
| 31 | "If someone else wants to provide a more complete implementation,\n" |
| 32 | "go for it. :-) \n" |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 33 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 34 | "cStringIO.c,v 1.29 1999/06/15 14:10:27 jim Exp\n"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 35 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 36 | /* Declaration for file-like objects that manage data as strings |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 37 | |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 38 | The IOobject type should be though of as a common base type for |
| 39 | Iobjects, which provide input (read-only) StringIO objects and |
| 40 | Oobjects, which provide read-write objects. Most of the methods |
| 41 | depend only on common data. |
| 42 | */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 43 | |
| 44 | typedef struct { |
| 45 | PyObject_HEAD |
| 46 | char *buf; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 47 | Py_ssize_t pos, string_size; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 48 | } IOobject; |
| 49 | |
| 50 | #define IOOOBJECT(O) ((IOobject*)(O)) |
| 51 | |
Skip Montanaro | e138828 | 2003-08-11 13:15:11 +0000 | [diff] [blame] | 52 | /* Declarations for objects of type StringO */ |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 53 | |
| 54 | typedef struct { /* Subtype of IOobject */ |
| 55 | PyObject_HEAD |
| 56 | char *buf; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 57 | Py_ssize_t pos, string_size; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 58 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 59 | Py_ssize_t buf_size; |
| 60 | int softspace; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 61 | } Oobject; |
| 62 | |
| 63 | /* Declarations for objects of type StringI */ |
| 64 | |
| 65 | typedef struct { /* Subtype of IOobject */ |
| 66 | PyObject_HEAD |
| 67 | char *buf; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 68 | Py_ssize_t pos, string_size; |
Marc-André Lemburg | e47df7a | 2001-09-24 17:34:52 +0000 | [diff] [blame] | 69 | /* We store a reference to the object here in order to keep |
| 70 | the buffer alive during the lifetime of the Iobject. */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 71 | PyObject *pbuf; |
| 72 | } Iobject; |
| 73 | |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 74 | /* IOobject (common) methods */ |
| 75 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 76 | PyDoc_STRVAR(IO_flush__doc__, "flush(): does nothing."); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 77 | |
| 78 | static int |
| 79 | IO__opencheck(IOobject *self) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 80 | if (!self->buf) { |
| 81 | PyErr_SetString(PyExc_ValueError, |
| 82 | "I/O operation on closed file"); |
| 83 | return 0; |
| 84 | } |
| 85 | return 1; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static PyObject * |
Raymond Hettinger | 5475f23 | 2003-08-08 12:20:03 +0000 | [diff] [blame] | 89 | IO_get_closed(IOobject *self, void *closure) |
| 90 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 91 | PyObject *result = Py_False; |
Raymond Hettinger | 5475f23 | 2003-08-08 12:20:03 +0000 | [diff] [blame] | 92 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 93 | if (self->buf == NULL) |
| 94 | result = Py_True; |
| 95 | Py_INCREF(result); |
| 96 | return result; |
Raymond Hettinger | 5475f23 | 2003-08-08 12:20:03 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | static PyGetSetDef file_getsetlist[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 100 | {"closed", (getter)IO_get_closed, NULL, "True if the file is closed"}, |
| 101 | {0}, |
Raymond Hettinger | 5475f23 | 2003-08-08 12:20:03 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 105 | IO_flush(IOobject *self, PyObject *unused) { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 106 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 107 | if (!IO__opencheck(self)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 108 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 109 | Py_INCREF(Py_None); |
| 110 | return Py_None; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 113 | PyDoc_STRVAR(IO_getval__doc__, |
| 114 | "getvalue([use_pos]) -- Get the string value." |
| 115 | "\n" |
| 116 | "If use_pos is specified and is a true value, then the string returned\n" |
| 117 | "will include only the text up to the current file position.\n"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 118 | |
| 119 | static PyObject * |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 120 | IO_cgetval(PyObject *self) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 121 | if (!IO__opencheck(IOOOBJECT(self))) return NULL; |
| 122 | assert(IOOOBJECT(self)->pos >= 0); |
| 123 | return PyString_FromStringAndSize(((IOobject*)self)->buf, |
| 124 | ((IOobject*)self)->pos); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 127 | static PyObject * |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 128 | IO_getval(IOobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 129 | PyObject *use_pos=Py_None; |
Antoine Pitrou | c5bef75 | 2012-08-15 23:16:51 +0200 | [diff] [blame] | 130 | int b; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 131 | Py_ssize_t s; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 132 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 133 | if (!IO__opencheck(self)) return NULL; |
| 134 | if (!PyArg_UnpackTuple(args,"getval", 0, 1,&use_pos)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 135 | |
Antoine Pitrou | c5bef75 | 2012-08-15 23:16:51 +0200 | [diff] [blame] | 136 | b = PyObject_IsTrue(use_pos); |
| 137 | if (b < 0) |
| 138 | return NULL; |
| 139 | if (b) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 140 | s=self->pos; |
| 141 | if (s > self->string_size) s=self->string_size; |
| 142 | } |
| 143 | else |
| 144 | s=self->string_size; |
| 145 | assert(self->pos >= 0); |
| 146 | return PyString_FromStringAndSize(self->buf, s); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 149 | PyDoc_STRVAR(IO_isatty__doc__, "isatty(): always returns 0"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 150 | |
| 151 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 152 | IO_isatty(IOobject *self, PyObject *unused) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 153 | if (!IO__opencheck(self)) return NULL; |
| 154 | Py_INCREF(Py_False); |
| 155 | return Py_False; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 158 | PyDoc_STRVAR(IO_read__doc__, |
| 159 | "read([s]) -- Read s characters, or the rest of the string"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 160 | |
| 161 | static int |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 162 | IO_cread(PyObject *self, char **output, Py_ssize_t n) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 163 | Py_ssize_t l; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 164 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 165 | if (!IO__opencheck(IOOOBJECT(self))) return -1; |
| 166 | assert(IOOOBJECT(self)->pos >= 0); |
| 167 | assert(IOOOBJECT(self)->string_size >= 0); |
| 168 | l = ((IOobject*)self)->string_size - ((IOobject*)self)->pos; |
| 169 | if (n < 0 || n > l) { |
| 170 | n = l; |
| 171 | if (n < 0) n=0; |
| 172 | } |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 173 | if (n > INT_MAX) { |
| 174 | PyErr_SetString(PyExc_OverflowError, |
| 175 | "length too large"); |
| 176 | return -1; |
| 177 | } |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 178 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 179 | *output=((IOobject*)self)->buf + ((IOobject*)self)->pos; |
| 180 | ((IOobject*)self)->pos += n; |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 181 | return (int)n; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | static PyObject * |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 185 | IO_read(IOobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 186 | Py_ssize_t n = -1; |
| 187 | char *output = NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 188 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 189 | if (!PyArg_ParseTuple(args, "|n:read", &n)) return NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 190 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 191 | if ( (n=IO_cread((PyObject*)self,&output,n)) < 0) return NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 192 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 193 | return PyString_FromStringAndSize(output, n); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 196 | PyDoc_STRVAR(IO_readline__doc__, "readline() -- Read one line"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 197 | |
| 198 | static int |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 199 | IO_creadline(PyObject *self, char **output) { |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 200 | char *n, *start, *end; |
| 201 | Py_ssize_t len; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 202 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 203 | if (!IO__opencheck(IOOOBJECT(self))) return -1; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 204 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 205 | n = start = ((IOobject*)self)->buf + ((IOobject*)self)->pos; |
| 206 | end = ((IOobject*)self)->buf + ((IOobject*)self)->string_size; |
| 207 | while (n < end && *n != '\n') |
| 208 | n++; |
Gregory P. Smith | 9d53457 | 2008-06-11 07:41:16 +0000 | [diff] [blame] | 209 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 210 | if (n < end) n++; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 211 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 212 | len = n - start; |
| 213 | if (len > INT_MAX) { |
| 214 | PyErr_SetString(PyExc_OverflowError, |
| 215 | "length too large"); |
| 216 | return -1; |
| 217 | } |
Gregory P. Smith | 9d53457 | 2008-06-11 07:41:16 +0000 | [diff] [blame] | 218 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 219 | *output=start; |
| 220 | |
| 221 | assert(IOOOBJECT(self)->pos <= PY_SSIZE_T_MAX - len); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 222 | assert(IOOOBJECT(self)->pos >= 0); |
| 223 | assert(IOOOBJECT(self)->string_size >= 0); |
Gregory P. Smith | 9d53457 | 2008-06-11 07:41:16 +0000 | [diff] [blame] | 224 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 225 | ((IOobject*)self)->pos += len; |
| 226 | return (int)len; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | static PyObject * |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 230 | IO_readline(IOobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 231 | int n, m=-1; |
| 232 | char *output; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 233 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 234 | if (args) |
| 235 | if (!PyArg_ParseTuple(args, "|i:readline", &m)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 236 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 237 | if( (n=IO_creadline((PyObject*)self,&output)) < 0) return NULL; |
| 238 | if (m >= 0 && m < n) { |
| 239 | m = n - m; |
| 240 | n -= m; |
| 241 | self->pos -= m; |
| 242 | } |
| 243 | assert(IOOOBJECT(self)->pos >= 0); |
| 244 | return PyString_FromStringAndSize(output, n); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 247 | PyDoc_STRVAR(IO_readlines__doc__, "readlines() -- Read all lines"); |
Martin v. Löwis | c912a3a | 2000-09-19 11:06:46 +0000 | [diff] [blame] | 248 | |
| 249 | static PyObject * |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 250 | IO_readlines(IOobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 251 | int n; |
| 252 | char *output; |
| 253 | PyObject *result, *line; |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 254 | Py_ssize_t hint = 0, length = 0; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 255 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 256 | if (!PyArg_ParseTuple(args, "|n:readlines", &hint)) return NULL; |
Martin v. Löwis | c912a3a | 2000-09-19 11:06:46 +0000 | [diff] [blame] | 257 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 258 | result = PyList_New(0); |
| 259 | if (!result) |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 260 | return NULL; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 261 | |
| 262 | while (1){ |
| 263 | if ( (n = IO_creadline((PyObject*)self,&output)) < 0) |
| 264 | goto err; |
| 265 | if (n == 0) |
| 266 | break; |
| 267 | line = PyString_FromStringAndSize (output, n); |
| 268 | if (!line) |
| 269 | goto err; |
| 270 | if (PyList_Append (result, line) == -1) { |
| 271 | Py_DECREF (line); |
| 272 | goto err; |
| 273 | } |
| 274 | Py_DECREF (line); |
| 275 | length += n; |
| 276 | if (hint > 0 && length >= hint) |
| 277 | break; |
| 278 | } |
| 279 | return result; |
| 280 | err: |
| 281 | Py_DECREF(result); |
| 282 | return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 285 | PyDoc_STRVAR(IO_reset__doc__, |
| 286 | "reset() -- Reset the file position to the beginning"); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 287 | |
| 288 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 289 | IO_reset(IOobject *self, PyObject *unused) { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 290 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 291 | if (!IO__opencheck(self)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 292 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 293 | self->pos = 0; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 294 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 295 | Py_INCREF(Py_None); |
| 296 | return Py_None; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 299 | PyDoc_STRVAR(IO_tell__doc__, "tell() -- get the current position."); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 300 | |
| 301 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 302 | IO_tell(IOobject *self, PyObject *unused) { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 303 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 304 | if (!IO__opencheck(self)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 305 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 306 | assert(self->pos >= 0); |
| 307 | return PyInt_FromSsize_t(self->pos); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 310 | PyDoc_STRVAR(IO_truncate__doc__, |
| 311 | "truncate(): truncate the file at the current position."); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 312 | |
| 313 | static PyObject * |
| 314 | IO_truncate(IOobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 315 | Py_ssize_t pos = -1; |
Martin v. Löwis | cffcc8b | 2006-11-19 10:41:41 +0000 | [diff] [blame] | 316 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 317 | if (!IO__opencheck(self)) return NULL; |
| 318 | if (!PyArg_ParseTuple(args, "|n:truncate", &pos)) return NULL; |
Martin v. Löwis | cffcc8b | 2006-11-19 10:41:41 +0000 | [diff] [blame] | 319 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 320 | if (PyTuple_Size(args) == 0) { |
| 321 | /* No argument passed, truncate to current position */ |
| 322 | pos = self->pos; |
| 323 | } |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 324 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 325 | if (pos < 0) { |
| 326 | errno = EINVAL; |
| 327 | PyErr_SetFromErrno(PyExc_IOError); |
| 328 | return NULL; |
| 329 | } |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 330 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 331 | if (self->string_size > pos) self->string_size = pos; |
| 332 | self->pos = self->string_size; |
| 333 | |
| 334 | Py_INCREF(Py_None); |
| 335 | return Py_None; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 338 | static PyObject * |
| 339 | IO_iternext(Iobject *self) |
| 340 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 341 | PyObject *next; |
| 342 | next = IO_readline((IOobject *)self, NULL); |
| 343 | if (!next) |
| 344 | return NULL; |
| 345 | if (!PyString_GET_SIZE(next)) { |
| 346 | Py_DECREF(next); |
| 347 | PyErr_SetNone(PyExc_StopIteration); |
| 348 | return NULL; |
| 349 | } |
| 350 | return next; |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 353 | |
| 354 | |
| 355 | |
| 356 | /* Read-write object methods */ |
| 357 | |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 358 | PyDoc_STRVAR(IO_seek__doc__, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 359 | "seek(position) -- set the current position\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 360 | "seek(position, mode) -- mode 0: absolute; 1: relative; 2: relative to EOF"); |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 361 | |
| 362 | static PyObject * |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 363 | IO_seek(Iobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 364 | Py_ssize_t position; |
| 365 | int mode = 0; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 366 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 367 | if (!IO__opencheck(IOOOBJECT(self))) return NULL; |
| 368 | if (!PyArg_ParseTuple(args, "n|i:seek", &position, &mode)) |
| 369 | return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 370 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 371 | if (mode == 2) { |
| 372 | position += self->string_size; |
| 373 | } |
| 374 | else if (mode == 1) { |
| 375 | position += self->pos; |
| 376 | } |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 377 | |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 378 | if (position < 0) position=0; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 379 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 380 | self->pos=position; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 381 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 382 | Py_INCREF(Py_None); |
| 383 | return Py_None; |
Martin v. Löwis | c912a3a | 2000-09-19 11:06:46 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 386 | PyDoc_STRVAR(O_write__doc__, |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 387 | "write(s) -- Write a string to the file" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 388 | "\n\nNote (hack:) writing None resets the buffer"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 389 | |
| 390 | |
| 391 | static int |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 392 | O_cwrite(PyObject *self, const char *c, Py_ssize_t len) { |
| 393 | Py_ssize_t newpos; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 394 | Oobject *oself; |
| 395 | char *newbuf; |
Guido van Rossum | 55702f8 | 1997-01-06 22:57:52 +0000 | [diff] [blame] | 396 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 397 | if (!IO__opencheck(IOOOBJECT(self))) return -1; |
| 398 | oself = (Oobject *)self; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 399 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 400 | if (len > INT_MAX) { |
| 401 | PyErr_SetString(PyExc_OverflowError, |
| 402 | "length too large"); |
| 403 | return -1; |
| 404 | } |
| 405 | assert(len >= 0); |
| 406 | if (oself->pos >= PY_SSIZE_T_MAX - len) { |
| 407 | PyErr_SetString(PyExc_OverflowError, |
| 408 | "new position too large"); |
| 409 | return -1; |
| 410 | } |
| 411 | newpos = oself->pos + len; |
| 412 | if (newpos >= oself->buf_size) { |
| 413 | size_t newsize = oself->buf_size; |
| 414 | newsize *= 2; |
| 415 | if (newsize <= (size_t)newpos || newsize > PY_SSIZE_T_MAX) { |
| 416 | assert(newpos < PY_SSIZE_T_MAX - 1); |
| 417 | newsize = newpos + 1; |
Guido van Rossum | 2f09812 | 2001-12-07 20:20:28 +0000 | [diff] [blame] | 418 | } |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 419 | newbuf = (char*)realloc(oself->buf, newsize); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 420 | if (!newbuf) { |
| 421 | PyErr_SetString(PyExc_MemoryError,"out of memory"); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 422 | return -1; |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 423 | } |
| 424 | oself->buf_size = (Py_ssize_t)newsize; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 425 | oself->buf = newbuf; |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 426 | } |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 427 | |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 428 | if (oself->string_size < oself->pos) { |
| 429 | /* In case of overseek, pad with null bytes the buffer region between |
| 430 | the end of stream and the current position. |
| 431 | |
| 432 | 0 lo string_size hi |
| 433 | | |<---used--->|<----------available----------->| |
| 434 | | | <--to pad-->|<---to write---> | |
| 435 | 0 buf position |
| 436 | */ |
| 437 | memset(oself->buf + oself->string_size, '\0', |
| 438 | (oself->pos - oself->string_size) * sizeof(char)); |
| 439 | } |
| 440 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 441 | memcpy(oself->buf + oself->pos, c, len); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 442 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 443 | oself->pos = newpos; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 444 | |
| 445 | if (oself->string_size < oself->pos) { |
| 446 | oself->string_size = oself->pos; |
| 447 | } |
| 448 | |
Serhiy Storchaka | 276f1d5 | 2013-02-09 13:47:43 +0200 | [diff] [blame] | 449 | return (int)len; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | static PyObject * |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 453 | O_write(Oobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 454 | char *c; |
| 455 | int l; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 456 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 457 | if (!PyArg_ParseTuple(args, "t#:write", &c, &l)) return NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 458 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 459 | if (O_cwrite((PyObject*)self,c,l) < 0) return NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 460 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 461 | Py_INCREF(Py_None); |
| 462 | return Py_None; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 465 | PyDoc_STRVAR(O_close__doc__, "close(): explicitly release resources held."); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 466 | |
| 467 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 468 | O_close(Oobject *self, PyObject *unused) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 469 | if (self->buf != NULL) free(self->buf); |
| 470 | self->buf = NULL; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 471 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 472 | self->pos = self->string_size = self->buf_size = 0; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 473 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 474 | Py_INCREF(Py_None); |
| 475 | return Py_None; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 478 | PyDoc_STRVAR(O_writelines__doc__, |
Raymond Hettinger | 6ec0996 | 2004-03-08 18:17:31 +0000 | [diff] [blame] | 479 | "writelines(sequence_of_strings) -> None. Write the strings to the file.\n" |
| 480 | "\n" |
| 481 | "Note that newlines are not added. The sequence can be any iterable object\n" |
| 482 | "producing strings. This is equivalent to calling write() for each string."); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 483 | static PyObject * |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 484 | O_writelines(Oobject *self, PyObject *args) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 485 | PyObject *it, *s; |
| 486 | |
| 487 | it = PyObject_GetIter(args); |
| 488 | if (it == NULL) |
| 489 | return NULL; |
| 490 | while ((s = PyIter_Next(it)) != NULL) { |
| 491 | Py_ssize_t n; |
| 492 | char *c; |
| 493 | if (PyString_AsStringAndSize(s, &c, &n) == -1) { |
| 494 | Py_DECREF(it); |
| 495 | Py_DECREF(s); |
| 496 | return NULL; |
| 497 | } |
| 498 | if (O_cwrite((PyObject *)self, c, n) == -1) { |
| 499 | Py_DECREF(it); |
| 500 | Py_DECREF(s); |
| 501 | return NULL; |
| 502 | } |
| 503 | Py_DECREF(s); |
Michael W. Hudson | 10402a3 | 2005-09-22 09:19:01 +0000 | [diff] [blame] | 504 | } |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 505 | |
Michael W. Hudson | 10402a3 | 2005-09-22 09:19:01 +0000 | [diff] [blame] | 506 | Py_DECREF(it); |
| 507 | |
| 508 | /* See if PyIter_Next failed */ |
| 509 | if (PyErr_Occurred()) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 510 | return NULL; |
Michael W. Hudson | 10402a3 | 2005-09-22 09:19:01 +0000 | [diff] [blame] | 511 | |
| 512 | Py_RETURN_NONE; |
| 513 | } |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 514 | static struct PyMethodDef O_methods[] = { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 515 | /* Common methods: */ |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 516 | {"flush", (PyCFunction)IO_flush, METH_NOARGS, IO_flush__doc__}, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 517 | {"getvalue", (PyCFunction)IO_getval, METH_VARARGS, IO_getval__doc__}, |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 518 | {"isatty", (PyCFunction)IO_isatty, METH_NOARGS, IO_isatty__doc__}, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 519 | {"read", (PyCFunction)IO_read, METH_VARARGS, IO_read__doc__}, |
| 520 | {"readline", (PyCFunction)IO_readline, METH_VARARGS, IO_readline__doc__}, |
| 521 | {"readlines", (PyCFunction)IO_readlines,METH_VARARGS, IO_readlines__doc__}, |
| 522 | {"reset", (PyCFunction)IO_reset, METH_NOARGS, IO_reset__doc__}, |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 523 | {"seek", (PyCFunction)IO_seek, METH_VARARGS, IO_seek__doc__}, |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 524 | {"tell", (PyCFunction)IO_tell, METH_NOARGS, IO_tell__doc__}, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 525 | {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__}, |
| 526 | |
| 527 | /* Read-write StringIO specific methods: */ |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 528 | {"close", (PyCFunction)O_close, METH_NOARGS, O_close__doc__}, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 529 | {"write", (PyCFunction)O_write, METH_VARARGS, O_write__doc__}, |
| 530 | {"writelines", (PyCFunction)O_writelines, METH_O, O_writelines__doc__}, |
| 531 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 532 | }; |
| 533 | |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 534 | static PyMemberDef O_memberlist[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 535 | {"softspace", T_INT, offsetof(Oobject, softspace), 0, |
| 536 | "flag indicating that a space needs to be printed; used by print"}, |
| 537 | /* getattr(f, "closed") is implemented without this table */ |
| 538 | {NULL} /* Sentinel */ |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 539 | }; |
| 540 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 541 | static void |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 542 | O_dealloc(Oobject *self) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 543 | if (self->buf != NULL) |
| 544 | free(self->buf); |
| 545 | PyObject_Del(self); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 548 | PyDoc_STRVAR(Otype__doc__, "Simple type for output to strings."); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 549 | |
| 550 | static PyTypeObject Otype = { |
Martin v. Löwis | 6819210 | 2007-07-21 06:55:02 +0000 | [diff] [blame] | 551 | PyVarObject_HEAD_INIT(NULL, 0) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 552 | "cStringIO.StringO", /*tp_name*/ |
| 553 | sizeof(Oobject), /*tp_basicsize*/ |
| 554 | 0, /*tp_itemsize*/ |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 555 | /* methods */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 556 | (destructor)O_dealloc, /*tp_dealloc*/ |
| 557 | 0, /*tp_print*/ |
| 558 | 0, /*tp_getattr */ |
| 559 | 0, /*tp_setattr */ |
| 560 | 0, /*tp_compare*/ |
| 561 | 0, /*tp_repr*/ |
| 562 | 0, /*tp_as_number*/ |
| 563 | 0, /*tp_as_sequence*/ |
| 564 | 0, /*tp_as_mapping*/ |
| 565 | 0, /*tp_hash*/ |
| 566 | 0 , /*tp_call*/ |
| 567 | 0, /*tp_str*/ |
| 568 | 0, /*tp_getattro */ |
| 569 | 0, /*tp_setattro */ |
| 570 | 0, /*tp_as_buffer */ |
| 571 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 572 | Otype__doc__, /*tp_doc */ |
| 573 | 0, /*tp_traverse */ |
| 574 | 0, /*tp_clear */ |
| 575 | 0, /*tp_richcompare */ |
| 576 | 0, /*tp_weaklistoffset */ |
| 577 | PyObject_SelfIter, /*tp_iter */ |
| 578 | (iternextfunc)IO_iternext, /*tp_iternext */ |
| 579 | O_methods, /*tp_methods */ |
| 580 | O_memberlist, /*tp_members */ |
| 581 | file_getsetlist, /*tp_getset */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 582 | }; |
| 583 | |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 584 | static PyObject * |
| 585 | newOobject(int size) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 586 | Oobject *self; |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 587 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 588 | self = PyObject_New(Oobject, &Otype); |
| 589 | if (self == NULL) |
| 590 | return NULL; |
| 591 | self->pos=0; |
| 592 | self->string_size = 0; |
| 593 | self->softspace = 0; |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 594 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 595 | self->buf = (char *)malloc(size); |
| 596 | if (!self->buf) { |
| 597 | PyErr_SetString(PyExc_MemoryError,"out of memory"); |
| 598 | self->buf_size = 0; |
| 599 | Py_DECREF(self); |
| 600 | return NULL; |
| 601 | } |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 602 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 603 | self->buf_size=size; |
| 604 | return (PyObject*)self; |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Skip Montanaro | e138828 | 2003-08-11 13:15:11 +0000 | [diff] [blame] | 607 | /* End of code for StringO objects */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 608 | /* -------------------------------------------------------- */ |
| 609 | |
| 610 | static PyObject * |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 611 | I_close(Iobject *self, PyObject *unused) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 612 | Py_CLEAR(self->pbuf); |
| 613 | self->buf = NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 614 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 615 | self->pos = self->string_size = 0; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 616 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 617 | Py_INCREF(Py_None); |
| 618 | return Py_None; |
Guido van Rossum | 476e49f | 1998-12-15 21:43:15 +0000 | [diff] [blame] | 619 | } |
| 620 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 621 | static struct PyMethodDef I_methods[] = { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 622 | /* Common methods: */ |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 623 | {"flush", (PyCFunction)IO_flush, METH_NOARGS, IO_flush__doc__}, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 624 | {"getvalue", (PyCFunction)IO_getval, METH_VARARGS, IO_getval__doc__}, |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 625 | {"isatty", (PyCFunction)IO_isatty, METH_NOARGS, IO_isatty__doc__}, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 626 | {"read", (PyCFunction)IO_read, METH_VARARGS, IO_read__doc__}, |
| 627 | {"readline", (PyCFunction)IO_readline, METH_VARARGS, IO_readline__doc__}, |
| 628 | {"readlines", (PyCFunction)IO_readlines,METH_VARARGS, IO_readlines__doc__}, |
| 629 | {"reset", (PyCFunction)IO_reset, METH_NOARGS, IO_reset__doc__}, |
Fred Drake | 577acb4 | 2010-10-11 19:13:04 +0000 | [diff] [blame] | 630 | {"seek", (PyCFunction)IO_seek, METH_VARARGS, IO_seek__doc__}, |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 631 | {"tell", (PyCFunction)IO_tell, METH_NOARGS, IO_tell__doc__}, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 632 | {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__}, |
| 633 | |
| 634 | /* Read-only StringIO specific methods: */ |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 635 | {"close", (PyCFunction)I_close, METH_NOARGS, O_close__doc__}, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 636 | {NULL, NULL} |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 637 | }; |
| 638 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 639 | static void |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 640 | I_dealloc(Iobject *self) { |
Guido van Rossum | 15a4039 | 1997-09-03 00:09:26 +0000 | [diff] [blame] | 641 | Py_XDECREF(self->pbuf); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 642 | PyObject_Del(self); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Barry Warsaw | 3e8be72 | 2001-09-22 04:36:49 +0000 | [diff] [blame] | 645 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 646 | PyDoc_STRVAR(Itype__doc__, |
| 647 | "Simple type for treating strings as input file streams"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 648 | |
| 649 | static PyTypeObject Itype = { |
Martin v. Löwis | 6819210 | 2007-07-21 06:55:02 +0000 | [diff] [blame] | 650 | PyVarObject_HEAD_INIT(NULL, 0) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 651 | "cStringIO.StringI", /*tp_name*/ |
| 652 | sizeof(Iobject), /*tp_basicsize*/ |
| 653 | 0, /*tp_itemsize*/ |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 654 | /* methods */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 655 | (destructor)I_dealloc, /*tp_dealloc*/ |
| 656 | 0, /*tp_print*/ |
| 657 | 0, /* tp_getattr */ |
| 658 | 0, /*tp_setattr*/ |
| 659 | 0, /*tp_compare*/ |
| 660 | 0, /*tp_repr*/ |
| 661 | 0, /*tp_as_number*/ |
| 662 | 0, /*tp_as_sequence*/ |
| 663 | 0, /*tp_as_mapping*/ |
| 664 | 0, /*tp_hash*/ |
| 665 | 0, /*tp_call*/ |
| 666 | 0, /*tp_str*/ |
| 667 | 0, /* tp_getattro */ |
| 668 | 0, /* tp_setattro */ |
| 669 | 0, /* tp_as_buffer */ |
| 670 | Py_TPFLAGS_DEFAULT, /* tp_flags */ |
| 671 | Itype__doc__, /* tp_doc */ |
| 672 | 0, /* tp_traverse */ |
| 673 | 0, /* tp_clear */ |
| 674 | 0, /* tp_richcompare */ |
| 675 | 0, /* tp_weaklistoffset */ |
| 676 | PyObject_SelfIter, /* tp_iter */ |
| 677 | (iternextfunc)IO_iternext, /* tp_iternext */ |
| 678 | I_methods, /* tp_methods */ |
| 679 | 0, /* tp_members */ |
| 680 | file_getsetlist, /* tp_getset */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 681 | }; |
| 682 | |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 683 | static PyObject * |
| 684 | newIobject(PyObject *s) { |
| 685 | Iobject *self; |
| 686 | char *buf; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 687 | Py_ssize_t size; |
Jeremy Hylton | 127b2ef | 2000-04-12 22:04:01 +0000 | [diff] [blame] | 688 | |
Antoine Pitrou | 5a77fe9 | 2011-10-22 21:26:01 +0200 | [diff] [blame] | 689 | if (PyUnicode_Check(s)) { |
| 690 | if (PyObject_AsCharBuffer(s, (const char **)&buf, &size) != 0) |
| 691 | return NULL; |
| 692 | } |
| 693 | else if (PyObject_AsReadBuffer(s, (const void **)&buf, &size)) { |
Georg Brandl | 9616444 | 2007-08-08 13:03:41 +0000 | [diff] [blame] | 694 | PyErr_Format(PyExc_TypeError, "expected read buffer, %.200s found", |
| 695 | s->ob_type->tp_name); |
| 696 | return NULL; |
| 697 | } |
Georg Brandl | 5597e26 | 2006-10-12 09:47:12 +0000 | [diff] [blame] | 698 | |
Martin v. Löwis | 5df2e61 | 2006-03-01 23:10:49 +0000 | [diff] [blame] | 699 | self = PyObject_New(Iobject, &Itype); |
| 700 | if (!self) return NULL; |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 701 | Py_INCREF(s); |
| 702 | self->buf=buf; |
| 703 | self->string_size=size; |
| 704 | self->pbuf=s; |
| 705 | self->pos=0; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 706 | |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 707 | return (PyObject*)self; |
| 708 | } |
| 709 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 710 | /* End of code for StringI objects */ |
| 711 | /* -------------------------------------------------------- */ |
| 712 | |
| 713 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 714 | PyDoc_STRVAR(IO_StringIO__doc__, |
| 715 | "StringIO([s]) -- Return a StringIO-like stream for reading or writing"); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 716 | |
| 717 | static PyObject * |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 718 | IO_StringIO(PyObject *self, PyObject *args) { |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 719 | PyObject *s=0; |
| 720 | |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 721 | if (!PyArg_UnpackTuple(args, "StringIO", 0, 1, &s)) return NULL; |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 722 | |
| 723 | if (s) return newIobject(s); |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 724 | return newOobject(128); |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | /* List of methods defined in the module */ |
| 728 | |
| 729 | static struct PyMethodDef IO_methods[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 730 | {"StringIO", (PyCFunction)IO_StringIO, |
| 731 | METH_VARARGS, IO_StringIO__doc__}, |
| 732 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 733 | }; |
| 734 | |
| 735 | |
| 736 | /* Initialization function for the module (*must* be called initcStringIO) */ |
| 737 | |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 738 | static struct PycStringIO_CAPI CAPI = { |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 739 | IO_cread, |
| 740 | IO_creadline, |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 741 | O_cwrite, |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 742 | IO_cgetval, |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 743 | newOobject, |
| 744 | newIobject, |
| 745 | &Itype, |
| 746 | &Otype, |
| 747 | }; |
| 748 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 749 | #ifndef PyMODINIT_FUNC /* declarations for DLL import/export */ |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 750 | #define PyMODINIT_FUNC void |
Guido van Rossum | 476e49f | 1998-12-15 21:43:15 +0000 | [diff] [blame] | 751 | #endif |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 752 | PyMODINIT_FUNC |
Thomas Wouters | 58d0510 | 2000-07-24 14:43:35 +0000 | [diff] [blame] | 753 | initcStringIO(void) { |
Guido van Rossum | 9efe8ef | 1997-09-03 18:19:40 +0000 | [diff] [blame] | 754 | PyObject *m, *d, *v; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 755 | |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 756 | |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 757 | /* Create the module and add the functions */ |
| 758 | m = Py_InitModule4("cStringIO", IO_methods, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 759 | cStringIO_module_documentation, |
| 760 | (PyObject*)NULL,PYTHON_API_VERSION); |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 761 | if (m == NULL) return; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 762 | |
| 763 | /* Add some symbolic constants to the module */ |
| 764 | d = PyModule_GetDict(m); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 765 | |
Guido van Rossum | 55702f8 | 1997-01-06 22:57:52 +0000 | [diff] [blame] | 766 | /* Export C API */ |
Christian Heimes | e93237d | 2007-12-19 02:37:44 +0000 | [diff] [blame] | 767 | Py_TYPE(&Itype)=&PyType_Type; |
| 768 | Py_TYPE(&Otype)=&PyType_Type; |
Raymond Hettinger | 352f947 | 2003-04-24 15:50:11 +0000 | [diff] [blame] | 769 | if (PyType_Ready(&Otype) < 0) return; |
| 770 | if (PyType_Ready(&Itype) < 0) return; |
Larry Hastings | 402b73f | 2010-03-25 00:54:54 +0000 | [diff] [blame] | 771 | v = PyCapsule_New(&CAPI, PycStringIO_CAPSULE_NAME, NULL); |
| 772 | PyDict_SetItemString(d,"cStringIO_CAPI", v); |
Guido van Rossum | 9efe8ef | 1997-09-03 18:19:40 +0000 | [diff] [blame] | 773 | Py_XDECREF(v); |
Guido van Rossum | 154417e | 1997-04-09 17:35:33 +0000 | [diff] [blame] | 774 | |
| 775 | /* Export Types */ |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 776 | PyDict_SetItemString(d,"InputType", (PyObject*)&Itype); |
| 777 | PyDict_SetItemString(d,"OutputType", (PyObject*)&Otype); |
Guido van Rossum | 142eeb8 | 1997-08-13 03:14:41 +0000 | [diff] [blame] | 778 | |
| 779 | /* Maybe make certain warnings go away */ |
Jim Fulton | e60de4d | 2000-10-06 19:24:23 +0000 | [diff] [blame] | 780 | if (0) PycString_IMPORT; |
Guido van Rossum | 049cd90 | 1996-12-05 23:30:48 +0000 | [diff] [blame] | 781 | } |