use GoJay to marshal JSON

GoJay doesn't use reflection to marshal JSON. This allows dramatically
faster encoding, as well as saving a large number of allocations.
This commit is contained in:
Marten Seemann 2020-01-19 19:19:53 +07:00
parent 2e59206a1e
commit 572ef44cf2
7 changed files with 356 additions and 279 deletions

View file

@ -1,8 +1,10 @@
package qlog
import (
"bytes"
"encoding/json"
"github.com/francoispqt/gojay"
"github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/wire"
@ -12,8 +14,10 @@ import (
var _ = Describe("Packet Header", func() {
check := func(hdr *wire.ExtendedHeader, expected map[string]interface{}) {
data, err := json.Marshal(transformHeader(hdr))
ExpectWithOffset(1, err).ToNot(HaveOccurred())
buf := &bytes.Buffer{}
enc := gojay.NewEncoder(buf)
ExpectWithOffset(1, enc.Encode(transformHeader(hdr))).To(Succeed())
data := buf.Bytes()
ExpectWithOffset(1, json.Valid(data)).To(BeTrue())
checkEncoding(data, expected)
}