-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecoder.go
57 lines (50 loc) · 1.37 KB
/
decoder.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package bytestruct
import (
"bytes"
"encoding/hex"
"fmt"
"github.com/HarryWang29/bytestruct/errors"
"github.com/HarryWang29/bytestruct/runtime"
"github.com/HarryWang29/bytestruct/types"
"io"
"reflect"
"unsafe"
)
func (r *ByteStruct) UnmarshalFromBytes(data []byte, v interface{}) error {
return r.Unmarshal(bytes.NewReader(data), v)
}
func (r *ByteStruct) UnmarshalFromHexString(data string, v interface{}) error {
buf, err := hex.DecodeString(data)
if err != nil {
return fmt.Errorf("decode hex string error: %w", err)
}
return r.UnmarshalFromBytes(buf, v)
}
func (r *ByteStruct) Unmarshal(reader io.ReadSeeker, v interface{}) error {
r.s = types.NewReader(reader)
r.s.Option = r.option
header := (*emptyInterface)(unsafe.Pointer(&v))
typ := header.typ
ptr := uintptr(header.ptr)
typeptr := uintptr(unsafe.Pointer(typ))
// noescape trick for header.typ ( reflect.*rtype )
copiedType := *(**runtime.Type)(unsafe.Pointer(&typeptr))
if err := validateType(copiedType, ptr); err != nil {
return err
}
dec, err := types.CompileToGetDecoder(typ)
if err != nil {
return err
}
s := r.s
if err := dec.DecodeStream(s, header.ptr); err != nil {
return err
}
return nil
}
func validateType(typ *runtime.Type, p uintptr) error {
if typ == nil || typ.Kind() != reflect.Ptr || p == 0 {
return &errors.UnmarshalTypeError{Type: runtime.RType2Type(typ)}
}
return nil
}