Init()
Initializes the decoder to start decoding a new frame. It sets the read position to the start of the frame and also erases/voids any saved positions (see `SavePosition()` and `ResetToSaved()` methods).
GetFrame() const
Returns the pointer to the start of the frame.
GetLength() const
Returns the total length of current frame being decoded.
GetReadLength() const
Returns the number of bytes that are already read/decoded from the frame.
GetRemainingLength() const
Returns the number of remaining (not yet read/decoded) bytes in the frame.
IsAllRead() const
Indicates whether or not all the bytes in the frame are read.
Reset()
Resets the read position to beginning of frame. It will also void/erase any previously saved position using `SavePosition()` method.
ReadBool()
Decodes and reads a boolean value form the frame. On success, the read position gets updated.
ReadInt8()
Decodes and reads an `int8_t` value form the frame. On success, the read position get updated.
ReadUint8()
Decodes and reads an `uint8_t` value form the frame. On success, the read position gets updated.
ReadInt16()
Decodes and reads an `int16_t` value form the frame. On success, the read position gets updated.
ReadUint16()
Decodes and reads an `uint16_t` value form the frame. On success, the read position gets updated.
ReadInt32()
Decodes and reads an `int32_t` value form the frame. On success, the read position gets updated.
ReadUint32()
Decodes and reads an `uint32_t` value form the frame. On success, the read position gets updated.
ReadInt64()
Decodes and reads an `int64_t` value form the frame. On success, the read position gets updated.
ReadUint64()
Decodes and reads an `uint64_t` value form the frame. On success, the read position gets updated.
ReadUintPacked()
Decodes (using spinel packed integer format) and reads an unsigned integer value form the frame. On success, the read position gets updated.
ReadIp6Address()
Decodes and reads an IPv6 address form the frame. On success, the read position gets updated and the IP address is copied into the given output variable.
ReadIp6Address()
Decodes and reads an IPv6 address form the frame. On success, the read position gets updated and the IP address is copied into the given output variable.
ReadIp6Address()
Decodes and reads an IPv6 address form the frame. On success, the read position gets updated and the IP address is copied into the given output variable.
ReadIp6Address()
Decodes and reads an IPv6 address form the frame. On success, the read position gets updated and the IP address is copied into the given output variable.
ReadIp6Address()
Decodes and reads an IPv6 address form the frame. On success, the read position gets updated and the IP address is copied into the given output variable.
ReadEui64()
Decodes and reads an EUI64 value form the frame. On success, the read position gets updated and the EUI64 value is copied into the given output variable.
ReadEui64()
Decodes and reads an EUI64 value form the frame. On success, the read position gets updated and the EUI64 value is copied into the given output variable.
ReadEui64()
Decodes and reads an EUI64 value form the frame. On success, the read position gets updated and the EUI64 value is copied into the given output variable.
ReadEui64()
Decodes and reads an EUI64 value form the frame. On success, the read position gets updated and the EUI64 value is copied into the given output variable.
ReadEui64()
Decodes and reads an EUI64 value form the frame. On success, the read position gets updated and the EUI64 value is copied into the given output variable.
ReadEui48()
Decodes and reads an EUI48 value form the frame. On success, the read position gets updated and the EUI48 value is copied into the given output variable.
ReadEui48()
Decodes and reads an EUI48 value form the frame. On success, the read position gets updated and the EUI48 value is copied into the given output variable.
ReadEui48()
Decodes and reads an EUI48 value form the frame. On success, the read position gets updated and the EUI48 value is copied into the given output variable.
ReadUtf8()
Decodes and reads a UTF8 string form the frame. On success, the read position gets updated.
ReadData()
Decodes and reads a data blob (sequence of bytes) form the frame. On success, the read position gets updated.
ReadDataWithLen()
Decodes and reads a data blob (sequence of bytes) with data length. The data length is assumed to be prepended before the data content (encoded as a `uint16_t`). The size of the length field should not be included in the length value. This method corresponds to `SPINEL_DATATYPE_DATA_WLEN` type.
OpenStruct()
Opens a struct in the frame. After a successful call to this method, all the subsequent `Read{SomeType}()` methods decode and read the field/value from the current open struct until the struct is closed using `CloseStruct()` method. Structures can be nested. Up to `kMaxNestedStructs` nested structs can be opened at the same time.
CloseStruct()
Closes the most recently opened struct (using `OpenStruct()`) in the frame. On success, the read position is moved to end of the struct skipping any unread bytes within the struct.
GetRemainingLengthInStruct() const
Returns the number of remaining/unread bytes in the current inner-most open structure. If there is no currently open structure the number of remaining bytes in whole frame is returned instead.
IsAllReadInStruct() const
Indicates whether or not all the bytes in inner-most open structure are read. If there is no currently open structure, the whole frame is considered instead.
SavePosition()
Saves the current read position in the frame. A subsequent call to `SavePosition()` will overwrite the previously saved position. The saved position can be used to move the read position back (using `ResetToSaved()`) and re-read the same content. Saved position can be within an open struct, and it remembers its enclosing struct. When the enclosing struct is closed, the saved position will be voided and can no longer be used. This ensures that we cannot jump back to middle an already fully decoded/read and closed struct.
ResetToSaved()
Resets/moves the read position to a previously saved position. The saved position remembers its enclosing structure. When `ResetToSaved()` is called, the current open structure will be the same as when position was saved.
ReadItem()
ClearSavedPosition()
IsSavedPositionValid() const