|
|
@ -5,494 +5,118 @@ import ( |
|
|
|
"io" |
|
|
|
) |
|
|
|
|
|
|
|
type Byte byte |
|
|
|
type Int8 int8 |
|
|
|
type UInt8 uint8 |
|
|
|
type Int16 int16 |
|
|
|
type UInt16 uint16 |
|
|
|
type Int32 int32 |
|
|
|
type UInt32 uint32 |
|
|
|
type Int64 int64 |
|
|
|
type UInt64 uint64 |
|
|
|
type Int int |
|
|
|
type UInt uint |
|
|
|
|
|
|
|
// Byte
|
|
|
|
|
|
|
|
func (self Byte) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self Byte) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(Byte); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self Byte) ByteSize() int { |
|
|
|
return 1 |
|
|
|
} |
|
|
|
|
|
|
|
func (self Byte) WriteTo(w io.Writer) (int64, error) { |
|
|
|
n, err := w.Write([]byte{byte(self)}) |
|
|
|
return int64(n), err |
|
|
|
func WriteByte(w io.Writer, b byte, n *int64, err *error) { |
|
|
|
WriteTo(w, []byte{b}, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func ReadByteSafe(r io.Reader) (Byte, int64, error) { |
|
|
|
buf := [1]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return 0, int64(n), err |
|
|
|
} |
|
|
|
return Byte(buf[0]), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadByteN(r io.Reader) (Byte, int64) { |
|
|
|
b, n, err := ReadByteSafe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadByte(r io.Reader) Byte { |
|
|
|
b, _, err := ReadByteSafe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readbyte(r io.Reader) byte { |
|
|
|
return byte(ReadByte(r)) |
|
|
|
func ReadByte(r io.Reader, n *int64, err *error) byte { |
|
|
|
buf := make([]byte, 1) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return buf[0] |
|
|
|
} |
|
|
|
|
|
|
|
// Int8
|
|
|
|
|
|
|
|
func (self Int8) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int8) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(Int8); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int8) ByteSize() int { |
|
|
|
return 1 |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int8) WriteTo(w io.Writer) (int64, error) { |
|
|
|
n, err := w.Write([]byte{byte(self)}) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt8Safe(r io.Reader) (Int8, int64, error) { |
|
|
|
buf := [1]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return Int8(0), int64(n), err |
|
|
|
} |
|
|
|
return Int8(buf[0]), int64(n), nil |
|
|
|
func WriteInt8(w io.Writer, i int8, n *int64, err *error) { |
|
|
|
WriteByte(w, byte(i), n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt8N(r io.Reader) (Int8, int64) { |
|
|
|
b, n, err := ReadInt8Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt8(r io.Reader) Int8 { |
|
|
|
b, _, err := ReadInt8Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readint8(r io.Reader) int8 { |
|
|
|
return int8(ReadInt8(r)) |
|
|
|
func ReadInt8(r io.Reader, n *int64, err *error) int8 { |
|
|
|
return int8(ReadByte(r, n, err)) |
|
|
|
} |
|
|
|
|
|
|
|
// UInt8
|
|
|
|
|
|
|
|
func (self UInt8) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
func WriteUInt8(w io.Writer, i uint8, n *int64, err *error) { |
|
|
|
WriteByte(w, byte(i), n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt8) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(UInt8); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt8) ByteSize() int { |
|
|
|
return 1 |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt8) WriteTo(w io.Writer) (int64, error) { |
|
|
|
n, err := w.Write([]byte{byte(self)}) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt8Safe(r io.Reader) (UInt8, int64, error) { |
|
|
|
buf := [1]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return UInt8(0), int64(n), err |
|
|
|
} |
|
|
|
return UInt8(buf[0]), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt8N(r io.Reader) (UInt8, int64) { |
|
|
|
b, n, err := ReadUInt8Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt8(r io.Reader) UInt8 { |
|
|
|
b, _, err := ReadUInt8Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readuint8(r io.Reader) uint8 { |
|
|
|
return uint8(ReadUInt8(r)) |
|
|
|
func ReadUInt8(r io.Reader, n *int64, err *error) uint8 { |
|
|
|
return uint8(ReadByte(r, n, err)) |
|
|
|
} |
|
|
|
|
|
|
|
// Int16
|
|
|
|
|
|
|
|
func (self Int16) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int16) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(Int16); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
func WriteInt16(w io.Writer, i int16, n *int64, err *error) { |
|
|
|
buf := make([]byte, 2) |
|
|
|
binary.LittleEndian.PutUint16(buf, uint16(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int16) ByteSize() int { |
|
|
|
return 2 |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int16) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0} |
|
|
|
binary.LittleEndian.PutUint16(buf, uint16(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt16Safe(r io.Reader) (Int16, int64, error) { |
|
|
|
buf := [2]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return Int16(0), int64(n), err |
|
|
|
} |
|
|
|
return Int16(binary.LittleEndian.Uint16(buf[:])), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt16N(r io.Reader) (Int16, int64) { |
|
|
|
b, n, err := ReadInt16Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt16(r io.Reader) Int16 { |
|
|
|
b, _, err := ReadInt16Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readint16(r io.Reader) int16 { |
|
|
|
return int16(ReadInt16(r)) |
|
|
|
func ReadInt16(r io.Reader, n *int64, err *error) int16 { |
|
|
|
buf := make([]byte, 2) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return int16(binary.LittleEndian.Uint16(buf)) |
|
|
|
} |
|
|
|
|
|
|
|
// UInt16
|
|
|
|
|
|
|
|
func (self UInt16) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt16) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(UInt16); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt16) ByteSize() int { |
|
|
|
return 2 |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt16) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0} |
|
|
|
binary.LittleEndian.PutUint16(buf, uint16(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
func WriteUInt16(w io.Writer, i uint16, n *int64, err *error) { |
|
|
|
buf := make([]byte, 2) |
|
|
|
binary.LittleEndian.PutUint16(buf, uint16(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt16Safe(r io.Reader) (UInt16, int64, error) { |
|
|
|
buf := [2]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return UInt16(0), int64(n), err |
|
|
|
} |
|
|
|
return UInt16(binary.LittleEndian.Uint16(buf[:])), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt16N(r io.Reader) (UInt16, int64) { |
|
|
|
b, n, err := ReadUInt16Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt16(r io.Reader) UInt16 { |
|
|
|
b, _, err := ReadUInt16Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readuint16(r io.Reader) uint16 { |
|
|
|
return uint16(ReadUInt16(r)) |
|
|
|
func ReadUInt16(r io.Reader, n *int64, err *error) uint16 { |
|
|
|
buf := make([]byte, 2) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return uint16(binary.LittleEndian.Uint16(buf)) |
|
|
|
} |
|
|
|
|
|
|
|
// Int32
|
|
|
|
|
|
|
|
func (self Int32) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int32) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(Int32); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int32) ByteSize() int { |
|
|
|
return 4 |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int32) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0, 0, 0} |
|
|
|
binary.LittleEndian.PutUint32(buf, uint32(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt32Safe(r io.Reader) (Int32, int64, error) { |
|
|
|
buf := [4]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return Int32(0), int64(n), err |
|
|
|
} |
|
|
|
return Int32(binary.LittleEndian.Uint32(buf[:])), int64(n), nil |
|
|
|
func WriteInt32(w io.Writer, i int32, n *int64, err *error) { |
|
|
|
buf := make([]byte, 4) |
|
|
|
binary.LittleEndian.PutUint32(buf, uint32(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt32N(r io.Reader) (Int32, int64) { |
|
|
|
b, n, err := ReadInt32Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt32(r io.Reader) Int32 { |
|
|
|
b, _, err := ReadInt32Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readint32(r io.Reader) int32 { |
|
|
|
return int32(ReadInt32(r)) |
|
|
|
func ReadInt32(r io.Reader, n *int64, err *error) int32 { |
|
|
|
buf := make([]byte, 4) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return int32(binary.LittleEndian.Uint32(buf)) |
|
|
|
} |
|
|
|
|
|
|
|
// UInt32
|
|
|
|
|
|
|
|
func (self UInt32) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt32) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(UInt32); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt32) ByteSize() int { |
|
|
|
return 4 |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt32) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0, 0, 0} |
|
|
|
binary.LittleEndian.PutUint32(buf, uint32(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt32Safe(r io.Reader) (UInt32, int64, error) { |
|
|
|
buf := [4]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return UInt32(0), int64(n), err |
|
|
|
} |
|
|
|
return UInt32(binary.LittleEndian.Uint32(buf[:])), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt32N(r io.Reader) (UInt32, int64) { |
|
|
|
b, n, err := ReadUInt32Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt32(r io.Reader) UInt32 { |
|
|
|
b, _, err := ReadUInt32Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
func WriteUInt32(w io.Writer, i uint32, n *int64, err *error) { |
|
|
|
buf := make([]byte, 4) |
|
|
|
binary.LittleEndian.PutUint32(buf, uint32(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func Readuint32(r io.Reader) uint32 { |
|
|
|
return uint32(ReadUInt32(r)) |
|
|
|
func ReadUInt32(r io.Reader, n *int64, err *error) uint32 { |
|
|
|
buf := make([]byte, 4) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return uint32(binary.LittleEndian.Uint32(buf)) |
|
|
|
} |
|
|
|
|
|
|
|
// Int64
|
|
|
|
|
|
|
|
func (self Int64) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int64) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(Int64); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int64) ByteSize() int { |
|
|
|
return 8 |
|
|
|
func WriteInt64(w io.Writer, i int64, n *int64, err *error) { |
|
|
|
buf := make([]byte, 8) |
|
|
|
binary.LittleEndian.PutUint64(buf, uint64(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func (self Int64) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0, 0, 0, 0, 0, 0, 0} |
|
|
|
binary.LittleEndian.PutUint64(buf, uint64(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt64Safe(r io.Reader) (Int64, int64, error) { |
|
|
|
buf := [8]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return Int64(0), int64(n), err |
|
|
|
} |
|
|
|
return Int64(binary.LittleEndian.Uint64(buf[:])), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt64N(r io.Reader) (Int64, int64) { |
|
|
|
b, n, err := ReadInt64Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadInt64(r io.Reader) Int64 { |
|
|
|
b, _, err := ReadInt64Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
} |
|
|
|
|
|
|
|
func Readint64(r io.Reader) int64 { |
|
|
|
return int64(ReadInt64(r)) |
|
|
|
func ReadInt64(r io.Reader, n *int64, err *error) int64 { |
|
|
|
buf := make([]byte, 8) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return int64(binary.LittleEndian.Uint64(buf)) |
|
|
|
} |
|
|
|
|
|
|
|
// UInt64
|
|
|
|
|
|
|
|
func (self UInt64) Equals(other interface{}) bool { |
|
|
|
return self == other |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt64) Less(other interface{}) bool { |
|
|
|
if o, ok := other.(UInt64); ok { |
|
|
|
return self < o |
|
|
|
} else { |
|
|
|
panic("Cannot compare unequal types") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt64) ByteSize() int { |
|
|
|
return 8 |
|
|
|
} |
|
|
|
|
|
|
|
func (self UInt64) WriteTo(w io.Writer) (int64, error) { |
|
|
|
buf := []byte{0, 0, 0, 0, 0, 0, 0, 0} |
|
|
|
binary.LittleEndian.PutUint64(buf, uint64(self)) |
|
|
|
n, err := w.Write(buf) |
|
|
|
return int64(n), err |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt64Safe(r io.Reader) (UInt64, int64, error) { |
|
|
|
buf := [8]byte{0} |
|
|
|
n, err := io.ReadFull(r, buf[:]) |
|
|
|
if err != nil { |
|
|
|
return UInt64(0), int64(n), err |
|
|
|
} |
|
|
|
return UInt64(binary.LittleEndian.Uint64(buf[:])), int64(n), nil |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt64N(r io.Reader) (UInt64, int64) { |
|
|
|
b, n, err := ReadUInt64Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b, n |
|
|
|
} |
|
|
|
|
|
|
|
func ReadUInt64(r io.Reader) UInt64 { |
|
|
|
b, _, err := ReadUInt64Safe(r) |
|
|
|
if err != nil { |
|
|
|
panic(err) |
|
|
|
} |
|
|
|
return b |
|
|
|
func WriteUInt64(w io.Writer, i uint64, n *int64, err *error) { |
|
|
|
buf := make([]byte, 8) |
|
|
|
binary.LittleEndian.PutUint64(buf, uint64(i)) |
|
|
|
WriteTo(w, buf, n, err) |
|
|
|
} |
|
|
|
|
|
|
|
func Readuint64(r io.Reader) uint64 { |
|
|
|
return uint64(ReadUInt64(r)) |
|
|
|
func ReadUInt64(r io.Reader, n *int64, err *error) uint64 { |
|
|
|
buf := make([]byte, 8) |
|
|
|
ReadFull(r, buf, n, err) |
|
|
|
return uint64(binary.LittleEndian.Uint64(buf)) |
|
|
|
} |