mirror of
https://github.com/duke-git/lancet.git
synced 2026-02-04 12:52:28 +08:00
232 lines
5.1 KiB
Go
232 lines
5.1 KiB
Go
// Copyright 2021 dudaodong@gmail.com. All rights reserved.
|
|
// Use of this source code is governed by MIT license
|
|
|
|
// Package convertor implements some functions to convert data.
|
|
package convertor
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"encoding/json"
|
|
"fmt"
|
|
"math"
|
|
"reflect"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// ToBool convert string to a boolean
|
|
func ToBool(s string) (bool, error) {
|
|
return strconv.ParseBool(s)
|
|
}
|
|
|
|
// ToBytes convert interface to bytes
|
|
func ToBytes(value any) ([]byte, error) {
|
|
v := reflect.ValueOf(value)
|
|
|
|
switch value.(type) {
|
|
case int, int8, int16, int32, int64:
|
|
number := v.Int()
|
|
buf := bytes.NewBuffer([]byte{})
|
|
buf.Reset()
|
|
err := binary.Write(buf, binary.BigEndian, number)
|
|
return buf.Bytes(), err
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
number := v.Uint()
|
|
buf := bytes.NewBuffer([]byte{})
|
|
buf.Reset()
|
|
err := binary.Write(buf, binary.BigEndian, number)
|
|
return buf.Bytes(), err
|
|
case float32:
|
|
number := float32(v.Float())
|
|
bits := math.Float32bits(number)
|
|
bytes := make([]byte, 4)
|
|
binary.BigEndian.PutUint32(bytes, bits)
|
|
return bytes, nil
|
|
case float64:
|
|
number := v.Float()
|
|
bits := math.Float64bits(number)
|
|
bytes := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(bytes, bits)
|
|
return bytes, nil
|
|
case bool:
|
|
return strconv.AppendBool([]byte{}, v.Bool()), nil
|
|
case string:
|
|
return []byte(v.String()), nil
|
|
case []byte:
|
|
return v.Bytes(), nil
|
|
default:
|
|
newValue, err := json.Marshal(value)
|
|
return newValue, err
|
|
}
|
|
}
|
|
|
|
// ToChar convert string to char slice
|
|
func ToChar(s string) []string {
|
|
c := make([]string, 0)
|
|
if len(s) == 0 {
|
|
c = append(c, "")
|
|
}
|
|
for _, v := range s {
|
|
c = append(c, string(v))
|
|
}
|
|
return c
|
|
}
|
|
|
|
// ToString convert value to string
|
|
func ToString(value any) string {
|
|
res := ""
|
|
if value == nil {
|
|
return res
|
|
}
|
|
|
|
v := reflect.ValueOf(value)
|
|
|
|
switch value.(type) {
|
|
case float32, float64:
|
|
res = strconv.FormatFloat(v.Float(), 'f', -1, 64)
|
|
return res
|
|
case int, int8, int16, int32, int64:
|
|
res = strconv.FormatInt(v.Int(), 10)
|
|
return res
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
res = strconv.FormatUint(v.Uint(), 10)
|
|
return res
|
|
case string:
|
|
res = v.String()
|
|
return res
|
|
case []byte:
|
|
res = string(v.Bytes())
|
|
return res
|
|
default:
|
|
newValue, _ := json.Marshal(value)
|
|
res = string(newValue)
|
|
return res
|
|
}
|
|
}
|
|
|
|
// ToJson convert value to a valid json string
|
|
func ToJson(value any) (string, error) {
|
|
res, err := json.Marshal(value)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(res), nil
|
|
}
|
|
|
|
// ToFloat convert value to a float64, if input is not a float return 0.0 and error
|
|
func ToFloat(value any) (float64, error) {
|
|
v := reflect.ValueOf(value)
|
|
|
|
res := 0.0
|
|
err := fmt.Errorf("ToInt: unvalid interface type %T", value)
|
|
switch value.(type) {
|
|
case int, int8, int16, int32, int64:
|
|
res = float64(v.Int())
|
|
return res, nil
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
res = float64(v.Uint())
|
|
return res, nil
|
|
case float32, float64:
|
|
res = v.Float()
|
|
return res, nil
|
|
case string:
|
|
res, err = strconv.ParseFloat(v.String(), 64)
|
|
if err != nil {
|
|
res = 0.0
|
|
}
|
|
return res, err
|
|
default:
|
|
return res, err
|
|
}
|
|
}
|
|
|
|
// ToInt convert value to a int64, if input is not a numeric format return 0 and error
|
|
func ToInt(value any) (int64, error) {
|
|
v := reflect.ValueOf(value)
|
|
|
|
var res int64
|
|
err := fmt.Errorf("ToInt: invalid interface type %T", value)
|
|
switch value.(type) {
|
|
case int, int8, int16, int32, int64:
|
|
res = v.Int()
|
|
return res, nil
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
res = int64(v.Uint())
|
|
return res, nil
|
|
case float32, float64:
|
|
res = int64(v.Float())
|
|
return res, nil
|
|
case string:
|
|
res, err = strconv.ParseInt(v.String(), 0, 64)
|
|
if err != nil {
|
|
res = 0
|
|
}
|
|
return res, err
|
|
default:
|
|
return res, err
|
|
}
|
|
}
|
|
|
|
// StructToMap convert struct to map, only convert exported struct field
|
|
// map key is specified same as struct field tag `json` value
|
|
func StructToMap(value any) (map[string]any, error) {
|
|
v := reflect.ValueOf(value)
|
|
t := reflect.TypeOf(value)
|
|
|
|
if t.Kind() == reflect.Ptr {
|
|
t = t.Elem()
|
|
}
|
|
if t.Kind() != reflect.Struct {
|
|
return nil, fmt.Errorf("data type %T not support, shuld be struct or pointer to struct", value)
|
|
}
|
|
|
|
res := make(map[string]any)
|
|
|
|
fieldNum := t.NumField()
|
|
pattern := `^[A-Z]`
|
|
regex := regexp.MustCompile(pattern)
|
|
for i := 0; i < fieldNum; i++ {
|
|
name := t.Field(i).Name
|
|
tag := t.Field(i).Tag.Get("json")
|
|
if regex.MatchString(name) && tag != "" {
|
|
//res[name] = v.Field(i).Interface()
|
|
res[tag] = v.Field(i).Interface()
|
|
}
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
// ColorHexToRGB convert hex color to rgb color
|
|
func ColorHexToRGB(colorHex string) (red, green, blue int) {
|
|
colorHex = strings.TrimPrefix(colorHex, "#")
|
|
color64, err := strconv.ParseInt(colorHex, 16, 32)
|
|
if err != nil {
|
|
return
|
|
}
|
|
color := int(color64)
|
|
return color >> 16, (color & 0x00FF00) >> 8, color & 0x0000FF
|
|
}
|
|
|
|
// ColorRGBToHex convert rgb color to hex color
|
|
func ColorRGBToHex(red, green, blue int) string {
|
|
r := strconv.FormatInt(int64(red), 16)
|
|
g := strconv.FormatInt(int64(green), 16)
|
|
b := strconv.FormatInt(int64(blue), 16)
|
|
|
|
if len(r) == 1 {
|
|
r = "0" + r
|
|
}
|
|
if len(g) == 1 {
|
|
g = "0" + g
|
|
}
|
|
if len(b) == 1 {
|
|
b = "0" + b
|
|
}
|
|
|
|
return "#" + r + g + b
|
|
}
|