Exemplo n.º 1
0
func NewEncoder2(w io.WriteSeeker, order ByteOrder2, intNbytes int) Encoder {
	var (
		s   *stream.Stream
		ref bool
	)
	if w == nil {
		ref = true
	} else if s, ref = w.(*stream.Stream); !ref {
		s = stream.NewStream(0)
	}
	return &encoder{
		w:     w,
		s:     s,
		ref:   ref,
		order: order,
		intNs: intNbytes,
	}
}
Exemplo n.º 2
0
func NewDecoder2(r io.ReadSeeker, order ByteOrder2, intNbytes int) Decoder {
	var (
		s   *stream.Stream
		ref bool
	)
	if r == nil {
		ref = true
	} else if s, ref = r.(*stream.Stream); !ref {
		s = stream.NewStream(0)
	}
	return &decoder{
		r:     r,
		s:     s,
		ref:   ref,
		order: order,
		intNs: intNbytes,
	}
}
Exemplo n.º 3
0
func (this *encoder) Reset(w io.WriteSeeker) {
	o := this.w
	this.w = w
	this.err = nil

	if !this.ref {
		this.s.SetSize(0)
		return
	}
	if o == w {
		return
	}

	s, ref := w.(*stream.Stream)
	if !ref {
		s = stream.NewStream(0)
	}
	this.s = s
	this.ref = ref
}
Exemplo n.º 4
0
func (this *decoder) Reset(r io.ReadSeeker) {
	o := this.r
	this.r = r
	this.err = nil

	if !this.ref {
		this.s.SetSize(0)
		return
	}
	if o == r {
		return
	}

	s, ref := r.(*stream.Stream)
	if !ref {
		s = stream.NewStream(0)
	}
	this.s = s
	this.ref = ref
}
Exemplo n.º 5
0
package binutil_test

import (
	"fmt"
	"github.com/princeofdatamining/golib/binutil"
	"github.com/princeofdatamining/golib/stream"
	"reflect"
	"testing"
)

type point struct {
	X, Y int
}

var (
	pA = point{0, 0}
	pB = point{800, 0}
	pC = point{800, 600}
	pD = point{0, 600}
)

type datatype struct {
	Yes    bool
	No     bool
	Int8   int8
	Int16  int16
	Int32  int32
	Int64  int64
	Byte   byte
	Word   uint16
	Long   uint32
	Quad   uint64
	Int    int
	Uint   uint
	Float  float32
	Double float64
	Text   string
	Array  [4]point
	Points []point
}

