-
Notifications
You must be signed in to change notification settings - Fork 1
/
unmarshal_fastpath.go
142 lines (105 loc) · 3.17 KB
/
unmarshal_fastpath.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package protoenc
import (
"errors"
"math"
"reflect"
"unsafe"
"google.golang.org/protobuf/encoding/protowire"
)
var predefiniedDecoders = map[reflect.Type]func(buf []byte, dst reflect.Value) (bool, error){
typeOf[[]int](): decodeIntSlice[int],
typeOf[[]int32](): decodeIntSlice[int32],
typeOf[[]int64](): decodeIntSlice[int64],
typeOf[[]uint](): decodeIntSlice[uint],
typeOf[[]uint32](): decodeIntSlice[uint32],
typeOf[[]uint64](): decodeIntSlice[uint64],
typeOf[[]FixedU32](): decodeFixed32[FixedU32],
typeOf[[]FixedS32](): decodeFixed32[FixedS32],
typeOf[[]FixedU64](): decodeFixed64[FixedU64],
typeOf[[]FixedS64](): decodeFixed64[FixedS64],
typeOf[[]float32](): decodeFloat32,
typeOf[[]float64](): decodeFloat64,
}
func tryUnmarshalPredefinedSliceTypes(wiretype protowire.Type, buf []byte, dst reflect.Value) (bool, error) {
switch wiretype { //nolint:exhaustive
case protowire.VarintType, protowire.Fixed32Type, protowire.Fixed64Type:
fn, ok := predefiniedDecoders[dst.Type()]
if !ok {
return false, nil
}
return fn(buf, dst)
default:
return false, nil
}
}
type integer interface {
int32 | int64 | uint32 | uint64 | int | uint
}
func decodeIntSlice[I integer](buf []byte, dst reflect.Value) (bool, error) {
var result []I
for len(buf) > 0 {
v, n := protowire.ConsumeVarint(buf)
if n < 0 {
return false, errors.New("bad protobuf varint value")
}
buf = buf[n:]
result = append(result, I(v))
}
*(*[]I)(unsafe.Pointer(dst.UnsafeAddr())) = result
return true, nil
}
func decodeFixed32[F FixedU32 | FixedS32](buf []byte, dst reflect.Value) (bool, error) {
var result []F
for len(buf) > 0 {
v, n := protowire.ConsumeFixed32(buf)
if n < 0 {
return false, errors.New("bad protobuf 32-bit value")
}
buf = buf[n:]
result = append(result, F(v))
}
*(*[]F)(unsafe.Pointer(dst.UnsafeAddr())) = result
return true, nil
}
func decodeFixed64[F FixedU64 | FixedS64](buf []byte, dst reflect.Value) (bool, error) {
var result []F
for len(buf) > 0 {
v, n := protowire.ConsumeFixed64(buf)
if n < 0 {
return false, errors.New("bad protobuf 64-bit value")
}
buf = buf[n:]
result = append(result, F(v))
}
*(*[]F)(unsafe.Pointer(dst.UnsafeAddr())) = result
return true, nil
}
func decodeFloat32(buf []byte, dst reflect.Value) (bool, error) {
var result []float32
for len(buf) > 0 {
v, n := protowire.ConsumeFixed32(buf)
if n < 0 {
return false, errors.New("bad protobuf 32-bit value")
}
buf = buf[n:]
result = append(result, math.Float32frombits(v))
}
*(*[]float32)(unsafe.Pointer(dst.UnsafeAddr())) = result
return true, nil
}
func decodeFloat64(buf []byte, dst reflect.Value) (bool, error) {
var result []float64
for len(buf) > 0 {
v, n := protowire.ConsumeFixed64(buf)
if n < 0 {
return false, errors.New("bad protobuf 64-bit value")
}
buf = buf[n:]
result = append(result, math.Float64frombits(v))
}
*(*[]float64)(unsafe.Pointer(dst.UnsafeAddr())) = result
return true, nil
}