mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
a156188b3e
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
38 lines
1,005 B
Go
38 lines
1,005 B
Go
package decoder
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"github.com/goccy/go-json/internal/runtime"
|
|
)
|
|
|
|
type anonymousFieldDecoder struct {
|
|
structType *runtime.Type
|
|
offset uintptr
|
|
dec Decoder
|
|
}
|
|
|
|
func newAnonymousFieldDecoder(structType *runtime.Type, offset uintptr, dec Decoder) *anonymousFieldDecoder {
|
|
return &anonymousFieldDecoder{
|
|
structType: structType,
|
|
offset: offset,
|
|
dec: dec,
|
|
}
|
|
}
|
|
|
|
func (d *anonymousFieldDecoder) DecodeStream(s *Stream, depth int64, p unsafe.Pointer) error {
|
|
if *(*unsafe.Pointer)(p) == nil {
|
|
*(*unsafe.Pointer)(p) = unsafe_New(d.structType)
|
|
}
|
|
p = *(*unsafe.Pointer)(p)
|
|
return d.dec.DecodeStream(s, depth, unsafe.Pointer(uintptr(p)+d.offset))
|
|
}
|
|
|
|
func (d *anonymousFieldDecoder) Decode(ctx *RuntimeContext, cursor, depth int64, p unsafe.Pointer) (int64, error) {
|
|
if *(*unsafe.Pointer)(p) == nil {
|
|
*(*unsafe.Pointer)(p) = unsafe_New(d.structType)
|
|
}
|
|
p = *(*unsafe.Pointer)(p)
|
|
return d.dec.Decode(ctx, cursor, depth, unsafe.Pointer(uintptr(p)+d.offset))
|
|
}
|