gorm/dialect.go

129 lines
4.1 KiB
Go
Raw Normal View History

package gorm
2013-11-14 13:35:17 +04:00
2014-03-16 05:28:43 +04:00
import (
2016-02-13 18:51:36 +03:00
"database/sql"
2014-07-02 13:47:30 +04:00
"fmt"
2014-03-16 05:28:43 +04:00
"reflect"
2016-02-13 18:51:36 +03:00
"strconv"
"strings"
2014-03-16 05:28:43 +04:00
)
2016-01-19 06:53:53 +03:00
// Dialect interface contains behaviors that differ across SQL database
2013-11-14 13:35:17 +04:00
type Dialect interface {
// GetName get dialect's name
GetName() string
2016-02-15 09:09:24 +03:00
// SetDB set db for dialect
SetDB(db SQLCommon)
2016-02-15 09:09:24 +03:00
2016-01-19 06:53:53 +03:00
// BindVar return the placeholder for actual values in SQL statements, in many dbs it is "?", Postgres using $1
BindVar(i int) string
// Quote quotes field name to avoid SQL parsing exceptions by using a reserved word as a field name
Quote(key string) string
2016-01-19 06:53:53 +03:00
// DataTypeOf return data's sql type
2016-02-13 18:51:36 +03:00
DataTypeOf(field *StructField) string
2016-01-18 15:32:52 +03:00
2016-01-19 06:53:53 +03:00
// HasIndex check has index or not
2016-02-15 09:09:24 +03:00
HasIndex(tableName string, indexName string) bool
// HasForeignKey check has foreign key or not
HasForeignKey(tableName string, foreignKeyName string) bool
2016-01-19 06:53:53 +03:00
// RemoveIndex remove index
2016-02-15 09:09:24 +03:00
RemoveIndex(tableName string, indexName string) error
2016-01-19 06:53:53 +03:00
// HasTable check has table or not
2016-02-15 09:09:24 +03:00
HasTable(tableName string) bool
2016-01-19 06:53:53 +03:00
// HasColumn check has column or not
2016-02-15 09:09:24 +03:00
HasColumn(tableName string, columnName string) bool
// ModifyColumn modify column's type
ModifyColumn(tableName string, columnName string, typ string) error
2016-01-18 15:32:52 +03:00
2016-03-07 16:09:05 +03:00
// LimitAndOffsetSQL return generated SQL with Limit and Offset, as mssql has special case
LimitAndOffsetSQL(limit, offset interface{}) string
2016-01-19 06:53:53 +03:00
// SelectFromDummyTable return select values, for most dbs, `SELECT values` just works, mysql needs `SELECT value FROM DUAL`
2016-01-18 15:32:52 +03:00
SelectFromDummyTable() string
2016-01-19 06:53:53 +03:00
// LastInsertIdReturningSuffix most dbs support LastInsertId, but postgres needs to use `RETURNING`
2016-03-07 09:54:20 +03:00
LastInsertIDReturningSuffix(tableName, columnName string) string
// DefaultValueStr
DefaultValueStr() string
// BuildKeyName returns a valid key name (foreign key, index key) for the given table, field and reference
BuildKeyName(kind, tableName string, fields ...string) string
2016-07-11 16:37:44 +03:00
// CurrentDatabase return current database name
CurrentDatabase() string
2013-11-14 13:35:17 +04:00
}
2016-02-14 13:06:42 +03:00
var dialectsMap = map[string]Dialect{}
func newDialect(name string, db SQLCommon) Dialect {
2016-02-15 09:09:24 +03:00
if value, ok := dialectsMap[name]; ok {
dialect := reflect.New(reflect.TypeOf(value).Elem()).Interface().(Dialect)
dialect.SetDB(db)
2016-02-14 13:06:42 +03:00
return dialect
2013-11-14 13:35:17 +04:00
}
2016-02-15 09:09:24 +03:00
2016-02-14 13:06:42 +03:00
fmt.Printf("`%v` is not officially supported, running under compatibility mode.\n", name)
2016-02-15 09:09:24 +03:00
commontDialect := &commonDialect{}
commontDialect.SetDB(db)
return commontDialect
2016-02-14 13:06:42 +03:00
}
// RegisterDialect register new dialect
func RegisterDialect(name string, dialect Dialect) {
dialectsMap[name] = dialect
2013-11-14 13:35:17 +04:00
}
2016-02-13 18:51:36 +03:00
// ParseFieldStructForDialect get field's sql data type
var ParseFieldStructForDialect = func(field *StructField, dialect Dialect) (fieldValue reflect.Value, sqlType string, size int, additionalType string) {
2016-02-13 18:51:36 +03:00
// Get redirected field type
var (
reflectType = field.Struct.Type
dataType = field.TagSettings["TYPE"]
)
2016-02-13 18:51:36 +03:00
for reflectType.Kind() == reflect.Ptr {
reflectType = reflectType.Elem()
}
// Get redirected field value
fieldValue = reflect.Indirect(reflect.New(reflectType))
if gormDataType, ok := fieldValue.Interface().(interface {
GormDataType(Dialect) string
}); ok {
dataType = gormDataType.GormDataType(dialect)
}
2016-02-13 18:51:36 +03:00
// Get scanner's real value
var getScannerValue func(reflect.Value)
getScannerValue = func(value reflect.Value) {
fieldValue = value
if _, isScanner := reflect.New(fieldValue.Type()).Interface().(sql.Scanner); isScanner && fieldValue.Kind() == reflect.Struct {
getScannerValue(fieldValue.Field(0))
}
}
getScannerValue(fieldValue)
// Default Size
if num, ok := field.TagSettings["SIZE"]; ok {
size, _ = strconv.Atoi(num)
} else {
size = 255
}
// Default type from tag setting
additionalType = field.TagSettings["NOT NULL"] + " " + field.TagSettings["UNIQUE"]
if value, ok := field.TagSettings["DEFAULT"]; ok {
additionalType = additionalType + " DEFAULT " + value
}
return fieldValue, dataType, size, strings.TrimSpace(additionalType)
2016-02-13 18:51:36 +03:00
}
2018-02-03 15:27:19 +03:00
func currentDatabaseAndTable(dialect Dialect, tableName string) (string, string) {
if strings.Contains(tableName, ".") {
splitStrings := strings.SplitN(tableName, ".", 2)
return splitStrings[0], splitStrings[1]
}
return dialect.CurrentDatabase(), tableName
}