mirror of https://github.com/go-gitea/gitea.git
Drop json-iterator dependency (#35544)
parent
fbe80e6df2
commit
0f668145e9
@ -0,0 +1,35 @@
|
|||||||
|
// Copyright 2025 The Gitea Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package json
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/goccy/go-json"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ Interface = jsonGoccy{}
|
||||||
|
|
||||||
|
type jsonGoccy struct{}
|
||||||
|
|
||||||
|
func (jsonGoccy) Marshal(v any) ([]byte, error) {
|
||||||
|
return json.Marshal(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonGoccy) Unmarshal(data []byte, v any) error {
|
||||||
|
return json.Unmarshal(data, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonGoccy) NewEncoder(writer io.Writer) Encoder {
|
||||||
|
return json.NewEncoder(writer)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonGoccy) NewDecoder(reader io.Reader) Decoder {
|
||||||
|
return json.NewDecoder(reader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonGoccy) Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
|
||||||
|
return json.Indent(dst, src, prefix, indent)
|
||||||
|
}
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
// Copyright 2025 The Gitea Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package json
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/json" //nolint:depguard // this package wraps it
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
type jsonV1 struct{}
|
||||||
|
|
||||||
|
var _ Interface = jsonV1{}
|
||||||
|
|
||||||
|
func (jsonV1) Marshal(v any) ([]byte, error) {
|
||||||
|
return json.Marshal(v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonV1) Unmarshal(data []byte, v any) error {
|
||||||
|
return json.Unmarshal(data, v)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonV1) NewEncoder(writer io.Writer) Encoder {
|
||||||
|
return json.NewEncoder(writer)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonV1) NewDecoder(reader io.Reader) Decoder {
|
||||||
|
return json.NewDecoder(reader)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (jsonV1) Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
|
||||||
|
return json.Indent(dst, src, prefix, indent)
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue