mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
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:
parent
2e59206a1e
commit
572ef44cf2
7 changed files with 356 additions and 279 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue