2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-12-15 10:32:59 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// This benchmark tests JSON encoding and decoding performance.
|
|
|
|
|
|
|
|
package go1
|
|
|
|
|
|
|
|
import (
|
2013-03-04 13:23:37 -07:00
|
|
|
"bytes"
|
2011-12-15 10:32:59 -07:00
|
|
|
"compress/bzip2"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2012-06-04 10:14:39 -06:00
|
|
|
jsonbytes = makeJsonBytes()
|
|
|
|
jsondata = makeJsonData()
|
2011-12-15 10:32:59 -07:00
|
|
|
)
|
|
|
|
|
2012-06-04 10:14:39 -06:00
|
|
|
func makeJsonBytes() []byte {
|
2011-12-15 10:32:59 -07:00
|
|
|
var r io.Reader
|
2013-03-04 13:23:37 -07:00
|
|
|
r = bytes.NewReader(bytes.Replace(jsonbz2_base64, []byte{'\n'}, nil, -1))
|
2011-12-15 10:32:59 -07:00
|
|
|
r = base64.NewDecoder(base64.StdEncoding, r)
|
|
|
|
r = bzip2.NewReader(r)
|
2021-04-03 02:10:47 -06:00
|
|
|
b, err := io.ReadAll(r)
|
2011-12-15 10:32:59 -07:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2012-06-04 10:14:39 -06:00
|
|
|
return b
|
|
|
|
}
|
2011-12-15 10:32:59 -07:00
|
|
|
|
2012-06-04 10:14:39 -06:00
|
|
|
func makeJsonData() JSONResponse {
|
|
|
|
var v JSONResponse
|
|
|
|
if err := json.Unmarshal(jsonbytes, &v); err != nil {
|
2011-12-15 10:32:59 -07:00
|
|
|
panic(err)
|
|
|
|
}
|
2012-06-04 10:14:39 -06:00
|
|
|
return v
|
2011-12-15 10:32:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type JSONResponse struct {
|
|
|
|
Tree *JSONNode `json:"tree"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type JSONNode struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Kids []*JSONNode `json:"kids"`
|
|
|
|
CLWeight float64 `json:"cl_weight"`
|
|
|
|
Touches int `json:"touches"`
|
|
|
|
MinT int64 `json:"min_t"`
|
|
|
|
MaxT int64 `json:"max_t"`
|
|
|
|
MeanT int64 `json:"mean_t"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func jsondec() {
|
|
|
|
var r JSONResponse
|
|
|
|
if err := json.Unmarshal(jsonbytes, &r); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
_ = r
|
|
|
|
}
|
|
|
|
|
|
|
|
func jsonenc() {
|
|
|
|
buf, err := json.Marshal(&jsondata)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
_ = buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkJSONEncode(b *testing.B) {
|
|
|
|
b.SetBytes(int64(len(jsonbytes)))
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
jsonenc()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkJSONDecode(b *testing.B) {
|
|
|
|
b.SetBytes(int64(len(jsonbytes)))
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
jsondec()
|
|
|
|
}
|
|
|
|
}
|