StreamReader

from panda3d.core import StreamReader
class StreamReader

Bases:

A class to read sequential binary data directly from an istream. Its interface is similar to DatagramIterator by design; see also StreamWriter.

Inheritance diagram

Inheritance diagram of StreamReader

__init__(copy: StreamReader)

The copy constructor does not copy ownership of the stream.

__init__(in: istream, owns_stream: bool)

If owns_stream is true, the stream pointer will be deleted when the StreamReader destructs.

assign(copy: StreamReader) StreamReader
extractBytes(size: int) object

Extracts the indicated number of bytes in the stream and returns them as a string. Returns empty string at end-of-file.

getBeFloat32() float

Extracts a 32-bit single-precision big-endian floating-point number. Since this kind of float is not necessarily portable across different architectures, special care is required.

getBeFloat64() float

Extracts a 64-bit big-endian floating-point number.

getBeInt16() int

Extracts a signed big-endian 16-bit integer.

getBeInt32() int

Extracts a signed big-endian 32-bit integer.

getBeInt64() int

Extracts a signed big-endian 64-bit integer.

getBeUint16() int

Extracts an unsigned big-endian 16-bit integer.

getBeUint32() int

Extracts an unsigned big-endian 32-bit integer.

getBeUint64() int

Extracts an unsigned big-endian 64-bit integer.

getBool() bool

Extracts a boolean value.

getFixedString(size: int) str

Extracts a fixed-length string. However, if a zero byte occurs within the string, it marks the end of the string.

getFloat32() float

Extracts a 32-bit single-precision floating-point number. Since this kind of float is not necessarily portable across different architectures, special care is required.

getFloat64() float

Extracts a 64-bit floating-point number.

getInt16() int

Extracts a signed 16-bit integer.

getInt32() int

Extracts a signed 32-bit integer.

getInt64() int

Extracts a signed 64-bit integer.

getInt8() int8_t

Extracts a signed 8-bit integer.

getIstream() istream

Returns the stream in use.

getString() str

Extracts a variable-length string.

getString32() str

Extracts a variable-length string with a 32-bit length field.

getUint16() int

Extracts an unsigned 16-bit integer.

getUint32() int

Extracts an unsigned 32-bit integer.

getUint64() int

Extracts an unsigned 64-bit integer.

getUint8() uint8_t

Extracts an unsigned 8-bit integer.

getZString() str

Extracts a variable-length string, as a NULL-terminated string.

property istream istream

Returns the stream in use.

readline() object

Assumes the stream represents a text file, and extracts one line up to and including the trailing newline character. Returns empty string when the end of file is reached.

The interface here is intentionally designed to be similar to that for Python’s File.readline() function.

readlines() object
skipBytes(size: int)

Skips over the indicated number of bytes in the stream.