gorm/dialect_postgres.go

164 lines
3.8 KiB
Go
Raw Normal View History

package gorm
2013-11-14 14:59:11 +04:00
import (
2014-06-08 03:15:58 +04:00
"database/sql"
"database/sql/driver"
2013-11-14 14:59:11 +04:00
"fmt"
"reflect"
2016-01-19 15:58:38 +03:00
"strconv"
"strings"
2015-02-17 17:55:14 +03:00
"time"
2015-01-14 02:59:21 +03:00
"github.com/lib/pq/hstore"
2013-11-14 14:59:11 +04:00
)
type postgres struct {
2015-03-17 05:40:42 +03:00
commonDialect
2013-11-14 14:59:11 +04:00
}
2016-01-19 06:53:53 +03:00
func (postgres) BindVar(i int) string {
2013-11-16 16:47:25 +04:00
return fmt.Sprintf("$%v", i)
2013-11-14 14:59:11 +04:00
}
2016-02-13 18:51:36 +03:00
func (postgres) DataTypeOf(field *StructField) string {
var (
size int
dataValue = reflect.Indirect(reflect.New(field.Struct.Type))
tagSettings = field.TagSettings
)
2016-01-19 15:58:38 +03:00
if num, ok := tagSettings["SIZE"]; ok {
size, _ = strconv.Atoi(num)
}
switch dataValue.Kind() {
2014-03-16 05:28:43 +04:00
case reflect.Bool:
2013-11-14 14:59:11 +04:00
return "boolean"
2014-03-16 05:28:43 +04:00
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
2016-01-19 15:58:38 +03:00
if _, ok := tagSettings["AUTO_INCREMENT"]; ok {
2015-03-11 12:05:58 +03:00
return "serial"
}
2013-11-14 14:59:11 +04:00
return "integer"
2014-03-16 05:28:43 +04:00
case reflect.Int64, reflect.Uint64:
2016-01-19 15:58:38 +03:00
if _, ok := tagSettings["AUTO_INCREMENT"]; ok {
2015-03-11 12:05:58 +03:00
return "bigserial"
}
2013-11-14 14:59:11 +04:00
return "bigint"
2014-03-16 05:28:43 +04:00
case reflect.Float32, reflect.Float64:
2013-12-03 04:23:26 +04:00
return "numeric"
2014-03-16 05:28:43 +04:00
case reflect.String:
2013-11-14 14:59:11 +04:00
if size > 0 && size < 65532 {
return fmt.Sprintf("varchar(%d)", size)
2014-03-16 05:28:43 +04:00
}
return "text"
case reflect.Struct:
2016-01-19 15:58:38 +03:00
if _, ok := dataValue.Interface().(time.Time); ok {
2014-03-16 05:28:43 +04:00
return "timestamp with time zone"
2013-11-14 14:59:11 +04:00
}
2014-06-08 03:15:58 +04:00
case reflect.Map:
2016-01-19 15:58:38 +03:00
if dataValue.Type() == hstoreType {
2014-06-08 03:15:58 +04:00
return "hstore"
}
2013-11-14 14:59:11 +04:00
default:
2016-01-19 15:58:38 +03:00
if isByteArrayOrSlice(dataValue) {
2014-03-16 05:28:43 +04:00
return "bytea"
2016-01-19 15:58:38 +03:00
} else if isUUID(dataValue) {
return "uuid"
2014-03-16 05:28:43 +04:00
}
2013-11-14 14:59:11 +04:00
}
2016-01-19 15:58:38 +03:00
panic(fmt.Sprintf("invalid sql type %s (%s) for postgres", dataValue.Type().Name(), dataValue.Kind().String()))
2013-11-14 14:59:11 +04:00
}
2016-01-18 15:32:52 +03:00
func (s postgres) HasIndex(scope *Scope, tableName string, indexName string) bool {
var count int
s.RawScanInt(scope, &count, "SELECT count(*) FROM pg_indexes WHERE tablename = ? AND indexname = ?", tableName, indexName)
return count > 0
}
2016-01-18 15:32:52 +03:00
func (postgres) RemoveIndex(scope *Scope, indexName string) {
scope.Err(scope.NewDB().Exec(fmt.Sprintf("DROP INDEX %v", indexName)).Error)
2013-11-14 14:59:11 +04:00
}
func (s postgres) HasTable(scope *Scope, tableName string) bool {
var count int
s.RawScanInt(scope, &count, "SELECT count(*) FROM INFORMATION_SCHEMA.tables WHERE table_name = ? AND table_type = 'BASE TABLE'", tableName)
return count > 0
}
func (s postgres) HasColumn(scope *Scope, tableName string, columnName string) bool {
var count int
s.RawScanInt(scope, &count, "SELECT count(*) FROM INFORMATION_SCHEMA.columns WHERE table_name = ? AND column_name = ?", tableName, columnName)
return count > 0
}
2014-06-08 03:15:58 +04:00
2016-01-19 06:53:53 +03:00
func (s postgres) currentDatabase(scope *Scope) (name string) {
2016-01-18 15:32:52 +03:00
s.RawScanString(scope, &name, "SELECT CURRENT_DATABASE()")
return
}
2016-01-19 06:53:53 +03:00
func (s postgres) LastInsertIdReturningSuffix(tableName, key string) string {
2016-01-18 15:32:52 +03:00
return fmt.Sprintf("RETURNING %v.%v", tableName, key)
}
2016-01-18 15:32:52 +03:00
func (postgres) SupportLastInsertId() bool {
return false
}
2014-06-08 03:15:58 +04:00
var hstoreType = reflect.TypeOf(Hstore{})
type Hstore map[string]*string
func (h Hstore) Value() (driver.Value, error) {
hstore := hstore.Hstore{Map: map[string]sql.NullString{}}
if len(h) == 0 {
return nil, nil
}
for key, value := range h {
var s sql.NullString
if value != nil {
s.String = *value
s.Valid = true
}
hstore.Map[key] = s
2014-06-08 03:15:58 +04:00
}
return hstore.Value()
}
func (h *Hstore) Scan(value interface{}) error {
hstore := hstore.Hstore{}
if err := hstore.Scan(value); err != nil {
return err
}
if len(hstore.Map) == 0 {
return nil
}
*h = Hstore{}
for k := range hstore.Map {
if hstore.Map[k].Valid {
s := hstore.Map[k].String
(*h)[k] = &s
} else {
(*h)[k] = nil
}
}
return nil
}
2016-01-18 15:32:52 +03:00
func isByteArrayOrSlice(value reflect.Value) bool {
return (value.Kind() == reflect.Array || value.Kind() == reflect.Slice) && value.Type().Elem() == reflect.TypeOf(uint8(0))
}
func isUUID(value reflect.Value) bool {
if value.Kind() != reflect.Array || value.Type().Len() != 16 {
return false
}
typename := value.Type().Name()
lower := strings.ToLower(typename)
return "uuid" == lower || "guid" == lower
}