var data = &datatype{
	Yes:    true,
	Int8:   -1,
	Int16:  -26368,
	Int32:  -2004348655,
	Int64:  -6148895925951734307,
	Byte:   0xFF,               // 255
	Word:   0x9900,             // 39168
	Long:   0x88881111,         // 2290618641
	Quad:   0xAAAABBBBCCCCDDDD, // 12297848147757817309
	Int:    -65536,
	Uint:   0xFFFF0000, // 4294901760
	Float:  1.0 / 9,
	Double: 1.0 / 9,
	Text:   "你好",
	Array:  [4]point{pA, pB, pC, pD},
	Points: []point{pA, pC},
}
var (
	out_le_4 = []byte{
		1, 0, // 0 +2
		0xFF, 0x00, 0x99, 0x11, 0x11, 0x88, 0x88, 0xDD, 0xDD, 0xCC, 0xCC, 0xBB, 0xBB, 0xAA, 0xAA, // 2 +15
		0xFF, 0x00, 0x99, 0x11, 0x11, 0x88, 0x88, 0xDD, 0xDD, 0xCC, 0xCC, 0xBB, 0xBB, 0xAA, 0xAA, // 17+15
		0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, // 32+8
		0x39, 0x8E, 0xE3, 0x3D, 0x1C, 0xC7, 0x71, 0x1C, 0xC7, 0x71, 0xBC, 0x3F, // 40+12
		6, 0, 0, 0, 0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD, // 52+4+6
		0x00, 0x00, 0, 0, 0x00, 0x00, 0, 0, 0x20, 0x03, 0, 0, 0x00, 0x00, 0, 0, // 62+16
		0x20, 0x03, 0, 0, 0x58, 0x02, 0, 0, 0x00, 0x00, 0, 0, 0x58, 0x02, 0, 0, // 78+16
		2, 0, 0, 0, // 94+4
		0x00, 0x00, 0, 0, 0x00, 0x00, 0, 0, 0x20, 0x03, 0, 0, 0x58, 0x02, 0, 0, // 98+16
	}
	out_be_4 = []byte{
		1, 0, // 0 +2
		0xFF, 0x99, 0x00, 0x88, 0x88, 0x11, 0x11, 0xAA, 0xAA, 0xBB, 0xBB, 0xCC, 0xCC, 0xDD, 0xDD, // 2 +15
		0xFF, 0x99, 0x00, 0x88, 0x88, 0x11, 0x11, 0xAA, 0xAA, 0xBB, 0xBB, 0xCC, 0xCC, 0xDD, 0xDD, // 17+15
		0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, // 32+8
		0x3D, 0xE3, 0x8E, 0x39, 0x3F, 0xBC, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, // 40+12
		0, 0, 0, 6, 0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD, // 52+4+6
		0, 0, 0x00, 0x00, 0, 0, 0x00, 0x00, 0, 0, 0x03, 0x20, 0, 0, 0x00, 0x00, // 62+16
		0, 0, 0x03, 0x20, 0, 0, 0x02, 0x58, 0, 0, 0x00, 0x00, 0, 0, 0x02, 0x58, // 78+16
		0, 0, 0, 2, // 94+4
		0, 0, 0x00, 0x00, 0, 0, 0x00, 0x00, 0, 0, 0x03, 0x20, 0, 0, 0x02, 0x58, // 98+16
	}
	out_le_8 = []byte{
		1, 0, // 0 +2
		0xFF, 0x00, 0x99, 0x11, 0x11, 0x88, 0x88, 0xDD, 0xDD, 0xCC, 0xCC, 0xBB, 0xBB, 0xAA, 0xAA, // 2 +15
		0xFF, 0x00, 0x99, 0x11, 0x11, 0x88, 0x88, 0xDD, 0xDD, 0xCC, 0xCC, 0xBB, 0xBB, 0xAA, 0xAA, // 17+15
		0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, // 32+16
		0x39, 0x8E, 0xE3, 0x3D, 0x1C, 0xC7, 0x71, 0x1C, 0xC7, 0x71, 0xBC, 0x3F, // 48+12
		6, 0, 0, 0, 0, 0, 0, 0, 0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD, // 60+8+6
		0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, // 74+16
		0x20, 0x03, 0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, // 90+16
		0x20, 0x03, 0, 0, 0, 0, 0, 0, 0x58, 0x02, 0, 0, 0, 0, 0, 0, //106+16
		0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x58, 0x02, 0, 0, 0, 0, 0, 0, //122+16
		2, 0, 0, 0, 0, 0, 0, 0, //138+8
		0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, //146+16
		0x20, 0x03, 0, 0, 0, 0, 0, 0, 0x58, 0x02, 0, 0, 0, 0, 0, 0, //162+16
	}
	out_be_8 = []byte{
		1, 0, // 0 +2
		0xFF, 0x99, 0x00, 0x88, 0x88, 0x11, 0x11, 0xAA, 0xAA, 0xBB, 0xBB, 0xCC, 0xCC, 0xDD, 0xDD, // 2 +15
		0xFF, 0x99, 0x00, 0x88, 0x88, 0x11, 0x11, 0xAA, 0xAA, 0xBB, 0xBB, 0xCC, 0xCC, 0xDD, 0xDD, // 17+15
		0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, // 32+16
		0x3D, 0xE3, 0x8E, 0x39, 0x3F, 0xBC, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, // 48+12
		0, 0, 0, 0, 0, 0, 0, 6, 0xE4, 0xBD, 0xA0, 0xE5, 0xA5, 0xBD, // 60+8+6
		0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x00, 0x00, // 74+16
		0, 0, 0, 0, 0, 0, 0x03, 0x20, 0, 0, 0, 0, 0, 0, 0x00, 0x00, // 90+16
		0, 0, 0, 0, 0, 0, 0x03, 0x20, 0, 0, 0, 0, 0, 0, 0x02, 0x58, //106+16
		0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x02, 0x58, //122+16
		0, 0, 0, 0, 0, 0, 0, 2, //138+8
		0, 0, 0, 0, 0, 0, 0x00, 0x00, 0, 0, 0, 0, 0, 0, 0x00, 0x00, //146+16
		0, 0, 0, 0, 0, 0, 0x03, 0x20, 0, 0, 0, 0, 0, 0, 0x02, 0x58, //162+16
	}
)

type marshalTestData struct {
	data    *datatype
	order   binutil.ByteOrder2
	intNs   int
	outsize int
	out     []byte
}

var marshalTests = []*marshalTestData{
	{data, binutil.Fixed, 4, 114, out_le_4},
	{data, binutil.FixedBE, 4, 114, out_be_4},
	{data, binutil.Fixed, 8, 178, out_le_8},
	{data, binutil.FixedBE, 8, 178, out_be_8},
}

