r"""File-like objects that read from or write to a string buffer.
This implements (nearly) all stdio methods.
f = StringIO() # ready for writing
f = StringIO(buf) # ready for reading
f.close() # explicitly release resources held
flag = f.isatty() # always false
pos = f.tell() # get current position
f.seek(pos) # set current position
f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
buf = f.read() # read until EOF
buf = f.read(n) # read up to n bytes
buf = f.readline() # read until end of line ('\n') or EOF
list = f.readlines()# list of f.readline() results until EOF
f.truncate([size]) # truncate file at to at most size (default: current pos)
f.write(buf) # write at current position
f.writelines(list) # for line in list: f.write(line)
f.getvalue() # return whole file's contents as a string
- Using a real file is often faster (but less convenient).
- There's also a much faster implementation in C, called cStringIO, but
- fileno() is left unimplemented so that code which uses it triggers
- Seeking far beyond EOF and then writing will insert real null
bytes that occupy space in the buffer.
- There's a simple test set (see end of this file).
def _complain_ifclosed(closed):
raise ValueError, "I/O operation on closed file"
"""class StringIO([buffer])
When a StringIO object is created, it can be initialized to an existing
string by passing the string to the constructor. If no string is given,
the StringIO will start empty.
The StringIO object can accept either Unicode or 8-bit strings, but
mixing the two may take some care. If both are used, 8-bit strings that
cannot be interpreted as 7-bit ASCII (that use the 8th bit) will cause
a UnicodeError to be raised when getvalue() is called.
def __init__(self, buf = ''):
# Force self.buf to be a string or unicode
if not isinstance(buf, basestring):
"""A file object is its own iterator, for example iter(f) returns f
(unless f is closed). When a file is used as an iterator, typically
in a for loop (for example, for line in f: print line), the next()
method is called repeatedly. This method returns the next input line,
or raises StopIteration when EOF is hit.
_complain_ifclosed(self.closed)
"""Free the memory buffer.
"""Returns False because StringIO objects are not connected to a
_complain_ifclosed(self.closed)
def seek(self, pos, mode = 0):
"""Set the file's current position.
The mode argument is optional and defaults to 0 (absolute file
positioning); other values are 1 (seek relative to the current
position) and 2 (seek relative to the file's end).
There is no return value.
_complain_ifclosed(self.closed)
self.buf += ''.join(self.buflist)
"""Return the file's current position."""
_complain_ifclosed(self.closed)
"""Read at most size bytes from the file
(less if the read hits EOF before obtaining size bytes).
If the size argument is negative or omitted, read all data until EOF
is reached. The bytes are returned as a string object. An empty
string is returned when EOF is encountered immediately.
_complain_ifclosed(self.closed)
self.buf += ''.join(self.buflist)
newpos = min(self.pos+n, self.len)
r = self.buf[self.pos:newpos]
def readline(self, length=None):
r"""Read one entire line from the file.
A trailing newline character is kept in the string (but may be absent
when a file ends with an incomplete line). If the size argument is
present and non-negative, it is a maximum byte count (including the
trailing newline) and an incomplete line may be returned.
An empty string is returned only when EOF is encountered immediately.
Note: Unlike stdio's fgets(), the returned string contains null
characters ('\0') if they occurred in the input.
_complain_ifclosed(self.closed)
self.buf += ''.join(self.buflist)
i = self.buf.find('\n', self.pos)
if length is not None and length >= 0:
if self.pos + length < newpos:
newpos = self.pos + length
r = self.buf[self.pos:newpos]
def readlines(self, sizehint = 0):
"""Read until EOF using readline() and return a list containing the
If the optional sizehint argument is present, instead of reading up
to EOF, whole lines totalling approximately sizehint bytes (or more
to accommodate a final whole line).
if 0 < sizehint <= total:
def truncate(self, size=None):
"""Truncate the file's size.
If the optional size argument is present, the file is truncated to
(at most) that size. The size defaults to the current position.
The current file position is not changed unless the position
is beyond the new file size.
If the specified size exceeds the file's current size, the
_complain_ifclosed(self.closed)
raise IOError(EINVAL, "Negative size not allowed")
self.buf = self.getvalue()[:size]
"""Write a string to the file.
There is no return value.
_complain_ifclosed(self.closed)
# Force s to be a string or unicode
if not isinstance(s, basestring):
self.len = self.pos = spos + len(s)
self.buflist.append('\0'*(spos - slen))
self.buf += ''.join(self.buflist)
self.buflist = [self.buf[:spos], s, self.buf[newpos:]]
def writelines(self, iterable):
"""Write a sequence of strings to the file. The sequence can be any
iterable object producing strings, typically a list of strings. There
(The name is intended to match readlines(); writelines() does not add
"""Flush the internal buffer
_complain_ifclosed(self.closed)
Retrieve the entire contents of the "file" at any time before
the StringIO object's close() method is called.
The StringIO object can accept either Unicode or 8-bit strings,
but mixing the two may take some care. If both are used, 8-bit
strings that cannot be interpreted as 7-bit ASCII (that use the
8th bit) will cause a UnicodeError to be raised when getvalue()
_complain_ifclosed(self.closed)
self.buf += ''.join(self.buflist)
lines = open(file, 'r').readlines()
text = open(file, 'r').read()
raise RuntimeError, 'write failed'
print 'File length =', length
print 'First line =', repr(f.readline())
print 'Position =', f.tell()
print 'Second line =', repr(line)
line2 = f.read(len(line))
raise RuntimeError, 'bad result after seek back'
f.seek(f.tell() - len(line))
raise RuntimeError, 'bad result after seek back from EOF'
print 'Read', len(list), 'more lines'
print 'File length =', f.tell()
raise RuntimeError, 'bad length'
print 'Truncated length =', f.tell()
raise RuntimeError, 'truncate did not adjust length'
if __name__ == '__main__':