gorm/utils/utils.go

72 lines
1.4 KiB
Go
Raw Normal View History

2020-01-31 01:35:25 +03:00
package utils
import (
"database/sql/driver"
2020-01-31 01:35:25 +03:00
"fmt"
2020-05-23 16:35:12 +03:00
"path/filepath"
"reflect"
2020-01-31 01:35:25 +03:00
"regexp"
"runtime"
2020-05-14 07:19:12 +03:00
"strconv"
"strings"
2020-03-09 08:10:48 +03:00
"unicode"
2020-01-31 01:35:25 +03:00
)
2020-05-23 16:35:12 +03:00
var goSrcRegexp, goTestRegexp *regexp.Regexp
func init() {
_, file, _, _ := runtime.Caller(0)
goSrcRegexp = regexp.MustCompile(filepath.Join(filepath.Dir(filepath.Dir(file)), ".*.go"))
goTestRegexp = regexp.MustCompile(filepath.Join(filepath.Dir(filepath.Dir(file)), ".*test.go"))
}
2020-01-31 01:35:25 +03:00
func FileWithLineNum() string {
for i := 2; i < 15; i++ {
_, file, line, ok := runtime.Caller(i)
if ok && (!goSrcRegexp.MatchString(file) || goTestRegexp.MatchString(file)) {
return fmt.Sprintf("%v:%v", file, line)
}
}
return ""
}
2020-03-09 08:10:48 +03:00
func IsChar(c rune) bool {
return !unicode.IsLetter(c) && !unicode.IsNumber(c)
}
func CheckTruth(val interface{}) bool {
if v, ok := val.(bool); ok {
return v
}
if v, ok := val.(string); ok {
v = strings.ToLower(v)
return v != "false"
}
return !reflect.ValueOf(val).IsZero()
}
2020-05-14 07:19:12 +03:00
2020-05-23 16:03:28 +03:00
func ToStringKey(values ...interface{}) string {
2020-05-14 07:19:12 +03:00
results := make([]string, len(values))
for idx, value := range values {
2020-05-23 16:03:28 +03:00
if valuer, ok := value.(driver.Valuer); ok {
value, _ = valuer.Value()
}
2020-05-14 07:19:12 +03:00
2020-05-23 16:03:28 +03:00
switch v := value.(type) {
2020-05-14 07:19:12 +03:00
case string:
results[idx] = v
case []byte:
results[idx] = string(v)
case uint:
results[idx] = strconv.FormatUint(uint64(v), 10)
default:
2020-05-23 16:03:28 +03:00
results[idx] = fmt.Sprint(reflect.Indirect(reflect.ValueOf(v)).Interface())
2020-05-14 07:19:12 +03:00
}
}
return strings.Join(results, "_")
}