2019-03-07 02:19:57 +00:00
|
|
|
package loopdb
|
|
|
|
|
2020-07-23 15:28:36 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2019-03-07 02:19:57 +00:00
|
|
|
// itob returns an 8-byte big endian representation of v.
|
|
|
|
func itob(v uint64) []byte {
|
|
|
|
b := make([]byte, 8)
|
|
|
|
byteOrder.PutUint64(b, v)
|
|
|
|
return b
|
|
|
|
}
|
2020-07-23 15:28:36 +00:00
|
|
|
|
|
|
|
// UnmarshalProtocolVersion attempts to unmarshal a byte slice to a
|
|
|
|
// ProtocolVersion value. If the unmarshal fails, ProtocolVersionUnrecorded is
|
|
|
|
// returned along with an error.
|
|
|
|
func UnmarshalProtocolVersion(b []byte) (ProtocolVersion, error) {
|
|
|
|
if b == nil {
|
|
|
|
return ProtocolVersionUnrecorded, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(b) != 4 {
|
|
|
|
return ProtocolVersionUnrecorded,
|
|
|
|
fmt.Errorf("invalid size: %v", len(b))
|
|
|
|
}
|
|
|
|
|
|
|
|
version := ProtocolVersion(byteOrder.Uint32(b))
|
|
|
|
if !version.Valid() {
|
|
|
|
return ProtocolVersionUnrecorded,
|
|
|
|
fmt.Errorf("invalid protocol version: %v", version)
|
|
|
|
}
|
|
|
|
|
|
|
|
return version, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalProtocolVersion marshals a ProtocolVersion value to a byte slice.
|
|
|
|
func MarshalProtocolVersion(version ProtocolVersion) []byte {
|
|
|
|
var versionBytes [4]byte
|
|
|
|
byteOrder.PutUint32(versionBytes[:], uint32(version))
|
|
|
|
|
|
|
|
return versionBytes[:]
|
|
|
|
}
|