2014-04-25 03:20:23 +04:00
|
|
|
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 {
|
2016-03-05 16:24:54 +03:00
|
|
|
// GetName get dialect's name
|
|
|
|
GetName() string
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
// SetDB set db for dialect
|
|
|
|
SetDB(db *sql.DB)
|
|
|
|
|
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
|
2013-11-30 10:52:01 +04:00
|
|
|
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
|
2016-03-05 17:50:49 +03:00
|
|
|
// 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
|
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
|
2016-06-21 06:13:33 +03:00
|
|
|
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
|
2016-05-22 01:13:26 +03:00
|
|
|
|
|
|
|
// BuildForeignKeyName returns a foreign key name for the given table, field and reference
|
|
|
|
BuildForeignKeyName(tableName, field, dest 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{}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
func newDialect(name string, db *sql.DB) Dialect {
|
|
|
|
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
|
|
|
|
2017-01-15 16:24:53 +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
|
2017-01-15 16:24:53 +03:00
|
|
|
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))
|
|
|
|
|
2017-01-15 16:24:53 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-01-15 16:24:53 +03:00
|
|
|
return fieldValue, dataType, size, strings.TrimSpace(additionalType)
|
2016-02-13 18:51:36 +03:00
|
|
|
}
|