2013-11-11 05:05:14 +04:00
|
|
|
package gorm
|
|
|
|
|
2013-11-11 07:11:49 +04:00
|
|
|
import (
|
2015-02-23 04:26:26 +03:00
|
|
|
"database/sql/driver"
|
2013-11-11 07:11:49 +04:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
2015-02-20 17:41:03 +03:00
|
|
|
"reflect"
|
2013-11-11 07:53:56 +04:00
|
|
|
"regexp"
|
2013-11-11 11:48:31 +04:00
|
|
|
"time"
|
2016-03-04 04:12:01 +03:00
|
|
|
"unicode"
|
2013-11-11 07:11:49 +04:00
|
|
|
)
|
2013-11-11 05:05:14 +04:00
|
|
|
|
2016-03-07 09:54:20 +03:00
|
|
|
var (
|
|
|
|
defaultLogger = Logger{log.New(os.Stdout, "\r\n", 0)}
|
|
|
|
sqlRegexp = regexp.MustCompile(`(\$\d+)|\?`)
|
|
|
|
)
|
|
|
|
|
2014-01-03 15:23:41 +04:00
|
|
|
type logger interface {
|
2013-11-11 05:05:14 +04:00
|
|
|
Print(v ...interface{})
|
|
|
|
}
|
|
|
|
|
2016-03-07 09:54:20 +03:00
|
|
|
type logWriter interface {
|
2015-09-02 19:37:44 +03:00
|
|
|
Println(v ...interface{})
|
|
|
|
}
|
|
|
|
|
2016-03-07 09:54:20 +03:00
|
|
|
// Logger default logger
|
2014-01-03 15:23:41 +04:00
|
|
|
type Logger struct {
|
2016-03-07 09:54:20 +03:00
|
|
|
logWriter
|
2013-11-11 13:16:15 +04:00
|
|
|
}
|
|
|
|
|
2016-03-07 09:54:20 +03:00
|
|
|
// Print format & print log
|
2015-02-17 17:55:14 +03:00
|
|
|
func (logger Logger) Print(values ...interface{}) {
|
|
|
|
if len(values) > 1 {
|
|
|
|
level := values[0]
|
2014-08-23 12:00:04 +04:00
|
|
|
currentTime := "\n\033[33m[" + NowFunc().Format("2006-01-02 15:04:05") + "]\033[0m"
|
2015-02-17 17:55:14 +03:00
|
|
|
source := fmt.Sprintf("\033[35m(%v)\033[0m", values[1])
|
2014-01-04 13:36:58 +04:00
|
|
|
messages := []interface{}{source, currentTime}
|
2013-11-11 13:16:15 +04:00
|
|
|
|
|
|
|
if level == "sql" {
|
2014-01-04 13:36:58 +04:00
|
|
|
// duration
|
2015-02-17 17:55:14 +03:00
|
|
|
messages = append(messages, fmt.Sprintf(" \033[36;1m[%.2fms]\033[0m ", float64(values[2].(time.Duration).Nanoseconds()/1e4)/100.0))
|
2014-01-04 13:36:58 +04:00
|
|
|
// sql
|
2016-03-04 03:59:33 +03:00
|
|
|
var sql string
|
|
|
|
var formattedValues []string
|
|
|
|
|
2015-02-20 17:41:03 +03:00
|
|
|
for _, value := range values[4].([]interface{}) {
|
|
|
|
indirectValue := reflect.Indirect(reflect.ValueOf(value))
|
|
|
|
if indirectValue.IsValid() {
|
|
|
|
value = indirectValue.Interface()
|
|
|
|
if t, ok := value.(time.Time); ok {
|
2016-03-04 03:59:33 +03:00
|
|
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", t.Format(time.RFC3339)))
|
2015-02-23 04:26:26 +03:00
|
|
|
} else if b, ok := value.([]byte); ok {
|
2016-03-04 04:12:01 +03:00
|
|
|
if str := string(b); isPrintable(str) {
|
|
|
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", str))
|
|
|
|
} else {
|
|
|
|
formattedValues = append(formattedValues, "'<binary>'")
|
|
|
|
}
|
2015-02-23 04:26:26 +03:00
|
|
|
} else if r, ok := value.(driver.Valuer); ok {
|
|
|
|
if value, err := r.Value(); err == nil && value != nil {
|
2016-03-04 03:59:33 +03:00
|
|
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", value))
|
2015-02-23 04:26:26 +03:00
|
|
|
} else {
|
2016-03-04 03:59:33 +03:00
|
|
|
formattedValues = append(formattedValues, "NULL")
|
2015-02-23 04:26:26 +03:00
|
|
|
}
|
2015-02-20 17:41:03 +03:00
|
|
|
} else {
|
2016-03-04 03:59:33 +03:00
|
|
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", value))
|
2015-02-20 17:41:03 +03:00
|
|
|
}
|
|
|
|
} else {
|
2016-03-04 03:59:33 +03:00
|
|
|
formattedValues = append(formattedValues, fmt.Sprintf("'%v'", value))
|
2015-02-20 17:41:03 +03:00
|
|
|
}
|
|
|
|
}
|
2016-03-04 03:59:33 +03:00
|
|
|
|
|
|
|
var formattedValuesLength = len(formattedValues)
|
|
|
|
for index, value := range sqlRegexp.Split(values[3].(string), -1) {
|
|
|
|
sql += value
|
|
|
|
if index < formattedValuesLength {
|
|
|
|
sql += formattedValues[index]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
messages = append(messages, sql)
|
2013-11-11 13:16:15 +04:00
|
|
|
} else {
|
2014-01-04 13:36:58 +04:00
|
|
|
messages = append(messages, "\033[31;1m")
|
2015-02-17 17:55:14 +03:00
|
|
|
messages = append(messages, values[2:]...)
|
2013-11-11 13:16:15 +04:00
|
|
|
messages = append(messages, "\033[0m")
|
|
|
|
}
|
2014-01-04 13:36:58 +04:00
|
|
|
logger.Println(messages...)
|
2013-11-11 13:16:15 +04:00
|
|
|
}
|
|
|
|
}
|
2016-03-04 04:12:01 +03:00
|
|
|
|
|
|
|
func isPrintable(s string) bool {
|
|
|
|
for _, r := range s {
|
|
|
|
if !unicode.IsPrint(r) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|