Sha256: d2566295a00dd75808fe32bc1592bd95d850cc3bfcf07c08d786eaf0305f768f

Contents?: true

Size: 1005 Bytes

Versions: 16

Compression:

Stored size: 1005 Bytes

Contents

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))
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ruby_snowflake_client-1.3.7 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.6 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.5 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.4 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.4.pre.debug ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.3.pre.debug ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.2 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.1 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.3.0 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.2.1 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.2.0 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.1.1 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.1.0 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.0.2 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.0.1 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go
ruby_snowflake_client-1.0.0 ext/vendor/github.com/goccy/go-json/internal/decoder/anonymous_field.go