gorm/utils/utils.go

123 lines
2.7 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"
"reflect"
2021-06-13 05:32:03 +03:00
"regexp"
2020-01-31 01:35:25 +03:00
"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-06-03 09:39:36 +03:00
var gormSourceDir string
2020-05-23 16:35:12 +03:00
func init() {
_, file, _, _ := runtime.Caller(0)
2021-06-13 05:32:03 +03:00
// compatible solution to get gorm source directory with various operating systems
gormSourceDir = regexp.MustCompile(`gorm.utils.utils\.go`).ReplaceAllString(file, "")
2020-05-23 16:35:12 +03:00
}
2020-01-31 01:35:25 +03:00
// FileWithLineNum return the file name and line number of the current file
2020-01-31 01:35:25 +03:00
func FileWithLineNum() string {
2021-06-13 05:32:03 +03:00
// the second caller usually from gorm internal, so set i start from 2
for i := 2; i < 15; i++ {
2020-01-31 01:35:25 +03:00
_, file, line, ok := runtime.Caller(i)
2020-06-03 09:39:36 +03:00
if ok && (!strings.HasPrefix(file, gormSourceDir) || strings.HasSuffix(file, "_test.go")) {
2020-06-07 13:27:12 +03:00
return file + ":" + strconv.FormatInt(int64(line), 10)
2020-01-31 01:35:25 +03:00
}
}
2020-01-31 01:35:25 +03:00
return ""
}
2020-03-09 08:10:48 +03:00
2020-08-27 14:15:40 +03:00
func IsValidDBNameChar(c rune) bool {
return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '.' && c != '*' && c != '_' && c != '$' && c != '@'
2020-03-09 08:10:48 +03:00
}
// CheckTruth check string true or not
func CheckTruth(vals ...string) bool {
for _, val := range vals {
if val != "" && !strings.EqualFold(val, "false") {
return true
}
}
return false
}
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, "_")
}
2020-06-30 11:53:54 +03:00
2021-10-28 02:24:38 +03:00
func Contains(elems []string, elem string) bool {
for _, e := range elems {
if elem == e {
return true
}
}
return false
}
2020-06-30 11:53:54 +03:00
func AssertEqual(src, dst interface{}) bool {
if !reflect.DeepEqual(src, dst) {
if valuer, ok := src.(driver.Valuer); ok {
src, _ = valuer.Value()
}
if valuer, ok := dst.(driver.Valuer); ok {
dst, _ = valuer.Value()
}
return reflect.DeepEqual(src, dst)
}
return true
}
2020-09-01 16:03:37 +03:00
func ToString(value interface{}) string {
switch v := value.(type) {
case string:
return v
case int:
return strconv.FormatInt(int64(v), 10)
case int8:
return strconv.FormatInt(int64(v), 10)
case int16:
return strconv.FormatInt(int64(v), 10)
case int32:
return strconv.FormatInt(int64(v), 10)
case int64:
return strconv.FormatInt(v, 10)
case uint:
return strconv.FormatUint(uint64(v), 10)
case uint8:
return strconv.FormatUint(uint64(v), 10)
case uint16:
return strconv.FormatUint(uint64(v), 10)
case uint32:
return strconv.FormatUint(uint64(v), 10)
case uint64:
return strconv.FormatUint(v, 10)
}
return ""
}