-
Notifications
You must be signed in to change notification settings - Fork 32
/
bench_test.go
258 lines (236 loc) · 5.5 KB
/
bench_test.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package fixedwidth
import (
"bytes"
"testing"
)
type mixedData struct {
F1 string `fixed:"1,10"`
F2 *string `fixed:"11,20"`
F3 int64 `fixed:"21,30"`
F4 *int64 `fixed:"31,40"`
F5 int32 `fixed:"41,50"`
F6 *int32 `fixed:"51,60"`
F7 int16 `fixed:"61,70"`
F8 *int16 `fixed:"71,80"`
F9 int8 `fixed:"81,90"`
F10 *int8 `fixed:"91,100"`
F11 float64 `fixed:"101,110"`
F12 *float64 `fixed:"111,120"`
F13 float32 `fixed:"121,130"`
F14 bool `fixed:"131,140"`
F15 bool `fixed:"141,150"`
//F14 *float32 `fixed:"131,140"`
}
var mixedDataInstance = mixedData{"foo", stringp("foo"), 42, int64p(42), 42, int32p(42), 42, int16p(42), 42, int8p(42), 4.2, float64p(4.2), 4.2, false, true} //,float32p(4.2)}
func BenchmarkUnmarshal_MixedData_1(b *testing.B) {
data := []byte(` foo foo 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2 false t`)
var v mixedData
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkUnmarshal_MixedData_1000(b *testing.B) {
data := bytes.Repeat([]byte(` foo foo 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2 false t`+"\n"), 100)
var v []mixedData
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkUnmarshal_MixedData_100000(b *testing.B) {
data := bytes.Repeat([]byte(` foo foo 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2 false t`+"\n"), 10000)
var v []mixedData
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkDecode_CodePoints_MixedData_1_Ascii(b *testing.B) {
data := []byte(` foo foo 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2 false t`)
var v mixedData
for i := 0; i < b.N; i++ {
d := NewDecoder(bytes.NewReader(data))
d.SetUseCodepointIndices(true)
_ = d.Decode(&v)
}
}
func BenchmarkDecode_CodePoints_MixedData_1_UTF8(b *testing.B) {
data := []byte(` f☃☃ f☃☃ 42 42 42 42 42 42 42 42 4.2 4.2 4.2 4.2 false t`)
var v mixedData
for i := 0; i < b.N; i++ {
d := NewDecoder(bytes.NewReader(data))
d.SetUseCodepointIndices(true)
_ = d.Decode(&v)
}
}
func BenchmarkUnmarshal_String(b *testing.B) {
data := []byte(`foo `)
var v struct {
F1 string `fixed:"1,10"`
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkUnmarshal_StringPtr(b *testing.B) {
data := []byte(`foo `)
var v struct {
F1 *string `fixed:"1,10"`
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkUnmarshal_Int64(b *testing.B) {
data := []byte(`42 `)
var v struct {
F1 int64 `fixed:"1,10"`
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkUnmarshal_Float64(b *testing.B) {
data := []byte(`4.2 `)
var v struct {
F1 float64 `fixed:"1,10"`
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = Unmarshal(data, &v)
}
}
func BenchmarkMarshal_MixedData_1(b *testing.B) {
for i := 0; i < b.N; i++ {
Marshal(mixedDataInstance)
}
}
func BenchmarkMarshal_MixedData_1000(b *testing.B) {
v := make([]mixedData, 1000)
for i := range v {
v[i] = mixedDataInstance
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkMarshal_MixedData_100000(b *testing.B) {
v := make([]mixedData, 100000)
for i := range v {
v[i] = mixedDataInstance
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkEncode_CodePoints_MixedData_1_Ascii(b *testing.B) {
v := mixedData{
F1: "foo",
F2: stringp("foo"),
F3: 42,
F4: int64p(42),
F5: 42,
F6: int32p(42),
F7: 42,
F8: int16p(42),
F9: 42,
F10: int8p(8),
F11: 42,
F12: float64p(42),
F13: 42,
F14: false,
F15: true,
}
for i := 0; i < b.N; i++ {
buff := new(bytes.Buffer)
d := NewEncoder(buff)
d.SetUseCodepointIndices(true)
_ = d.Encode(v)
}
}
func BenchmarkEncode_CodePoints_MixedData_1_UTF8(b *testing.B) {
v := mixedData{
F1: "f☃☃",
F2: stringp("f☃☃"),
F3: 42,
F4: int64p(42),
F5: 42,
F6: int32p(42),
F7: 42,
F8: int16p(42),
F9: 42,
F10: int8p(8),
F11: 42,
F12: float64p(42),
F13: 42,
F14: false,
F15: true,
}
for i := 0; i < b.N; i++ {
buff := new(bytes.Buffer)
d := NewEncoder(buff)
d.SetUseCodepointIndices(true)
_ = d.Encode(v)
}
}
func BenchmarkMarshal_String(b *testing.B) {
v := struct {
F1 string `fixed:"1,10"`
}{
F1: "foo",
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkMarshal_StringPtr(b *testing.B) {
v := struct {
F1 *string `fixed:"1,10"`
}{
F1: stringp("foo"),
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkMarshal_Int64(b *testing.B) {
v := struct {
F1 int64 `fixed:"1,10"`
}{
F1: 42,
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkMarshal_Float64(b *testing.B) {
v := struct {
F1 float64 `fixed:"1,10"`
}{
F1: 4.2,
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}
func BenchmarkMarshal_Bool(b *testing.B) {
v := struct {
F1 bool `fixed:"1,10"`
}{
F1: false,
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Marshal(v)
}
}