gconv

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Mar 1, 2021 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (

	// Priority tags for Map*/Struct* functions.
	// Note, the "gconv", "param", "params" tags are used by old version of package.
	// It is strongly recommended using short tag "c" or "p" instead in the future.
	StructTagPriority = []string{"gconv", "param", "params", "c", "p", "json"}
)

Functions

func Bool

func Bool(any interface{}) bool

Bool converts <i> to bool. It returns false if <i> is: false, "", 0, "false", "off", "no", empty slice/map.

func Byte

func Byte(any interface{}) byte

Byte converts <i> to byte.

func Bytes

func Bytes(any interface{}) []byte

Bytes converts <i> to []byte.

func Convert

func Convert(any interface{}, t string, params ...interface{}) interface{}

Convert converts the variable <i> to the type <t>, the type <t> is specified by string. The optional parameter <params> is used for additional necessary parameter for this conversion. It supports common types conversion as its conversion based on type name string.

func Duration

func Duration(any interface{}) time.Duration

Duration converts <i> to time.Duration. If <i> is string, then it uses time.ParseDuration to convert it. If <i> is numeric, then it converts <i> as nanoseconds.

func Float32

func Float32(any interface{}) float32

Float32 converts <i> to float32.

func Float32s

func Float32s(any interface{}) []float32

Float32s converts <i> to []float32.

func Float64

func Float64(any interface{}) float64

Float64 converts <i> to float64.

func Float64s

func Float64s(any interface{}) []float64

Float64s converts <i> to []float64.

func Floats

func Floats(any interface{}) []float64

Floats converts <i> to []float64.

func GTime

func GTime(any interface{}, format ...string) *gtime.Time

GTime converts <i> to *gtime.Time. The parameter <format> can be used to specify the format of <i>. If no <format> given, it converts <i> using gtime.NewFromTimeStamp if <i> is numeric, or using gtime.StrToTime if <i> is string.

func Int

func Int(any interface{}) int

Int converts <i> to int.

func Int16

func Int16(any interface{}) int16

Int16 converts <i> to int16.

func Int32

func Int32(any interface{}) int32

Int32 converts <i> to int32.

func Int32s

func Int32s(any interface{}) []int32

Int32s converts <i> to []int32.

func Int64

func Int64(any interface{}) int64

Int64 converts <i> to int64.

func Int64s

func Int64s(any interface{}) []int64

Int64s converts <i> to []int64.

func Int8

func Int8(any interface{}) int8

Int8 converts <i> to int8.

func Interfaces

func Interfaces(any interface{}) []interface{}

Interfaces converts <i> to []interface{}.

func Ints

func Ints(any interface{}) []int

Ints converts <i> to []int.

func Map

func Map(value interface{}, tags ...string) map[string]interface{}

