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-01-19 06:53:53 +03:00
|
|
|
// LimitAndOffsetSQL return generate SQL with limit and offset, as mssql has special case
|
2016-01-18 15:32:52 +03:00
|
|
|
LimitAndOffsetSQL(limit, offset int) 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`
|
|
|
|
LastInsertIdReturningSuffix(tableName, columnName string) 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
|
|
|
|
|
|
|
// ParseFieldStructForDialect parse field struct for dialect
|
|
|
|
func ParseFieldStructForDialect(field *StructField) (fieldValue reflect.Value, sqlType string, size int, additionalType string) {
|
|
|
|
// Get redirected field type
|
|
|
|
var reflectType = field.Struct.Type
|
|
|
|
for reflectType.Kind() == reflect.Ptr {
|
|
|
|
reflectType = reflectType.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get redirected field value
|
|
|
|
fieldValue = reflect.Indirect(reflect.New(reflectType))
|
|
|
|
|
|
|
|
// 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, field.TagSettings["TYPE"], size, strings.TrimSpace(additionalType)
|
|
|
|
}
|