mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
1790f01dd9
* Upgrade xorm to v1.2.2 (#16663) Backport #16663 Fix #16683 * Add test to ensure that dumping of login sources remains correct (#16847) #16831 has occurred because of a missed regression. This PR adds a simple test to try to prevent this occuring again. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
92 lines
2.1 KiB
Go
Vendored
92 lines
2.1 KiB
Go
Vendored
package decoder
|
|
|
|
import (
|
|
"encoding/json"
|
|
"unsafe"
|
|
|
|
"github.com/goccy/go-json/internal/errors"
|
|
"github.com/goccy/go-json/internal/runtime"
|
|
)
|
|
|
|
type unmarshalJSONDecoder struct {
|
|
typ *runtime.Type
|
|
structName string
|
|
fieldName string
|
|
}
|
|
|
|
func newUnmarshalJSONDecoder(typ *runtime.Type, structName, fieldName string) *unmarshalJSONDecoder {
|
|
return &unmarshalJSONDecoder{
|
|
typ: typ,
|
|
structName: structName,
|
|
fieldName: fieldName,
|
|
}
|
|
}
|
|
|
|
func (d *unmarshalJSONDecoder) annotateError(cursor int64, err error) {
|
|
switch e := err.(type) {
|
|
case *errors.UnmarshalTypeError:
|
|
e.Struct = d.structName
|
|
e.Field = d.fieldName
|
|
case *errors.SyntaxError:
|
|
e.Offset = cursor
|
|
}
|
|
}
|
|
|
|
func (d *unmarshalJSONDecoder) DecodeStream(s *Stream, depth int64, p unsafe.Pointer) error {
|
|
s.skipWhiteSpace()
|
|
start := s.cursor
|
|
if err := s.skipValue(depth); err != nil {
|
|
return err
|
|
}
|
|
src := s.buf[start:s.cursor]
|
|
dst := make([]byte, len(src))
|
|
copy(dst, src)
|
|
|
|
v := *(*interface{})(unsafe.Pointer(&emptyInterface{
|
|
typ: d.typ,
|
|
ptr: p,
|
|
}))
|
|
if (s.Option.Flags & ContextOption) != 0 {
|
|
if err := v.(unmarshalerContext).UnmarshalJSON(s.Option.Context, dst); err != nil {
|
|
d.annotateError(s.cursor, err)
|
|
return err
|
|
}
|
|
} else {
|
|
if err := v.(json.Unmarshaler).UnmarshalJSON(dst); err != nil {
|
|
d.annotateError(s.cursor, err)
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *unmarshalJSONDecoder) Decode(ctx *RuntimeContext, cursor, depth int64, p unsafe.Pointer) (int64, error) {
|
|
buf := ctx.Buf
|
|
cursor = skipWhiteSpace(buf, cursor)
|
|
start := cursor
|
|
end, err := skipValue(buf, cursor, depth)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
src := buf[start:end]
|
|
dst := make([]byte, len(src))
|
|
copy(dst, src)
|
|
|
|
v := *(*interface{})(unsafe.Pointer(&emptyInterface{
|
|
typ: d.typ,
|
|
ptr: p,
|
|
}))
|
|
if (ctx.Option.Flags & ContextOption) != 0 {
|
|
if err := v.(unmarshalerContext).UnmarshalJSON(ctx.Option.Context, dst); err != nil {
|
|
d.annotateError(cursor, err)
|
|
return 0, err
|
|
}
|
|
} else {
|
|
if err := v.(json.Unmarshaler).UnmarshalJSON(dst); err != nil {
|
|
d.annotateError(cursor, err)
|
|
return 0, err
|
|
}
|
|
}
|
|
return end, nil
|
|
}
|