Map converts any variable <value> to map[string]interface{}. If the parameter <value> is not a map/struct/*struct type, then the conversion will fail and returns nil.

If <value> is a struct/*struct object, the second parameter <tags> specifies the most priority tags that will be detected, otherwise it detects the tags in order of: gconv, json, field name.

func MapDeep

func MapDeep(value interface{}, tags ...string) map[string]interface{}

MapDeep does Map function recursively, which means if the attribute of <value> is also a struct/*struct, calls Map function on this attribute converting it to a map[string]interface{} type variable. Also see Map.

func MapStrStr

func MapStrStr(value interface{}, tags ...string) map[string]string

MapStrStr converts <value> to map[string]string. Note that there might be data copy for this map type converting.

func MapStrStrDeep

func MapStrStrDeep(value interface{}, tags ...string) map[string]string

MapStrStrDeep converts <value> to map[string]string recursively. Note that there might be data copy for this map type converting.

func MapToMap

func MapToMap(params interface{}, pointer interface{}, mapping ...map[string]string) error

MapToMap converts any map type variable <params> to another map type variable <pointer> using reflect. See doMapToMap.

func MapToMapDeep

func MapToMapDeep(params interface{}, pointer interface{}, mapping ...map[string]string) error

MapToMapDeep converts any map type variable <params> to another map type variable <pointer> using reflect recursively. Deprecated, use MapToMap instead.

func MapToMaps

func MapToMaps(params interface{}, pointer interface{}, mapping ...map[string]string) error

MapToMaps converts any map type variable <params> to another map type variable <pointer>. See doMapToMaps.

func MapToMapsDeep

func MapToMapsDeep(params interface{}, pointer interface{}, mapping ...map[string]string) error

MapToMapsDeep converts any map type variable <params> to another map type variable <pointer> recursively. Deprecated, use MapToMaps instead.

func Maps

func Maps(value interface{}, tags ...string) []map[string]interface{}

Maps converts <i> to []map[string]interface{}. Note that it automatically checks and converts json string to []map if <value> is string/[]byte.

func MapsDeep

func MapsDeep(value interface{}, tags ...string) []map[string]interface{}

MapsDeep converts <i> to []map[string]interface{} recursively.

TODO completely implement the recursive converting for all types.

func Rune

func Rune(any interface{}) rune

Rune converts <i> to rune.

func Runes

func Runes(any interface{}) []rune

Runes converts <i> to []rune.

func Scan

func Scan(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

Scan automatically calls Struct or Structs function according to the type of parameter <pointer> to implement the converting. It calls function Struct if <pointer> is type of *struct/**struct to do the converting. It calls function Structs if <pointer> is type of *[]struct/*[]*struct to do the converting.

func ScanDeep

func ScanDeep(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

ScanDeep automatically calls StructDeep or StructsDeep function according to the type of parameter <pointer> to implement the converting.. It calls function StructDeep if <pointer> is type of *struct/**struct to do the converting. It calls function StructsDeep if <pointer> is type of *[]struct/*[]*struct to do the converting. Deprecated, use Scan instead.

func SliceAny

func SliceAny(any interface{}) []interface{}

SliceAny is alias of Interfaces.

func SliceFloat

func SliceFloat(any interface{}) []float64

SliceFloat is alias of Floats.

func SliceFloat32

func SliceFloat32(any interface{}) []float32

SliceFloat32 is alias of Float32s.

func SliceFloat64

func SliceFloat64(any interface{}) []float64

SliceFloat64 is alias of Float64s.

func SliceInt

func SliceInt(any interface{}) []int

SliceInt is alias of Ints.

func SliceInt32

func SliceInt32(any interface{}) []int32

SliceInt32 is alias of Int32s.

func SliceInt64

func SliceInt64(any interface{}) []int64

SliceInt is alias of Int64s.

func SliceMap

func SliceMap(any interface{}) []map[string]interface{}

SliceMap is alias of Maps.

func SliceMapDeep

func SliceMapDeep(any interface{}) []map[string]interface{}

SliceMapDeep is alias of MapsDeep.

func SliceStr

func SliceStr(any interface{}) []string

SliceStr is alias of Strings.

func SliceStruct

func SliceStruct(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

SliceStruct is alias of Structs.

func SliceStructDeep

func SliceStructDeep(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

SliceStructDeep is alias of StructsDeep. Deprecated, use SliceStruct instead.

func SliceUint

func SliceUint(any interface{}) []uint

SliceUint is alias of Uints.

func SliceUint32

func SliceUint32(any interface{}) []uint32

SliceUint32 is alias of Uint32s.

func SliceUint64

func SliceUint64(any interface{}) []uint64

SliceUint64 is alias of Uint64s.

func String

func String(any interface{}) string

String converts <i> to string. It's most common used converting function.

func Strings

func Strings(any interface{}) []string

Strings converts <i> to []string.

func Struct

func Struct(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

Struct maps the params key-value pairs to the corresponding struct object's attributes. The third parameter <mapping> is unnecessary, indicating the mapping rules between the custom key name and the attribute name(case sensitive).

Note:

  1. The <params> can be any type of map/struct, usually a map.
  2. The <pointer> should be type of *struct/**struct, which is a pointer to struct object or struct pointer.
  3. Only the public attributes of struct object can be mapped.
  4. If <params> is a map, the key of the map <params> can be lowercase. It will automatically convert the first letter of the key to uppercase in mapping procedure to do the matching. It ignores the map key, if it does not match.

func StructDeep

func StructDeep(params interface{}, pointer interface{}, mapping ...map[string]string) error

StructDeep do Struct function recursively. Deprecated, use Struct instead.

func Structs

func Structs(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

Structs converts any slice to given struct slice.

func StructsDeep

func StructsDeep(params interface{}, pointer interface{}, mapping ...map[string]string) (err error)

StructsDeep converts any slice to given struct slice recursively. Deprecated, use Structs instead.

func Time

func Time(any interface{}, format ...string) time.Time

Time converts <i> to time.Time.

func Uint

func Uint(any interface{}) uint

Uint converts <i> to uint.

func Uint16

func Uint16(any interface{}) uint16

Uint16 converts <i> to uint16.

func Uint32

func Uint32(any interface{}) uint32

Uint32 converts <i> to uint32.

func Uint32s

func Uint32s(any interface{}) []uint32

Uint32s converts <i> to []uint32.

func Uint64

func Uint64(any interface{}) uint64

Uint64 converts <i> to uint64.

func Uint64s

func Uint64s(any interface{}) []uint64

Uint64s converts <i> to []uint64.

func Uint8

func Uint8(any interface{}) uint8

Uint8 converts <i> to uint8.

func Uints

func Uints(any interface{}) []uint

Uints converts <i> to []uint.

func UnsafeBytesToStr

func UnsafeBytesToStr(b []byte) string

UnsafeBytesToStr converts []byte to string without memory copy. Note that, if you completely sure you will never use <b> variable in the feature, you can use this unsafe function to implement type conversion in high performance.

func UnsafeStrToBytes

func UnsafeStrToBytes(s string) []byte

UnsafeStrToBytes converts string to []byte without memory copy. Note that, if you completely sure you will never use <s> variable in the feature, you can use this unsafe function to implement type conversion in high performance.

Types

This section is empty.

Jump to

Keyboard shortcuts

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