Module providing facilities for handling struct-like data.
Read (and decode) an integer number from a binary stream.
Parameters: |
|
---|---|
Returns: | the read integer number |
Read a section header block from a stream.
Note
The byte order magic will be removed from the returned data This is ok as we don’t need it anymore once we determined the correct endianness of the section.
Returns: | a dict containing the 'endianness' and 'data' keys that will be used to construct a SectionHeader instance. |
---|
Read block data from a stream.
Each “block” is in the form:
Parameters: |
|
---|
Read the given amount of raw bytes from a stream.
Parameters: |
|
---|---|
Returns: | the read data |
Raises: | StreamEmpty if zero bytes were read |
Raises: | TruncatedFile if 0 < bytes < size were read |
Read the given amount of bytes from a stream, plus read and discard any necessary extra byte to align up to the pad_block_size-sized next block.
Parameters: |
|
---|---|
Returns: | the read data |
Raises: | StreamEmpty if zero bytes were read |
Raises: | TruncatedFile if 0 < bytes < size were read |
Field containing a fixed-width amount of raw bytes
Parameters: | size – field size, in bytes |
---|
Field containing an integer number.
Parameters: |
|
---|
Field containing some options.
Parameters: | options_schema – Same as the schema parameter to Options class constructor. |
---|
Field containing some “packet data”, used in the Packet and EnhancedPacket blocks.
The packet data is composed of three fields (returned in a tuple):
Field containing packet data from a SimplePacket object.
The packet data is represented by two fields (returned as a tuple):
A list field is a variable amount of fields of some other type. Used for packets containing multiple “items”, such as NameResolution.
It will keep loading data using a subfield until a StreamEmpty excaption is raised, indicating we reached the end of data (note that a sub-field might even “simulate” a stream end once it reaches some end marker in the file).
Values are returned in a list.
Parameters: | subfield – a StructField sub-class instance to be used to read values from the stream. |
---|
A name resolution record field contains an item of data used in the NameResolution block.
it is composed of three fields:
Accepted types are:
In both cases, the payload is composed of a valid address in the selected IP version, followed by domain name up to the field end.
Read “options” from an “options block” in a stream, until a StreamEmpty exception is caught, or an end marker is reached.
Each option is composed by:
The end marker is simply an option with code 0x0000 and no payload
Wrapper object used to easily access the contents of an “options” field.
Fields can be accessed either by numerical id or by name (if one was specified in the schema).
Note
When iterating the object (or calling keys() / iterkeys() / viewkeys()) string keys will be returned if possible in place of numeric keys. (The purpose of this is to achieve better readability, for example, when converting to a dictionary).
Parameters: |
|
---|
Decode structured data from a stream, following a schema.
Parameters: |
|
---|---|
Returns: | a dictionary mapping the field names to decoded data |
In the future, this function will be used to encode a structure into a stream. For the moment, it just raises NotImplementedError.
Utility function to pass a string to struct_decode()
Utility function to pass a string to struct_encode() and get the result back as a bytes string.