2018-03-17 11:53:21 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Header holds the head info of a block.
|
|
|
|
type Header struct {
|
|
|
|
// Base of the block.
|
|
|
|
BlockBase
|
|
|
|
// Padding that is fixed to 0
|
|
|
|
_ uint8
|
|
|
|
}
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// DecodeBinary implements the Payload interface.
|
2018-03-17 11:53:21 +00:00
|
|
|
func (h *Header) DecodeBinary(r io.Reader) error {
|
|
|
|
if err := h.BlockBase.DecodeBinary(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var padding uint8
|
2019-01-25 11:20:35 +00:00
|
|
|
if err := binary.Read(r, binary.LittleEndian, &padding); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-03-17 11:53:21 +00:00
|
|
|
if padding != 0 {
|
|
|
|
return fmt.Errorf("format error: padding must equal 0 got %d", padding)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-13 18:01:10 +00:00
|
|
|
// EncodeBinary implements the Payload interface.
|
2018-03-17 11:53:21 +00:00
|
|
|
func (h *Header) EncodeBinary(w io.Writer) error {
|
|
|
|
if err := h.BlockBase.EncodeBinary(w); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return binary.Write(w, binary.LittleEndian, uint8(0))
|
|
|
|
}
|