func testMarshal(t *testing.T, s *stream.Stream, in *marshalTestData) {
	var dummy = &datatype{}
	var n int
	var err error

	// println("*** encoding ***")
	s.SetSize(0)
	w := binutil.NewEncoder2(s, in.order, in.intNs)
	hint := w.String()
	n, err = w.Write(in.data)
	if err != nil {
		t.Errorf("encode(%s) error: %v\n", hint, err)
	}
	if n != in.outsize {
		t.Errorf("encode(%s) size must %v, but got %v\n", hint, in.outsize, n)
	}
	n = len(in.out)
	if n != in.outsize {
		t.Errorf("encode(%s) len(test) must %v, but got %v\n", hint, in.outsize, n)
	}
	b := s.Buf()
	n = len(b)
	if n != in.outsize {
		t.Errorf("encode(%s) len(dump) must %v, but got %v\n", hint, in.outsize, n)
	}
	for i, v := range in.out {
		if v != b[i] {
			t.Fatalf("marshal(%s) out[%v] must %2X, but got %2X\n", hint, i, v, b[i])
		}
	}
	//*
	// println("*** decoding ***")
	s.Seek(0, 0)
	r := binutil.NewDecoder2(s, in.order, in.intNs)
	n, err = r.Read(dummy)
	if err != nil {
		t.Errorf("decode(%s) error: %v\n", hint, err)
	}
	if n != in.outsize {
		t.Errorf("decode(%s) size must %v, but got %v\n", hint, in.outsize, n)
	}
	if !DeepEqual(in.data, dummy) {
		t.Fatalf("decode(%s) DeepEqual false\n", hint)
	}
	//*/
}

//*
func DeepEqual(a, b interface{}) bool {
	x := reflect.ValueOf(a)
	y := reflect.ValueOf(b)
	return deepequal("", x, y)
}
func deepequal(prop string, x, y reflect.Value) (ok bool) {
	x = reflect.Indirect(x)
	y = reflect.Indirect(y)
	m, n := x.Type(), y.Type()
	if m != n {
		fmt.Printf("%s: Type() %s != %s\n", prop, m.String(), n.String())
		return
	}
	switch x.Kind() {
	case reflect.Struct:
		m, n := x.NumField(), y.NumField()
		if m != n {
			fmt.Printf("%s: NumField() %v != %v\n", prop, m, n)
			return
		}
		for i := 0; i < n; i++ {
			if !deepequal(fmt.Sprintf("%sstruct[%d] ", prop, i), x.Field(i), y.Field(i)) {
				return
			}
		}
	case reflect.Array:
		m, n := x.Len(), y.Len()
		if m != n {
			fmt.Printf("%s: Len() %v != %v\n", prop, m, n)
			return
		}
		for i := 0; i < n; i++ {
			if !deepequal(fmt.Sprintf("%sarray[%d] ", prop, i), x.Index(i), y.Index(i)) {
				return
			}
		}
	case reflect.Slice:
		if m, n := x.IsNil(), y.IsNil(); m != n {
			fmt.Printf("%s: IsNil() %v != %v\n", prop, m, n)
			return
		}
		m, n := x.Len(), y.Len()
		if m != n {
			fmt.Printf("%s: Len() %v != %v\n", prop, m, n)
			return
		}
		for i := 0; i < n; i++ {
			if !deepequal(fmt.Sprintf("%sslice[%d] ", prop, i), x.Index(i), y.Index(i)) {
				return
			}
		}
	default:
		if x.Interface() != y.Interface() {
			fmt.Printf("%s: Interface() not equal\n", prop)
			return
		}
	}
	return true
}

//*/
func TestMarshal(t *testing.T) {
	s := stream.NewStream(0)
	for _, in := range marshalTests {
		testMarshal(t, s, in)
	}
}
		0x50, 0xFC, 0xFD, 0xFF, 0xFF, 0x0F, // 36+6  uint32:varint
		0x58, 0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, // 42+11 uint64:varint
		0x65, 0xFC, 0xFE, 0xFF, 0xFF, // 53+5  fixed32:fixed32
		0x69, 0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, // 58+9  fixed64:fixed64
		0xA5, 0x01, 0x39, 0x8E, 0xE3, 0x3D, // 67+6  float:fixed32
		0xA9, 0x01, 0x1C, 0xC7, 0x71, 0x1C, 0xC7, 0x71, 0xBC, 0x3F, // 73+10 double:fixed64
		0xF0, 0x01, 0x01, // 83+3  bool:varint
		0xFA, 0x01, 0x03, 0x31, 0x32, 0x33, // 86+6  string
		0x80, 0x02, 0x1E, // 92+3  enum:varint
		0xC2, 0x02, 0x06, 0x08, 0xFF, 0x03, 0x10, 0xFF, 0x11, // 95+9  message
		0xC2, 0x02, 0x06, 0x08, 0xFF, 0x11, 0x10, 0xFF, 0x03, //104+9  message
	}
)
var (
	rd   = stream.NewStreamFrom(pb_data)
	wr   = stream.NewStream(0)
	dm   = stream.NewStream(0)
	comp = new(pbDoor)
)

type pbPos struct {
	X, Y int32
}
type pbDoor struct {
	I32, S32, D32 int32
	I64, S64, D64 int64
	U32, X32      uint32
	U64, X64      uint64
	F32           float32
	F64           float64
	B             bool
Exemplo n.º 7
0
func TestByteOrder(t *testing.T) {
	s := stream.NewStream(0)
	for _, in := range byteorderSamples {
		testByteOrder(t, s, in)
	}
}