-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson.go
83 lines (67 loc) · 1.54 KB
/
json.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
package main
import (
"encoding/json"
"github.com/bxcodec/faker/v3"
"github.com/montanaflynn/stats"
"github.com/pekhota/json-vs-thrift-vs-protobuf/internal/pkg/json-example"
"log"
"time"
)
var jsonData [][]byte
func init() {
jsonInit()
}
func jsonInit() {
jsonData = make([][]byte, 0)
}
func testJsonEncode() float64 {
data := make([]float64, 0)
makeJsonPeople := func(n int) []json_example.JsonPerson {
l := make([]json_example.JsonPerson, 0)
for i := 0; i < n; i++ {
t := time.Now()
l = append(l, json_example.JsonPerson{
Id: int32(i),
Name: faker.Name(),
Email: faker.Email(),
Phones: []json_example.JsonPhoneNumber{
{
Number: faker.Phonenumber(), PhoneType: json_example.HOME,
},
},
LastUpdated: json_example.Timestamp{
Seconds: t.Unix(),
Nanos: int32(t.Nanosecond()),
},
})
}
return l
}
for i := 0; i < InternalIterations; i++ {
book := json_example.JsonAddressBook{}
book.People = append(book.People, makeJsonPeople(NumberOfPersons)...)
out, err := json.Marshal(book)
if err != nil {
log.Fatalln(err)
}
jsonData = append(jsonData, out)
data = append(data, float64(len(out)))
}
m, err := stats.Median(data)
if err != nil {
log.Fatalln(err)
}
return m
//log.Println("Median Json size (in bytes): ", m)
}
func testJsonDecode() float64 {
for i := 0; i < InternalIterations; i++ {
jsonBytes := jsonData[i]
book := json_example.JsonAddressBook{}
err := json.Unmarshal(jsonBytes, &book)
if err != nil {
log.Fatalln(err)
}
}
return 0
}