kvstruct

package
v1.7.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2025 License: MIT, Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Sep = ","

Functions

func Decode

func Decode(dst any, src map[string][]string) error

func GetStringSliceConverter

func GetStringSliceConverter(elemTyp reflect.Type) func(value string) (any, error)

func GetStringSliceConverterByKind

func GetStringSliceConverterByKind(kind reflect.Kind) func(value string) (any, error)

func IgnoreUnknownKeys

func IgnoreUnknownKeys(i bool)

func MappingByTag

func MappingByTag(ptr any, setter Setter, tag string) error

func RegisterConverter

func RegisterConverter(value interface{}, converterFunc StringConverter)

RegisterConverter registers a converter function for a custom type.

func SetAliasTag

func SetAliasTag(tag string)

func SetValueByKV added in v1.7.7

func SetValueByKV(value reflect.Value, field *reflect.StructField, kv Get, key string, opt *Options) (isSet bool, err error)

func SetValueByKVs added in v1.7.7

func SetValueByKVs(value reflect.Value, field *reflect.StructField, kv GetVs, key string, opt *Options) (isSet bool, err error)

func Unmarshal

func Unmarshal(dst any, mapData map[string]any, opts ...DecoderConfigOption) error

func ZeroEmpty

func ZeroEmpty(z bool)

Types

type CanSetter

type CanSetter interface {
	Setter
	Has(key string) bool
}

type CanSetters

type CanSetters []CanSetter

func (CanSetters) TrySet

func (args CanSetters) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

type ConversionError

type ConversionError struct {
	Key   string       // key from the source map.
	Type  reflect.Type // expected type of elem
	Index int          // index for multi-value fields; -1 for single-value fields.
	Err   error        // low-level error (when it exists)
}

ConversionError stores information about a failed conversion.

func (ConversionError) Error

func (e ConversionError) Error() string

type Decoder

type Decoder struct {
	// contains filtered or unexported fields
}

Decoder decodes values from a map[string][]string to a struct.

func DefaultDecoder

func DefaultDecoder() *Decoder

func NewDecoder

func NewDecoder(tag string) *Decoder

NewDecoder returns a new Decoder.

func (*Decoder) Decode

func (d *Decoder) Decode(dst interface{}, src map[string][]string) error

Decode decodes a map[string][]string to a struct.

The first parameter must be a pointer to a struct.

The second parameter is a map, typically url.Values from an HTTP request. Keys are "paths" in dotted notation to the struct fields and nested structs.

See the package documentation for a full explanation of the mechanics.

func (*Decoder) IgnoreUnknownKeys

func (d *Decoder) IgnoreUnknownKeys(i bool)

IgnoreUnknownKeys controls the behaviour when the Decoder encounters unknown keys in the map. If i is true and an unknown field is encountered, it is ignored. This is similar to how unknown keys are handled by encoding/json. If i is false then Decode will return an error. Note that any valid keys will still be decoded in to the target struct.

To preserve backwards compatibility, the default value is false.

func (*Decoder) RegisterConverter

func (d *Decoder) RegisterConverter(value interface{}, converterFunc StringConverter)

RegisterConverter registers a converter function for a custom type.

func (*Decoder) SetAliasTag

func (d *Decoder) SetAliasTag(tag string)

SetAliasTag changes the Key used to locate custom field aliases. The default Key is "schema".

func (*Decoder) ZeroEmpty

func (d *Decoder) ZeroEmpty(z bool)

ZeroEmpty controls the behaviour when the Decoder encounters empty values in a map. If z is true and a key in the map has the empty string as a value then the corresponding struct field is set to the zero value. If z is false then empty strings are ignored.

The default value is false, that is empty values do not change the value of the struct field.

type DecoderConfigOption

type DecoderConfigOption func(*mapstructure.DecoderConfig)

type EmptyFieldError

type EmptyFieldError struct {
	Key string // required key in the source map.
}

EmptyFieldError stores information about an empty required field.

func (EmptyFieldError) Error

func (e EmptyFieldError) Error() string

type Encoder

type Encoder struct {
	// contains filtered or unexported fields
}

Encoder encodes values from a struct into url.Values.

func NewEncoder

func NewEncoder(tag string) *Encoder

NewEncoder returns a new Encoder with defaults.

func (*Encoder) Encode

func (e *Encoder) Encode(src interface{}, dst map[string][]string) error

Encode encodes a struct into map[string][]string.

Intended for use with url.Values.

func (*Encoder) RegisterEncoder

func (e *Encoder) RegisterEncoder(value interface{}, encoder func(reflect.Value) string)

RegisterEncoder registers a converter for encoding a custom type.

func (*Encoder) SetAliasTag

func (e *Encoder) SetAliasTag(tag string)

SetAliasTag changes the Key used to locate custom field aliases. The default Key is "schema".

type Get added in v1.7.7

type Get interface {
	Get(key string) (string, bool)
}

type GetVs added in v1.7.7

type GetVs interface {
	GetVs(key string) ([]string, bool)
}

type GetVss added in v1.7.7

type GetVss []GetVs

func (GetVss) GetVs added in v1.7.7

func (args GetVss) GetVs(key string) (v []string, ok bool)

func (GetVss) Has added in v1.7.7

func (args GetVss) Has(key string) bool

func (GetVss) TrySet added in v1.7.7

func (args GetVss) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

type Gets added in v1.7.7

type Gets []Get

func (Gets) Get added in v1.7.7

func (args Gets) Get(key string) (v string, ok bool)

func (Gets) TrySet added in v1.7.7

func (args Gets) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

type KVSource

type KVSource map[string]string

func (KVSource) Get added in v1.7.7

func (form KVSource) Get(key string) (string, bool)

func (KVSource) TrySet

func (form KVSource) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

TrySet tries to set a value by request's form source (like map[string][]string)

type KVsSource

type KVsSource map[string][]string

func (KVsSource) GetVs added in v1.7.7

func (form KVsSource) GetVs(key string) ([]string, bool)

func (KVsSource) Has added in v1.7.7

func (form KVsSource) Has(key string) bool

func (KVsSource) TrySet

func (form KVsSource) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

TrySet tries to set a value by request's form source (like map[string][]string)

type Options

type Options struct {
	Default   string
	Required  bool
	Omitempty bool
}

func ParseTag

func ParseTag(tagValue string) (string, *Options)

type Setter

type Setter interface {
	TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)
}

Setter tries to set value on a walking by fields of a struct

type Setters

type Setters []Setter

func (Setters) TrySet

func (receiver Setters) TrySet(value reflect.Value, field *reflect.StructField, key string, opt *Options) (isSet bool, err error)

type StringConverter

type StringConverter func(string) any

func GetStringConverter

func GetStringConverter(typ reflect.Type) StringConverter

func GetStringConverterByKind

func GetStringConverterByKind(kind reflect.Kind) StringConverter

type StringConverterE

type StringConverterE func(string) (any, error)

func GetStringConverterE

func GetStringConverterE(typ reflect.Type) StringConverterE

func GetStringConverterEByKind

func GetStringConverterEByKind(kind reflect.Kind) StringConverterE

func (StringConverterE) IgnoreError

func (c StringConverterE) IgnoreError() StringConverter

type UnknownKeyError

type UnknownKeyError struct {
	Key string // key from the source map.
}

UnknownKeyError stores information about an unknown key in the source map.

func (UnknownKeyError) Error

func (e UnknownKeyError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL