Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 1 | """File-like objects that read from or write to a string buffer. |
| 2 | |
| 3 | This implements (nearly) all stdio methods. |
| 4 | |
| 5 | f = StringIO() # ready for writing |
| 6 | f = StringIO(buf) # ready for reading |
| 7 | f.close() # explicitly release resources held |
| 8 | flag = f.isatty() # always false |
| 9 | pos = f.tell() # get current position |
| 10 | f.seek(pos) # set current position |
| 11 | f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF |
| 12 | buf = f.read() # read until EOF |
| 13 | buf = f.read(n) # read up to n bytes |
| 14 | buf = f.readline() # read until end of line ('\n') or EOF |
| 15 | list = f.readlines()# list of f.readline() results until EOF |
Fred Drake | e0a7f4f | 2000-09-28 04:21:06 +0000 | [diff] [blame] | 16 | f.truncate([size]) # truncate file at to at most size (default: current pos) |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 17 | f.write(buf) # write at current position |
| 18 | f.writelines(list) # for line in list: f.write(line) |
| 19 | f.getvalue() # return whole file's contents as a string |
| 20 | |
| 21 | Notes: |
| 22 | - Using a real file is often faster (but less convenient). |
Guido van Rossum | 98d9fd3 | 2000-02-28 15:12:25 +0000 | [diff] [blame] | 23 | - There's also a much faster implementation in C, called cStringIO, but |
| 24 | it's not subclassable. |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 25 | - fileno() is left unimplemented so that code which uses it triggers |
| 26 | an exception early. |
| 27 | - Seeking far beyond EOF and then writing will insert real null |
| 28 | bytes that occupy space in the buffer. |
| 29 | - There's a simple test set (see end of this file). |
| 30 | """ |
Barry Warsaw | c7ed0e3 | 2000-12-12 23:12:23 +0000 | [diff] [blame] | 31 | try: |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 32 | from errno import EINVAL |
Barry Warsaw | c7ed0e3 | 2000-12-12 23:12:23 +0000 | [diff] [blame] | 33 | except ImportError: |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 34 | EINVAL = 22 |
Barry Warsaw | c7ed0e3 | 2000-12-12 23:12:23 +0000 | [diff] [blame] | 35 | |
Skip Montanaro | e99d5ea | 2001-01-20 19:54:20 +0000 | [diff] [blame] | 36 | __all__ = ["StringIO"] |
| 37 | |
Guido van Rossum | 85d8945 | 1994-06-23 11:53:27 +0000 | [diff] [blame] | 38 | class StringIO: |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 39 | """class StringIO([buffer]) |
| 40 | |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 41 | When a StringIO object is created, it can be initialized to an existing |
| 42 | string by passing the string to the constructor. If no string is given, |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 43 | the StringIO will start empty. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 44 | |
| 45 | The StringIO object can accept either Unicode or 8-bit strings, but |
| 46 | mixing the two may take some care. If both are used, 8-bit strings that |
| 47 | cannot be interpreted as 7-bit ASCII (that use the 8th bit) will cause |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 48 | a UnicodeError to be raised when getvalue() is called. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 49 | """ |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 50 | def __init__(self, buf = ''): |
Marc-André Lemburg | f853be9 | 2002-01-06 17:15:05 +0000 | [diff] [blame] | 51 | # Force self.buf to be a string or unicode |
Walter Dörwald | 65230a2 | 2002-06-03 15:58:32 +0000 | [diff] [blame] | 52 | if not isinstance(buf, basestring): |
Marc-André Lemburg | f853be9 | 2002-01-06 17:15:05 +0000 | [diff] [blame] | 53 | buf = str(buf) |
| 54 | self.buf = buf |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 55 | self.len = len(buf) |
| 56 | self.buflist = [] |
| 57 | self.pos = 0 |
| 58 | self.closed = 0 |
| 59 | self.softspace = 0 |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 60 | |
Barry Warsaw | bdefa0b | 2001-09-22 04:34:54 +0000 | [diff] [blame] | 61 | def __iter__(self): |
| 62 | return iter(self.readline, '') |
| 63 | |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 64 | def close(self): |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 65 | """Free the memory buffer. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 66 | """ |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 67 | if not self.closed: |
| 68 | self.closed = 1 |
| 69 | del self.buf, self.pos |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 70 | |
| 71 | def isatty(self): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 72 | if self.closed: |
| 73 | raise ValueError, "I/O operation on closed file" |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 74 | return False |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 75 | |
| 76 | def seek(self, pos, mode = 0): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 77 | if self.closed: |
| 78 | raise ValueError, "I/O operation on closed file" |
| 79 | if self.buflist: |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 80 | self.buf += ''.join(self.buflist) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 81 | self.buflist = [] |
| 82 | if mode == 1: |
| 83 | pos += self.pos |
| 84 | elif mode == 2: |
| 85 | pos += self.len |
| 86 | self.pos = max(0, pos) |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 87 | |
| 88 | def tell(self): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 89 | if self.closed: |
| 90 | raise ValueError, "I/O operation on closed file" |
| 91 | return self.pos |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 92 | |
| 93 | def read(self, n = -1): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 94 | if self.closed: |
| 95 | raise ValueError, "I/O operation on closed file" |
| 96 | if self.buflist: |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 97 | self.buf += ''.join(self.buflist) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 98 | self.buflist = [] |
| 99 | if n < 0: |
| 100 | newpos = self.len |
| 101 | else: |
| 102 | newpos = min(self.pos+n, self.len) |
| 103 | r = self.buf[self.pos:newpos] |
| 104 | self.pos = newpos |
| 105 | return r |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 106 | |
| 107 | def readline(self, length=None): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 108 | if self.closed: |
| 109 | raise ValueError, "I/O operation on closed file" |
| 110 | if self.buflist: |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 111 | self.buf += ''.join(self.buflist) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 112 | self.buflist = [] |
| 113 | i = self.buf.find('\n', self.pos) |
| 114 | if i < 0: |
| 115 | newpos = self.len |
| 116 | else: |
| 117 | newpos = i+1 |
| 118 | if length is not None: |
| 119 | if self.pos + length < newpos: |
| 120 | newpos = self.pos + length |
| 121 | r = self.buf[self.pos:newpos] |
| 122 | self.pos = newpos |
| 123 | return r |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 124 | |
| 125 | def readlines(self, sizehint = 0): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 126 | total = 0 |
| 127 | lines = [] |
| 128 | line = self.readline() |
| 129 | while line: |
| 130 | lines.append(line) |
| 131 | total += len(line) |
| 132 | if 0 < sizehint <= total: |
| 133 | break |
| 134 | line = self.readline() |
| 135 | return lines |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 136 | |
| 137 | def truncate(self, size=None): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 138 | if self.closed: |
| 139 | raise ValueError, "I/O operation on closed file" |
| 140 | if size is None: |
| 141 | size = self.pos |
| 142 | elif size < 0: |
| 143 | raise IOError(EINVAL, "Negative size not allowed") |
| 144 | elif size < self.pos: |
| 145 | self.pos = size |
| 146 | self.buf = self.getvalue()[:size] |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 147 | |
| 148 | def write(self, s): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 149 | if self.closed: |
| 150 | raise ValueError, "I/O operation on closed file" |
| 151 | if not s: return |
Marc-André Lemburg | f853be9 | 2002-01-06 17:15:05 +0000 | [diff] [blame] | 152 | # Force s to be a string or unicode |
Walter Dörwald | 65230a2 | 2002-06-03 15:58:32 +0000 | [diff] [blame] | 153 | if not isinstance(s, basestring): |
Marc-André Lemburg | f853be9 | 2002-01-06 17:15:05 +0000 | [diff] [blame] | 154 | s = str(s) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 155 | if self.pos > self.len: |
| 156 | self.buflist.append('\0'*(self.pos - self.len)) |
| 157 | self.len = self.pos |
| 158 | newpos = self.pos + len(s) |
| 159 | if self.pos < self.len: |
| 160 | if self.buflist: |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 161 | self.buf += ''.join(self.buflist) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 162 | self.buflist = [] |
| 163 | self.buflist = [self.buf[:self.pos], s, self.buf[newpos:]] |
| 164 | self.buf = '' |
| 165 | if newpos > self.len: |
| 166 | self.len = newpos |
| 167 | else: |
| 168 | self.buflist.append(s) |
| 169 | self.len = newpos |
| 170 | self.pos = newpos |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 171 | |
| 172 | def writelines(self, list): |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 173 | self.write(''.join(list)) |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 174 | |
| 175 | def flush(self): |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 176 | if self.closed: |
| 177 | raise ValueError, "I/O operation on closed file" |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 178 | |
| 179 | def getvalue(self): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 180 | """ |
| 181 | Retrieve the entire contents of the "file" at any time before |
| 182 | the StringIO object's close() method is called. |
| 183 | |
| 184 | The StringIO object can accept either Unicode or 8-bit strings, |
| 185 | but mixing the two may take some care. If both are used, 8-bit |
| 186 | strings that cannot be interpreted as 7-bit ASCII (that use the |
| 187 | 8th bit) will cause a UnicodeError to be raised when getvalue() |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 188 | is called. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 189 | """ |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 190 | if self.buflist: |
Marc-André Lemburg | 85d6edf | 2001-02-09 13:37:37 +0000 | [diff] [blame] | 191 | self.buf += ''.join(self.buflist) |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 192 | self.buflist = [] |
| 193 | return self.buf |
Guido van Rossum | 85d8945 | 1994-06-23 11:53:27 +0000 | [diff] [blame] | 194 | |
| 195 | |
| 196 | # A little test suite |
| 197 | |
| 198 | def test(): |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 199 | import sys |
| 200 | if sys.argv[1:]: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 201 | file = sys.argv[1] |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 202 | else: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 203 | file = '/etc/passwd' |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 204 | lines = open(file, 'r').readlines() |
| 205 | text = open(file, 'r').read() |
| 206 | f = StringIO() |
| 207 | for line in lines[:-2]: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 208 | f.write(line) |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 209 | f.writelines(lines[-2:]) |
| 210 | if f.getvalue() != text: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 211 | raise RuntimeError, 'write failed' |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 212 | length = f.tell() |
| 213 | print 'File length =', length |
| 214 | f.seek(len(lines[0])) |
| 215 | f.write(lines[1]) |
| 216 | f.seek(0) |
| 217 | print 'First line =', `f.readline()` |
Neal Norwitz | 9fb289d | 2002-02-11 17:52:18 +0000 | [diff] [blame] | 218 | print 'Position =', f.tell() |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 219 | line = f.readline() |
| 220 | print 'Second line =', `line` |
| 221 | f.seek(-len(line), 1) |
| 222 | line2 = f.read(len(line)) |
| 223 | if line != line2: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 224 | raise RuntimeError, 'bad result after seek back' |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 225 | f.seek(len(line2), 1) |
| 226 | list = f.readlines() |
| 227 | line = list[-1] |
| 228 | f.seek(f.tell() - len(line)) |
| 229 | line2 = f.read() |
| 230 | if line != line2: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 231 | raise RuntimeError, 'bad result after seek back from EOF' |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 232 | print 'Read', len(list), 'more lines' |
| 233 | print 'File length =', f.tell() |
| 234 | if f.tell() != length: |
Fred Drake | a63bd1c | 2000-12-13 20:23:11 +0000 | [diff] [blame] | 235 | raise RuntimeError, 'bad length' |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 236 | f.close() |
Guido van Rossum | 85d8945 | 1994-06-23 11:53:27 +0000 | [diff] [blame] | 237 | |
| 238 | if __name__ == '__main__': |
Barry Warsaw | c140131 | 2000-12-12 23:16:51 +0000 | [diff] [blame] | 239 | test() |