gorm/dialect.go

107 lines
3.4 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 *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
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
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
// 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
// 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)
}