mtos

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Nov 6, 2024 License: MIT Imports: 14 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Decode added in v0.1.9

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

func IgnoreUnknownKeys added in v0.1.9

func IgnoreUnknownKeys(i bool)

func MapFormByTag added in v0.3.0

func MapFormByTag(ptr interface{}, setter Setter, tag string) error

func RegisterConverter added in v0.1.9

func RegisterConverter(value interface{}, converterFunc reflecti.StringConverter)

RegisterConverter registers a converter function for a custom type.

func SetAliasTag added in v0.1.9

func SetAliasTag(tag string)

func SetByKV added in v0.3.0

func SetByKV(value reflect.Value, field *reflect.StructField, kv PeekV, tagValue string) (isSet bool, err error)

func SetByKVs added in v0.3.0

func SetByKVs(value reflect.Value, field *reflect.StructField, kv PeekVs, tagValue string, opt SetOptions) (isSet bool, err error)

func SetFieldByString added in v0.3.0

func SetFieldByString(dst any, field, value string) error

func SetValueByString added in v0.3.0

func SetValueByString(field reflect.Value, value string) error

func Unmarshal

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

func ZeroEmpty added in v0.1.9

func ZeroEmpty(z bool)

Types

type Args added in v0.3.0

type Args []PeekV

func (Args) Peek added in v0.3.0

func (args Args) Peek(key string) (v string, ok bool)

func (Args) TrySet added in v0.3.0

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

type Args2 added in v0.3.0

type Args2 []PeekVs

func (Args2) Peek added in v0.3.0

func (args Args2) Peek(key string) (v []string, ok bool)

func (Args2) TrySet added in v0.3.0

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

type ConversionError added in v0.1.9

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 added in v0.1.9

func (e ConversionError) Error() string

type Decoder added in v0.1.9

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

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

func DefaultDecoder added in v0.1.9

func DefaultDecoder() *Decoder

func NewDecoder added in v0.1.9

func NewDecoder(tag string) *Decoder

NewDecoder returns a new Decoder.

func (*Decoder) Decode added in v0.1.9

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 added in v0.1.9

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 added in v0.1.9

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

RegisterConverter registers a converter function for a custom type.

func (*Decoder) SetAliasTag added in v0.1.9

func (d *Decoder) SetAliasTag(tag string)

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

func (*Decoder) ZeroEmpty added in v0.1.9

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 added in v0.1.9

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

EmptyFieldError stores information about an empty required field.

func (EmptyFieldError) Error added in v0.1.9

func (e EmptyFieldError) Error() string

type Encoder added in v0.1.9

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

Encoder encodes values from a struct into url.Values.

func NewEncoder added in v0.1.9

func NewEncoder(tag string) *Encoder

NewEncoder returns a new Encoder with defaults.

func (*Encoder) Encode added in v0.1.9

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 added in v0.1.9

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

RegisterEncoder registers a converter for encoding a custom type.

func (*Encoder) SetAliasTag added in v0.1.9

func (e *Encoder) SetAliasTag(tag string)

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

type KVSource added in v0.3.0

type KVSource map[string]string

func (KVSource) Peek added in v0.3.0

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

func (KVSource) TrySet added in v0.3.0

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

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

type KVsSource added in v0.3.0

type KVsSource map[string][]string

func (KVsSource) Peek added in v0.3.0

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

func (KVsSource) TrySet added in v0.3.0

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

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

type PeekV added in v0.3.0

type PeekV interface {
	Peek(key string) (string, bool)
}

type PeekVs added in v0.3.0

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

type PeekVsSource added in v0.3.0

type PeekVsSource []PeekVs

func (PeekVsSource) Peek added in v0.3.0

func (args PeekVsSource) Peek(key string) (v []string, ok bool)

func (PeekVsSource) TrySet added in v0.3.0

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

type SetOptions added in v0.3.0

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

type Setter added in v0.3.0

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

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

type UnknownKeyError added in v0.1.9

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

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

func (UnknownKeyError) Error added in v0.1.9

func (e UnknownKeyError) Error() string

Jump to

Keyboard shortcuts

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