Class LazyStream
The LazyStream wrapper allows one to get and "unget" bytes from a stream.
Declaration
class LazyStream
source linkDocumentation
Given a producer object (an iterator that yields bytestrings), the
LazyStream object will support iteration, reading, and keeping a "look-back"
variable in case you need to "unget" some bytes.
Methods
▶ def __init__(self, producer, length=None) Every LazyStream must have a producer when instantiated.
A producer is an iterable that returns a string each time it
is called.
▶ def __next__(self) Used when the exact number of bytes to read is unimportant.
Return whatever chunk is conveniently returned from the iterator.
Useful to avoid unnecessary bookkeeping if performance is an issue.
▶ def close(self) Used to invalidate/disable this lazy stream.
Replace the producer with an empty list. Any leftover bytes that have
already been read will still be reported upon read() and/or next().
▷ def read(self, size=None) ▶ def unget(self, bytes) Place bytes back onto the front of the lazy stream.
Future calls to read() will return those bytes first. The
stream position and thus tell() will be rewound.