blob: aebdf67c3576a11e7b1a41db793bfe31422bee52 [file] [log] [blame]
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001
2#include "Python.h"
3#include "import.h"
4#include "cStringIO.h"
5
6PyDoc_STRVAR(cStringIO_module_documentation,
Guido van Rossum049cd901996-12-05 23:30:48 +00007"A simple fast partial StringIO replacement.\n"
8"\n"
9"This module provides a simple useful replacement for\n"
10"the StringIO module that is written in C. It does not provide the\n"
Fred Drakeaef10002000-06-19 13:17:41 +000011"full generality of StringIO, but it provides enough for most\n"
Thomas Wouters7e474022000-07-16 12:04:32 +000012"applications and is especially useful in conjunction with the\n"
Guido van Rossum049cd901996-12-05 23:30:48 +000013"pickle module.\n"
14"\n"
15"Usage:\n"
16"\n"
17" from cStringIO import StringIO\n"
18"\n"
19" an_output_stream=StringIO()\n"
20" an_output_stream.write(some_stuff)\n"
21" ...\n"
Jeremy Hyltonb189b072002-03-08 17:17:33 +000022" value=an_output_stream.getvalue()\n"
Guido van Rossum049cd901996-12-05 23:30:48 +000023"\n"
24" an_input_stream=StringIO(a_string)\n"
25" spam=an_input_stream.readline()\n"
26" spam=an_input_stream.read(5)\n"
Guido van Rossum7d9b4131998-11-25 16:17:32 +000027" an_input_stream.seek(0) # OK, start over\n"
Guido van Rossum049cd901996-12-05 23:30:48 +000028" spam=an_input_stream.read() # and read it all\n"
29" \n"
30"If someone else wants to provide a more complete implementation,\n"
31"go for it. :-) \n"
Guido van Rossum142eeb81997-08-13 03:14:41 +000032"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000033"cStringIO.c,v 1.29 1999/06/15 14:10:27 jim Exp\n");
Guido van Rossum049cd901996-12-05 23:30:48 +000034
Jim Fultone60de4d2000-10-06 19:24:23 +000035#define UNLESS(E) if (!(E))
Guido van Rossum049cd901996-12-05 23:30:48 +000036
Guido van Rossum049cd901996-12-05 23:30:48 +000037
Jim Fultone60de4d2000-10-06 19:24:23 +000038/* Declaration for file-like objects that manage data as strings
Guido van Rossum049cd901996-12-05 23:30:48 +000039
Jim Fultone60de4d2000-10-06 19:24:23 +000040 The IOobject type should be though of as a common base type for
41 Iobjects, which provide input (read-only) StringIO objects and
42 Oobjects, which provide read-write objects. Most of the methods
43 depend only on common data.
44*/
Guido van Rossum049cd901996-12-05 23:30:48 +000045
46typedef struct {
47 PyObject_HEAD
48 char *buf;
Guido van Rossum476e49f1998-12-15 21:43:15 +000049 int pos, string_size;
Jim Fultone60de4d2000-10-06 19:24:23 +000050} IOobject;
51
52#define IOOOBJECT(O) ((IOobject*)(O))
53
54/* Declarations for objects of type StringO */
55
56typedef struct { /* Subtype of IOobject */
57 PyObject_HEAD
58 char *buf;
59 int pos, string_size;
60
61 int buf_size, softspace;
62} Oobject;
63
64/* Declarations for objects of type StringI */
65
66typedef struct { /* Subtype of IOobject */
67 PyObject_HEAD
68 char *buf;
69 int pos, string_size;
Marc-André Lemburge47df7a2001-09-24 17:34:52 +000070 /* We store a reference to the object here in order to keep
71 the buffer alive during the lifetime of the Iobject. */
Guido van Rossum049cd901996-12-05 23:30:48 +000072 PyObject *pbuf;
73} Iobject;
74
Jim Fultone60de4d2000-10-06 19:24:23 +000075/* IOobject (common) methods */
76
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000077PyDoc_STRVAR(IO_flush__doc__, "flush(): does nothing.");
Jim Fultone60de4d2000-10-06 19:24:23 +000078
79static int
80IO__opencheck(IOobject *self) {
81 UNLESS (self->buf) {
82 PyErr_SetString(PyExc_ValueError,
83 "I/O operation on closed file");
84 return 0;
85 }
86 return 1;
87}
88
89static PyObject *
90IO_flush(IOobject *self, PyObject *args) {
91
92 UNLESS (IO__opencheck(self)) return NULL;
93 UNLESS (PyArg_ParseTuple(args, ":flush")) return NULL;
94
95 Py_INCREF(Py_None);
96 return Py_None;
97}
98
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000099PyDoc_STRVAR(IO_getval__doc__,
100"getvalue([use_pos]) -- Get the string value."
101"\n"
102"If use_pos is specified and is a true value, then the string returned\n"
103"will include only the text up to the current file position.\n");
Guido van Rossum049cd901996-12-05 23:30:48 +0000104
105static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000106IO_cgetval(PyObject *self) {
107 UNLESS (IO__opencheck(IOOOBJECT(self))) return NULL;
108 return PyString_FromStringAndSize(((IOobject*)self)->buf,
109 ((IOobject*)self)->pos);
Guido van Rossum049cd901996-12-05 23:30:48 +0000110}
111
Guido van Rossum049cd901996-12-05 23:30:48 +0000112static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000113IO_getval(IOobject *self, PyObject *args) {
114 PyObject *use_pos=Py_None;
115 int s;
116
117 UNLESS (IO__opencheck(self)) return NULL;
118 UNLESS (PyArg_ParseTuple(args,"|O:getval",&use_pos)) return NULL;
119
120 if (PyObject_IsTrue(use_pos)) {
121 s=self->pos;
122 if (s > self->string_size) s=self->string_size;
123 }
124 else
125 s=self->string_size;
126 return PyString_FromStringAndSize(self->buf, s);
Guido van Rossum049cd901996-12-05 23:30:48 +0000127}
128
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000129PyDoc_STRVAR(IO_isatty__doc__, "isatty(): always returns 0");
Guido van Rossum049cd901996-12-05 23:30:48 +0000130
131static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000132IO_isatty(IOobject *self, PyObject *args) {
Guido van Rossum049cd901996-12-05 23:30:48 +0000133
Jim Fultone60de4d2000-10-06 19:24:23 +0000134 UNLESS (PyArg_ParseTuple(args, ":isatty")) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000135
Guido van Rossum674deb22002-09-01 15:06:28 +0000136 Py_INCREF(Py_False);
137 return Py_False;
Guido van Rossum049cd901996-12-05 23:30:48 +0000138}
139
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000140PyDoc_STRVAR(IO_read__doc__,
141"read([s]) -- Read s characters, or the rest of the string");
Guido van Rossum049cd901996-12-05 23:30:48 +0000142
143static int
Jim Fultone60de4d2000-10-06 19:24:23 +0000144IO_cread(PyObject *self, char **output, int n) {
145 int l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000146
Jim Fultone60de4d2000-10-06 19:24:23 +0000147 UNLESS (IO__opencheck(IOOOBJECT(self))) return -1;
148 l = ((IOobject*)self)->string_size - ((IOobject*)self)->pos;
149 if (n < 0 || n > l) {
150 n = l;
151 if (n < 0) n=0;
152 }
Guido van Rossum049cd901996-12-05 23:30:48 +0000153
Jim Fultone60de4d2000-10-06 19:24:23 +0000154 *output=((IOobject*)self)->buf + ((IOobject*)self)->pos;
155 ((IOobject*)self)->pos += n;
156 return n;
Guido van Rossum049cd901996-12-05 23:30:48 +0000157}
158
159static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000160IO_read(IOobject *self, PyObject *args) {
161 int n = -1;
162 char *output;
Guido van Rossum049cd901996-12-05 23:30:48 +0000163
Jim Fultone60de4d2000-10-06 19:24:23 +0000164 UNLESS (PyArg_ParseTuple(args, "|i:read", &n)) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000165
Jim Fultone60de4d2000-10-06 19:24:23 +0000166 if ( (n=IO_cread((PyObject*)self,&output,n)) < 0) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000167
Jim Fultone60de4d2000-10-06 19:24:23 +0000168 return PyString_FromStringAndSize(output, n);
Guido van Rossum049cd901996-12-05 23:30:48 +0000169}
170
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000171PyDoc_STRVAR(IO_readline__doc__, "readline() -- Read one line");
Guido van Rossum049cd901996-12-05 23:30:48 +0000172
173static int
Jim Fultone60de4d2000-10-06 19:24:23 +0000174IO_creadline(PyObject *self, char **output) {
175 char *n, *s;
176 int l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000177
Jim Fultone60de4d2000-10-06 19:24:23 +0000178 UNLESS (IO__opencheck(IOOOBJECT(self))) return -1;
179
180 for (n = ((IOobject*)self)->buf + ((IOobject*)self)->pos,
181 s = ((IOobject*)self)->buf + ((IOobject*)self)->string_size;
182 n < s && *n != '\n'; n++);
183 if (n < s) n++;
184
185 *output=((IOobject*)self)->buf + ((IOobject*)self)->pos;
186 l = n - ((IOobject*)self)->buf - ((IOobject*)self)->pos;
187 ((IOobject*)self)->pos += l;
188 return l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000189}
190
191static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000192IO_readline(IOobject *self, PyObject *args) {
193 int n, m=-1;
194 char *output;
Guido van Rossum049cd901996-12-05 23:30:48 +0000195
Jim Fultone60de4d2000-10-06 19:24:23 +0000196 UNLESS (PyArg_ParseTuple(args, "|i:readline", &m)) return NULL;
197
198 if( (n=IO_creadline((PyObject*)self,&output)) < 0) return NULL;
199 if (m >= 0 && m < n) {
200 m = n - m;
201 n -= m;
202 self->pos -= m;
203 }
204 return PyString_FromStringAndSize(output, n);
Guido van Rossum049cd901996-12-05 23:30:48 +0000205}
206
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000207PyDoc_STRVAR(IO_readlines__doc__, "readlines() -- Read all lines");
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000208
209static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000210IO_readlines(IOobject *self, PyObject *args) {
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000211 int n;
212 char *output;
213 PyObject *result, *line;
214 int hint = 0, length = 0;
215
Jim Fultone60de4d2000-10-06 19:24:23 +0000216 UNLESS (PyArg_ParseTuple(args, "|i:readlines", &hint)) return NULL;
217
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000218 result = PyList_New(0);
219 if (!result)
220 return NULL;
221
Jim Fultone60de4d2000-10-06 19:24:23 +0000222 while (1){
223 if ( (n = IO_creadline((PyObject*)self,&output)) < 0)
224 goto err;
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000225 if (n == 0)
226 break;
227 line = PyString_FromStringAndSize (output, n);
Jim Fultone60de4d2000-10-06 19:24:23 +0000228 if (!line)
229 goto err;
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000230 PyList_Append (result, line);
231 Py_DECREF (line);
232 length += n;
233 if (hint > 0 && length >= hint)
234 break;
235 }
236 return result;
Jim Fultone60de4d2000-10-06 19:24:23 +0000237 err:
238 Py_DECREF(result);
239 return NULL;
240}
241
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000242PyDoc_STRVAR(IO_reset__doc__,
243"reset() -- Reset the file position to the beginning");
Jim Fultone60de4d2000-10-06 19:24:23 +0000244
245static PyObject *
246IO_reset(IOobject *self, PyObject *args) {
247
248 UNLESS (IO__opencheck(self)) return NULL;
249 UNLESS (PyArg_ParseTuple(args, ":reset")) return NULL;
250
251 self->pos = 0;
252
253 Py_INCREF(Py_None);
254 return Py_None;
255}
256
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000257PyDoc_STRVAR(IO_tell__doc__, "tell() -- get the current position.");
Jim Fultone60de4d2000-10-06 19:24:23 +0000258
259static PyObject *
260IO_tell(IOobject *self, PyObject *args) {
261
262 UNLESS (IO__opencheck(self)) return NULL;
263 UNLESS (PyArg_ParseTuple(args, ":tell")) return NULL;
264
265 return PyInt_FromLong(self->pos);
266}
267
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000268PyDoc_STRVAR(IO_truncate__doc__,
269"truncate(): truncate the file at the current position.");
Jim Fultone60de4d2000-10-06 19:24:23 +0000270
271static PyObject *
272IO_truncate(IOobject *self, PyObject *args) {
273 int pos = -1;
274
275 UNLESS (IO__opencheck(self)) return NULL;
276 UNLESS (PyArg_ParseTuple(args, "|i:truncate", &pos)) return NULL;
277 if (pos < 0) pos = self->pos;
278
279 if (self->string_size > pos) self->string_size = pos;
280
281 Py_INCREF(Py_None);
282 return Py_None;
283}
284
285
286
287
288/* Read-write object methods */
289
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000290PyDoc_STRVAR(O_seek__doc__,
Jim Fultone60de4d2000-10-06 19:24:23 +0000291"seek(position) -- set the current position\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000292"seek(position, mode) -- mode 0: absolute; 1: relative; 2: relative to EOF");
Jim Fultone60de4d2000-10-06 19:24:23 +0000293
294static PyObject *
295O_seek(Oobject *self, PyObject *args) {
296 int position, mode = 0;
297
298 UNLESS (IO__opencheck(IOOOBJECT(self))) return NULL;
299 UNLESS (PyArg_ParseTuple(args, "i|i:seek", &position, &mode))
300 return NULL;
301
302 if (mode == 2) {
303 position += self->string_size;
304 }
305 else if (mode == 1) {
306 position += self->pos;
307 }
308
309 if (position > self->buf_size) {
310 self->buf_size*=2;
311 if (self->buf_size <= position) self->buf_size=position+1;
312 UNLESS (self->buf=(char*)
313 realloc(self->buf,self->buf_size*sizeof(char))) {
314 self->buf_size=self->pos=0;
315 return PyErr_NoMemory();
316 }
317 }
318 else if (position < 0) position=0;
319
320 self->pos=position;
321
322 while (--position >= self->string_size) self->buf[position]=0;
323
324 Py_INCREF(Py_None);
325 return Py_None;
Martin v. Löwisc912a3a2000-09-19 11:06:46 +0000326}
327
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000328PyDoc_STRVAR(O_write__doc__,
Guido van Rossum049cd901996-12-05 23:30:48 +0000329"write(s) -- Write a string to the file"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000330"\n\nNote (hack:) writing None resets the buffer");
Guido van Rossum049cd901996-12-05 23:30:48 +0000331
332
333static int
Guido van Rossum154417e1997-04-09 17:35:33 +0000334O_cwrite(PyObject *self, char *c, int l) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000335 int newl;
Guido van Rossum2f098122001-12-07 20:20:28 +0000336 Oobject *oself;
Guido van Rossum55702f81997-01-06 22:57:52 +0000337
Jim Fultone60de4d2000-10-06 19:24:23 +0000338 UNLESS (IO__opencheck(IOOOBJECT(self))) return -1;
Guido van Rossum2f098122001-12-07 20:20:28 +0000339 oself = (Oobject *)self;
Guido van Rossum049cd901996-12-05 23:30:48 +0000340
Guido van Rossum2f098122001-12-07 20:20:28 +0000341 newl = oself->pos+l;
342 if (newl >= oself->buf_size) {
343 oself->buf_size *= 2;
344 if (oself->buf_size <= newl)
345 oself->buf_size = newl+1;
346 UNLESS (oself->buf =
347 (char*)realloc(oself->buf,
348 (oself->buf_size) * sizeof(char))) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000349 PyErr_SetString(PyExc_MemoryError,"out of memory");
Guido van Rossum2f098122001-12-07 20:20:28 +0000350 oself->buf_size = oself->pos = 0;
Jim Fultone60de4d2000-10-06 19:24:23 +0000351 return -1;
352 }
353 }
Guido van Rossum049cd901996-12-05 23:30:48 +0000354
Guido van Rossum2f098122001-12-07 20:20:28 +0000355 memcpy(oself->buf+oself->pos,c,l);
Guido van Rossum049cd901996-12-05 23:30:48 +0000356
Guido van Rossum2f098122001-12-07 20:20:28 +0000357 oself->pos += l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000358
Guido van Rossum2f098122001-12-07 20:20:28 +0000359 if (oself->string_size < oself->pos) {
360 oself->string_size = oself->pos;
361 }
Jim Fultone60de4d2000-10-06 19:24:23 +0000362
363 return l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000364}
365
366static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000367O_write(Oobject *self, PyObject *args) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000368 char *c;
369 int l;
Guido van Rossum049cd901996-12-05 23:30:48 +0000370
Guido van Rossuma883a3d2002-04-29 13:54:48 +0000371 UNLESS (PyArg_ParseTuple(args, "t#:write", &c, &l)) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000372
Jim Fultone60de4d2000-10-06 19:24:23 +0000373 if (O_cwrite((PyObject*)self,c,l) < 0) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000374
Jim Fultone60de4d2000-10-06 19:24:23 +0000375 Py_INCREF(Py_None);
376 return Py_None;
Guido van Rossum049cd901996-12-05 23:30:48 +0000377}
378
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000379PyDoc_STRVAR(O_close__doc__, "close(): explicitly release resources held.");
Guido van Rossum049cd901996-12-05 23:30:48 +0000380
381static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000382O_close(Oobject *self, PyObject *args) {
Guido van Rossum049cd901996-12-05 23:30:48 +0000383
Jim Fultone60de4d2000-10-06 19:24:23 +0000384 UNLESS (PyArg_ParseTuple(args, ":close")) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000385
Jim Fultone60de4d2000-10-06 19:24:23 +0000386 if (self->buf != NULL) free(self->buf);
387 self->buf = NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000388
Jim Fultone60de4d2000-10-06 19:24:23 +0000389 self->pos = self->string_size = self->buf_size = 0;
Guido van Rossum049cd901996-12-05 23:30:48 +0000390
Jim Fultone60de4d2000-10-06 19:24:23 +0000391 Py_INCREF(Py_None);
392 return Py_None;
Guido van Rossum049cd901996-12-05 23:30:48 +0000393}
394
395
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000396PyDoc_STRVAR(O_writelines__doc__,
397"writelines(sequence_of_strings): write each string");
Guido van Rossum049cd901996-12-05 23:30:48 +0000398static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000399O_writelines(Oobject *self, PyObject *args) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000400 PyObject *tmp = 0;
Jeremy Hyltoncafd4952001-02-09 23:44:22 +0000401 static PyObject *joiner = NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000402
Jim Fultone60de4d2000-10-06 19:24:23 +0000403 UNLESS (PyArg_ParseTuple(args, "O:writelines", &args)) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000404
Jeremy Hyltoncafd4952001-02-09 23:44:22 +0000405 if (!joiner) {
406 PyObject *empty_string = PyString_FromString("");
407 if (empty_string == NULL)
408 return NULL;
409 joiner = PyObject_GetAttrString(empty_string, "join");
410 Py_DECREF(empty_string);
411 if (joiner == NULL)
412 return NULL;
413 }
Guido van Rossum049cd901996-12-05 23:30:48 +0000414
Jim Fultone60de4d2000-10-06 19:24:23 +0000415 if (PyObject_Size(args) < 0) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000416
Jeremy Hyltoncafd4952001-02-09 23:44:22 +0000417 tmp = PyObject_CallFunction(joiner, "O", args);
Jim Fultone60de4d2000-10-06 19:24:23 +0000418 UNLESS (tmp) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000419
Jim Fultone60de4d2000-10-06 19:24:23 +0000420 args = Py_BuildValue("(O)", tmp);
421 Py_DECREF(tmp);
422 UNLESS (args) return NULL;
Guido van Rossum049cd901996-12-05 23:30:48 +0000423
Jim Fultone60de4d2000-10-06 19:24:23 +0000424 tmp = O_write(self, args);
425 Py_DECREF(args);
426 return tmp;
Guido van Rossum049cd901996-12-05 23:30:48 +0000427}
428
429static struct PyMethodDef O_methods[] = {
Jim Fultone60de4d2000-10-06 19:24:23 +0000430 /* Common methods: */
431 {"flush", (PyCFunction)IO_flush, METH_VARARGS, IO_flush__doc__},
432 {"getvalue", (PyCFunction)IO_getval, METH_VARARGS, IO_getval__doc__},
433 {"isatty", (PyCFunction)IO_isatty, METH_VARARGS, IO_isatty__doc__},
434 {"read", (PyCFunction)IO_read, METH_VARARGS, IO_read__doc__},
435 {"readline", (PyCFunction)IO_readline, METH_VARARGS, IO_readline__doc__},
436 {"readlines", (PyCFunction)IO_readlines,METH_VARARGS, IO_readlines__doc__},
437 {"reset", (PyCFunction)IO_reset, METH_VARARGS, IO_reset__doc__},
438 {"tell", (PyCFunction)IO_tell, METH_VARARGS, IO_tell__doc__},
439 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__},
440
441 /* Read-write StringIO specific methods: */
Guido van Rossum476e49f1998-12-15 21:43:15 +0000442 {"close", (PyCFunction)O_close, METH_VARARGS, O_close__doc__},
Jim Fultone60de4d2000-10-06 19:24:23 +0000443 {"seek", (PyCFunction)O_seek, METH_VARARGS, O_seek__doc__},
444 {"write", (PyCFunction)O_write, METH_VARARGS, O_write__doc__},
Guido van Rossum476e49f1998-12-15 21:43:15 +0000445 {"writelines", (PyCFunction)O_writelines, METH_VARARGS, O_writelines__doc__},
446 {NULL, NULL} /* sentinel */
Guido van Rossum049cd901996-12-05 23:30:48 +0000447};
448
Guido van Rossum049cd901996-12-05 23:30:48 +0000449static void
Guido van Rossum154417e1997-04-09 17:35:33 +0000450O_dealloc(Oobject *self) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000451 if (self->buf != NULL)
452 free(self->buf);
453 PyObject_Del(self);
Guido van Rossum049cd901996-12-05 23:30:48 +0000454}
455
456static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000457O_getattr(Oobject *self, char *name) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000458 if (strcmp(name, "softspace") == 0) {
459 return PyInt_FromLong(self->softspace);
460 }
461 return Py_FindMethod(O_methods, (PyObject *)self, name);
Guido van Rossum049cd901996-12-05 23:30:48 +0000462}
463
Guido van Rossum3dc35b01997-04-11 19:56:06 +0000464static int
465O_setattr(Oobject *self, char *name, PyObject *value) {
466 long x;
467 if (strcmp(name, "softspace") != 0) {
468 PyErr_SetString(PyExc_AttributeError, name);
469 return -1;
470 }
471 x = PyInt_AsLong(value);
Jim Fultone60de4d2000-10-06 19:24:23 +0000472 if (x < 0 && PyErr_Occurred())
Guido van Rossum3dc35b01997-04-11 19:56:06 +0000473 return -1;
474 self->softspace = x;
475 return 0;
476}
477
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000478PyDoc_STRVAR(Otype__doc__, "Simple type for output to strings.");
Guido van Rossum049cd901996-12-05 23:30:48 +0000479
480static PyTypeObject Otype = {
Guido van Rossum154417e1997-04-09 17:35:33 +0000481 PyObject_HEAD_INIT(NULL)
482 0, /*ob_size*/
Guido van Rossum14648392001-12-08 18:02:58 +0000483 "cStringIO.StringO", /*tp_name*/
Guido van Rossum154417e1997-04-09 17:35:33 +0000484 sizeof(Oobject), /*tp_basicsize*/
485 0, /*tp_itemsize*/
486 /* methods */
487 (destructor)O_dealloc, /*tp_dealloc*/
488 (printfunc)0, /*tp_print*/
489 (getattrfunc)O_getattr, /*tp_getattr*/
Guido van Rossum3dc35b01997-04-11 19:56:06 +0000490 (setattrfunc)O_setattr, /*tp_setattr*/
Guido van Rossum154417e1997-04-09 17:35:33 +0000491 (cmpfunc)0, /*tp_compare*/
492 (reprfunc)0, /*tp_repr*/
493 0, /*tp_as_number*/
494 0, /*tp_as_sequence*/
495 0, /*tp_as_mapping*/
496 (hashfunc)0, /*tp_hash*/
497 (ternaryfunc)0, /*tp_call*/
498 (reprfunc)0, /*tp_str*/
499
500 /* Space for future expansion */
501 0L,0L,0L,0L,
502 Otype__doc__ /* Documentation string */
Guido van Rossum049cd901996-12-05 23:30:48 +0000503};
504
Guido van Rossum142eeb81997-08-13 03:14:41 +0000505static PyObject *
506newOobject(int size) {
Jim Fultone60de4d2000-10-06 19:24:23 +0000507 Oobject *self;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000508
Jim Fultone60de4d2000-10-06 19:24:23 +0000509 self = PyObject_New(Oobject, &Otype);
510 if (self == NULL)
511 return NULL;
512 self->pos=0;
513 self->string_size = 0;
514 self->softspace = 0;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000515
Jim Fultone60de4d2000-10-06 19:24:23 +0000516 UNLESS (self->buf=malloc(size*sizeof(char))) {
517 PyErr_SetString(PyExc_MemoryError,"out of memory");
518 self->buf_size = 0;
519 return NULL;
520 }
521
522 self->buf_size=size;
523 return (PyObject*)self;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000524}
525
Guido van Rossum049cd901996-12-05 23:30:48 +0000526/* End of code for StringO objects */
527/* -------------------------------------------------------- */
528
529static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000530I_close(Iobject *self, PyObject *args) {
Guido van Rossum049cd901996-12-05 23:30:48 +0000531
Jim Fultone60de4d2000-10-06 19:24:23 +0000532 UNLESS (PyArg_ParseTuple(args, ":close")) return NULL;
Guido van Rossum476e49f1998-12-15 21:43:15 +0000533
Jim Fultone60de4d2000-10-06 19:24:23 +0000534 Py_XDECREF(self->pbuf);
535 self->pbuf = NULL;
536 self->buf = NULL;
537
538 self->pos = self->string_size = 0;
539
540 Py_INCREF(Py_None);
541 return Py_None;
Guido van Rossum476e49f1998-12-15 21:43:15 +0000542}
543
544static PyObject *
Jim Fultone60de4d2000-10-06 19:24:23 +0000545I_seek(Iobject *self, PyObject *args) {
546 int position, mode = 0;
Guido van Rossum476e49f1998-12-15 21:43:15 +0000547
Jim Fultone60de4d2000-10-06 19:24:23 +0000548 UNLESS (IO__opencheck(IOOOBJECT(self))) return NULL;
549 UNLESS (PyArg_ParseTuple(args, "i|i:seek", &position, &mode))
550 return NULL;
Guido van Rossum476e49f1998-12-15 21:43:15 +0000551
Jim Fultone60de4d2000-10-06 19:24:23 +0000552 if (mode == 2) position += self->string_size;
553 else if (mode == 1) position += self->pos;
Guido van Rossum476e49f1998-12-15 21:43:15 +0000554
Jim Fultone60de4d2000-10-06 19:24:23 +0000555 if (position < 0) position=0;
Guido van Rossum049cd901996-12-05 23:30:48 +0000556
Jim Fultone60de4d2000-10-06 19:24:23 +0000557 self->pos=position;
558
559 Py_INCREF(Py_None);
560 return Py_None;
Guido van Rossum049cd901996-12-05 23:30:48 +0000561}
562
563static struct PyMethodDef I_methods[] = {
Jim Fultone60de4d2000-10-06 19:24:23 +0000564 /* Common methods: */
565 {"flush", (PyCFunction)IO_flush, METH_VARARGS, IO_flush__doc__},
566 {"getvalue", (PyCFunction)IO_getval, METH_VARARGS, IO_getval__doc__},
567 {"isatty", (PyCFunction)IO_isatty, METH_VARARGS, IO_isatty__doc__},
568 {"read", (PyCFunction)IO_read, METH_VARARGS, IO_read__doc__},
569 {"readline", (PyCFunction)IO_readline, METH_VARARGS, IO_readline__doc__},
570 {"readlines", (PyCFunction)IO_readlines,METH_VARARGS, IO_readlines__doc__},
571 {"reset", (PyCFunction)IO_reset, METH_VARARGS, IO_reset__doc__},
572 {"tell", (PyCFunction)IO_tell, METH_VARARGS, IO_tell__doc__},
573 {"truncate", (PyCFunction)IO_truncate, METH_VARARGS, IO_truncate__doc__},
574
575 /* Read-only StringIO specific methods: */
Guido van Rossum476e49f1998-12-15 21:43:15 +0000576 {"close", (PyCFunction)I_close, METH_VARARGS, O_close__doc__},
Jim Fultone60de4d2000-10-06 19:24:23 +0000577 {"seek", (PyCFunction)I_seek, METH_VARARGS, O_seek__doc__},
Guido van Rossum476e49f1998-12-15 21:43:15 +0000578 {NULL, NULL}
Guido van Rossum049cd901996-12-05 23:30:48 +0000579};
580
Guido van Rossum049cd901996-12-05 23:30:48 +0000581static void
Guido van Rossum154417e1997-04-09 17:35:33 +0000582I_dealloc(Iobject *self) {
Guido van Rossum15a40391997-09-03 00:09:26 +0000583 Py_XDECREF(self->pbuf);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000584 PyObject_Del(self);
Guido van Rossum049cd901996-12-05 23:30:48 +0000585}
586
587static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000588I_getattr(Iobject *self, char *name) {
Guido van Rossum049cd901996-12-05 23:30:48 +0000589 return Py_FindMethod(I_methods, (PyObject *)self, name);
590}
591
Barry Warsaw3e8be722001-09-22 04:36:49 +0000592static PyObject *
593I_getiter(Iobject *self)
594{
595 PyObject *myreadline = PyObject_GetAttrString((PyObject*)self,
596 "readline");
597 PyObject *emptystring = PyString_FromString("");
598 PyObject *iter = NULL;
599 if (!myreadline || !emptystring)
600 goto finally;
601
602 iter = PyCallIter_New(myreadline, emptystring);
603 finally:
604 Py_XDECREF(myreadline);
605 Py_XDECREF(emptystring);
606 return iter;
607}
608
609
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000610PyDoc_STRVAR(Itype__doc__,
611"Simple type for treating strings as input file streams");
Guido van Rossum049cd901996-12-05 23:30:48 +0000612
613static PyTypeObject Itype = {
Guido van Rossum154417e1997-04-09 17:35:33 +0000614 PyObject_HEAD_INIT(NULL)
Barry Warsaw3e8be722001-09-22 04:36:49 +0000615 0, /*ob_size*/
Guido van Rossum14648392001-12-08 18:02:58 +0000616 "cStringIO.StringI", /*tp_name*/
Barry Warsaw3e8be722001-09-22 04:36:49 +0000617 sizeof(Iobject), /*tp_basicsize*/
618 0, /*tp_itemsize*/
Guido van Rossum154417e1997-04-09 17:35:33 +0000619 /* methods */
Barry Warsaw3e8be722001-09-22 04:36:49 +0000620 (destructor)I_dealloc, /*tp_dealloc*/
621 (printfunc)0, /*tp_print*/
622 (getattrfunc)I_getattr, /*tp_getattr*/
623 (setattrfunc)0, /*tp_setattr*/
624 (cmpfunc)0, /*tp_compare*/
625 (reprfunc)0, /*tp_repr*/
626 0, /*tp_as_number*/
627 0, /*tp_as_sequence*/
628 0, /*tp_as_mapping*/
629 (hashfunc)0, /*tp_hash*/
630 (ternaryfunc)0, /*tp_call*/
631 (reprfunc)0, /*tp_str*/
632 0, /* tp_getattro */
633 0, /* tp_setattro */
634 0, /* tp_as_buffer */
635 Py_TPFLAGS_DEFAULT, /* tp_flags */
636 Itype__doc__, /* tp_doc */
637 0, /* tp_traverse */
638 0, /* tp_clear */
639 0, /* tp_richcompare */
640 0, /* tp_weaklistoffset */
641 (getiterfunc)I_getiter, /* tp_iter */
642 0, /* tp_iternext */
Guido van Rossum049cd901996-12-05 23:30:48 +0000643};
644
Guido van Rossum142eeb81997-08-13 03:14:41 +0000645static PyObject *
646newIobject(PyObject *s) {
647 Iobject *self;
648 char *buf;
649 int size;
Jeremy Hylton127b2ef2000-04-12 22:04:01 +0000650
Marc-André Lemburge47df7a2001-09-24 17:34:52 +0000651 if (PyObject_AsReadBuffer(s, (const void **)&buf, &size)) {
652 PyErr_Format(PyExc_TypeError, "expected read buffer, %.200s found",
Jeremy Hylton127b2ef2000-04-12 22:04:01 +0000653 s->ob_type->tp_name);
654 return NULL;
655 }
Jim Fultone60de4d2000-10-06 19:24:23 +0000656 UNLESS (self = PyObject_New(Iobject, &Itype)) return NULL;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000657 Py_INCREF(s);
658 self->buf=buf;
659 self->string_size=size;
660 self->pbuf=s;
661 self->pos=0;
Guido van Rossum142eeb81997-08-13 03:14:41 +0000662
663 return (PyObject*)self;
664}
665
Guido van Rossum049cd901996-12-05 23:30:48 +0000666/* End of code for StringI objects */
667/* -------------------------------------------------------- */
668
669
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000670PyDoc_STRVAR(IO_StringIO__doc__,
671"StringIO([s]) -- Return a StringIO-like stream for reading or writing");
Guido van Rossum049cd901996-12-05 23:30:48 +0000672
673static PyObject *
Guido van Rossum154417e1997-04-09 17:35:33 +0000674IO_StringIO(PyObject *self, PyObject *args) {
Guido van Rossum049cd901996-12-05 23:30:48 +0000675 PyObject *s=0;
676
Jim Fultone60de4d2000-10-06 19:24:23 +0000677 if (!PyArg_ParseTuple(args, "|O:StringIO", &s)) return NULL;
678
679 if (s) return newIobject(s);
Guido van Rossum154417e1997-04-09 17:35:33 +0000680 return newOobject(128);
Guido van Rossum049cd901996-12-05 23:30:48 +0000681}
682
683/* List of methods defined in the module */
684
685static struct PyMethodDef IO_methods[] = {
Andrew M. Kuchlinge365fb82000-08-03 02:06:16 +0000686 {"StringIO", (PyCFunction)IO_StringIO,
687 METH_VARARGS, IO_StringIO__doc__},
Guido van Rossum55702f81997-01-06 22:57:52 +0000688 {NULL, NULL} /* sentinel */
Guido van Rossum049cd901996-12-05 23:30:48 +0000689};
690
691
692/* Initialization function for the module (*must* be called initcStringIO) */
693
Guido van Rossum154417e1997-04-09 17:35:33 +0000694static struct PycStringIO_CAPI CAPI = {
Jim Fultone60de4d2000-10-06 19:24:23 +0000695 IO_cread,
696 IO_creadline,
Guido van Rossum154417e1997-04-09 17:35:33 +0000697 O_cwrite,
Jim Fultone60de4d2000-10-06 19:24:23 +0000698 IO_cgetval,
Guido van Rossum154417e1997-04-09 17:35:33 +0000699 newOobject,
700 newIobject,
701 &Itype,
702 &Otype,
703};
704
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000705#ifndef PyMODINIT_FUNC /* declarations for DLL import/export */
706#define PyMODINIT_FUNC void
Guido van Rossum476e49f1998-12-15 21:43:15 +0000707#endif
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000708PyMODINIT_FUNC
Thomas Wouters58d05102000-07-24 14:43:35 +0000709initcStringIO(void) {
Guido van Rossum9efe8ef1997-09-03 18:19:40 +0000710 PyObject *m, *d, *v;
Guido van Rossum049cd901996-12-05 23:30:48 +0000711
Guido van Rossum154417e1997-04-09 17:35:33 +0000712
Guido van Rossum049cd901996-12-05 23:30:48 +0000713 /* Create the module and add the functions */
714 m = Py_InitModule4("cStringIO", IO_methods,
715 cStringIO_module_documentation,
716 (PyObject*)NULL,PYTHON_API_VERSION);
717
718 /* Add some symbolic constants to the module */
719 d = PyModule_GetDict(m);
Guido van Rossum049cd901996-12-05 23:30:48 +0000720
Guido van Rossum55702f81997-01-06 22:57:52 +0000721 /* Export C API */
Guido van Rossum154417e1997-04-09 17:35:33 +0000722 Itype.ob_type=&PyType_Type;
723 Otype.ob_type=&PyType_Type;
Guido van Rossum9efe8ef1997-09-03 18:19:40 +0000724 PyDict_SetItemString(d,"cStringIO_CAPI",
725 v = PyCObject_FromVoidPtr(&CAPI,NULL));
726 Py_XDECREF(v);
Guido van Rossum154417e1997-04-09 17:35:33 +0000727
728 /* Export Types */
Guido van Rossum049cd901996-12-05 23:30:48 +0000729 PyDict_SetItemString(d,"InputType", (PyObject*)&Itype);
730 PyDict_SetItemString(d,"OutputType", (PyObject*)&Otype);
Guido van Rossum142eeb81997-08-13 03:14:41 +0000731
732 /* Maybe make certain warnings go away */
Jim Fultone60de4d2000-10-06 19:24:23 +0000733 if (0) PycString_IMPORT;
Guido van Rossum049cd901996-12-05 23:30:48 +0000734}