2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-07-30 12:32:38 +00:00
|
|
|
package orm
|
|
|
|
|
|
|
|
import (
|
2014-02-28 03:53:35 +00:00
|
|
|
"database/sql"
|
2013-07-30 12:32:38 +00:00
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2016-08-30 16:07:19 +00:00
|
|
|
// 1 is attr
|
|
|
|
// 2 is tag
|
|
|
|
var supportTag = map[string]int{
|
|
|
|
"-": 1,
|
|
|
|
"null": 1,
|
|
|
|
"index": 1,
|
|
|
|
"unique": 1,
|
|
|
|
"pk": 1,
|
|
|
|
"auto": 1,
|
|
|
|
"auto_now": 1,
|
|
|
|
"auto_now_add": 1,
|
|
|
|
"size": 2,
|
|
|
|
"column": 2,
|
|
|
|
"default": 2,
|
|
|
|
"rel": 2,
|
|
|
|
"reverse": 2,
|
|
|
|
"rel_table": 2,
|
|
|
|
"rel_through": 2,
|
|
|
|
"digits": 2,
|
|
|
|
"decimals": 2,
|
|
|
|
"on_delete": 2,
|
|
|
|
"type": 2,
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// get reflect.Type name with package path.
|
2013-08-09 12:14:18 +00:00
|
|
|
func getFullName(typ reflect.Type) string {
|
|
|
|
return typ.PkgPath() + "." + typ.Name()
|
|
|
|
}
|
|
|
|
|
2016-08-30 16:07:19 +00:00
|
|
|
// getTableName get struct table name.
|
|
|
|
// If the struct implement the TableName, then get the result as tablename
|
|
|
|
// else use the struct name which will apply snakeString.
|
2013-08-09 12:14:18 +00:00
|
|
|
func getTableName(val reflect.Value) string {
|
2016-08-30 16:07:19 +00:00
|
|
|
if fun := val.MethodByName("TableName"); fun.IsValid() {
|
2013-07-30 12:32:38 +00:00
|
|
|
vals := fun.Call([]reflect.Value{})
|
2016-08-30 16:07:19 +00:00
|
|
|
// has return and the first val is string
|
|
|
|
if len(vals) > 0 && vals[0].Kind() == reflect.String {
|
|
|
|
return vals[0].String()
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-30 16:07:19 +00:00
|
|
|
return snakeString(reflect.Indirect(val).Type().Name())
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// get table engine, mysiam or innodb.
|
2013-09-16 01:48:04 +00:00
|
|
|
func getTableEngine(val reflect.Value) string {
|
|
|
|
fun := val.MethodByName("TableEngine")
|
|
|
|
if fun.IsValid() {
|
|
|
|
vals := fun.Call([]reflect.Value{})
|
2016-08-31 14:47:31 +00:00
|
|
|
if len(vals) > 0 && vals[0].Kind() == reflect.String {
|
|
|
|
return vals[0].String()
|
2013-09-16 01:48:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// get table index from method.
|
2013-08-22 13:19:58 +00:00
|
|
|
func getTableIndex(val reflect.Value) [][]string {
|
|
|
|
fun := val.MethodByName("TableIndex")
|
|
|
|
if fun.IsValid() {
|
|
|
|
vals := fun.Call([]reflect.Value{})
|
2016-08-31 14:47:31 +00:00
|
|
|
if len(vals) > 0 && vals[0].CanInterface() {
|
|
|
|
if d, ok := vals[0].Interface().([][]string); ok {
|
|
|
|
return d
|
2013-08-22 13:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// get table unique from method
|
2013-08-22 13:19:58 +00:00
|
|
|
func getTableUnique(val reflect.Value) [][]string {
|
|
|
|
fun := val.MethodByName("TableUnique")
|
|
|
|
if fun.IsValid() {
|
|
|
|
vals := fun.Call([]reflect.Value{})
|
2016-08-31 14:47:31 +00:00
|
|
|
if len(vals) > 0 && vals[0].CanInterface() {
|
|
|
|
if d, ok := vals[0].Interface().([][]string); ok {
|
|
|
|
return d
|
2013-08-22 13:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// get snaked column name
|
2013-07-30 12:32:38 +00:00
|
|
|
func getColumnName(ft int, addrField reflect.Value, sf reflect.StructField, col string) string {
|
2013-11-06 14:05:10 +00:00
|
|
|
column := col
|
|
|
|
if col == "" {
|
2013-07-30 12:32:38 +00:00
|
|
|
column = snakeString(sf.Name)
|
|
|
|
}
|
|
|
|
switch ft {
|
|
|
|
case RelForeignKey, RelOneToOne:
|
2013-11-06 14:05:10 +00:00
|
|
|
if len(col) == 0 {
|
|
|
|
column = column + "_id"
|
|
|
|
}
|
2013-07-30 12:32:38 +00:00
|
|
|
case RelManyToMany, RelReverseMany, RelReverseOne:
|
|
|
|
column = sf.Name
|
|
|
|
}
|
|
|
|
return column
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// return field type as type constant from reflect.Value
|
2013-07-30 12:32:38 +00:00
|
|
|
func getFieldType(val reflect.Value) (ft int, err error) {
|
2014-06-22 05:15:03 +00:00
|
|
|
switch val.Type() {
|
|
|
|
case reflect.TypeOf(new(int8)):
|
2013-08-13 09:16:12 +00:00
|
|
|
ft = TypeBitField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(int16)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypeSmallIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(int32)),
|
|
|
|
reflect.TypeOf(new(int)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypeIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(int64)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypeBigIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(uint8)):
|
2013-08-19 14:37:39 +00:00
|
|
|
ft = TypePositiveBitField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(uint16)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypePositiveSmallIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(uint32)),
|
|
|
|
reflect.TypeOf(new(uint)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypePositiveIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(uint64)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypePositiveBigIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(float32)),
|
|
|
|
reflect.TypeOf(new(float64)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypeFloatField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(bool)):
|
2013-07-30 12:32:38 +00:00
|
|
|
ft = TypeBooleanField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.TypeOf(new(string)):
|
2017-11-30 10:12:49 +00:00
|
|
|
ft = TypeVarCharField
|
2016-06-22 13:32:37 +00:00
|
|
|
case reflect.TypeOf(new(time.Time)):
|
|
|
|
ft = TypeDateTimeField
|
2013-07-30 12:32:38 +00:00
|
|
|
default:
|
2014-06-22 05:15:03 +00:00
|
|
|
elm := reflect.Indirect(val)
|
|
|
|
switch elm.Kind() {
|
|
|
|
case reflect.Int8:
|
|
|
|
ft = TypeBitField
|
|
|
|
case reflect.Int16:
|
|
|
|
ft = TypeSmallIntegerField
|
|
|
|
case reflect.Int32, reflect.Int:
|
|
|
|
ft = TypeIntegerField
|
|
|
|
case reflect.Int64:
|
2014-03-13 15:31:47 +00:00
|
|
|
ft = TypeBigIntegerField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.Uint8:
|
|
|
|
ft = TypePositiveBitField
|
|
|
|
case reflect.Uint16:
|
|
|
|
ft = TypePositiveSmallIntegerField
|
|
|
|
case reflect.Uint32, reflect.Uint:
|
|
|
|
ft = TypePositiveIntegerField
|
|
|
|
case reflect.Uint64:
|
|
|
|
ft = TypePositiveBigIntegerField
|
|
|
|
case reflect.Float32, reflect.Float64:
|
2014-03-13 15:31:47 +00:00
|
|
|
ft = TypeFloatField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.Bool:
|
2014-03-13 15:31:47 +00:00
|
|
|
ft = TypeBooleanField
|
2014-06-22 05:15:03 +00:00
|
|
|
case reflect.String:
|
2017-11-30 10:12:49 +00:00
|
|
|
ft = TypeVarCharField
|
2014-06-22 05:15:03 +00:00
|
|
|
default:
|
|
|
|
if elm.Interface() == nil {
|
|
|
|
panic(fmt.Errorf("%s is nil pointer, may be miss setting tag", val))
|
|
|
|
}
|
|
|
|
switch elm.Interface().(type) {
|
|
|
|
case sql.NullInt64:
|
|
|
|
ft = TypeBigIntegerField
|
|
|
|
case sql.NullFloat64:
|
|
|
|
ft = TypeFloatField
|
|
|
|
case sql.NullBool:
|
|
|
|
ft = TypeBooleanField
|
|
|
|
case sql.NullString:
|
2017-11-30 10:12:49 +00:00
|
|
|
ft = TypeVarCharField
|
2014-06-22 05:15:03 +00:00
|
|
|
case time.Time:
|
|
|
|
ft = TypeDateTimeField
|
|
|
|
}
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ft&IsFieldType == 0 {
|
|
|
|
err = fmt.Errorf("unsupport field type %s, may be miss setting tag", val)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-01-17 15:28:54 +00:00
|
|
|
// parse struct tag string
|
2016-08-30 16:07:19 +00:00
|
|
|
func parseStructTag(data string) (attrs map[string]bool, tags map[string]string) {
|
|
|
|
attrs = make(map[string]bool)
|
|
|
|
tags = make(map[string]string)
|
2013-09-09 14:33:41 +00:00
|
|
|
for _, v := range strings.Split(data, defaultStructTagDelim) {
|
2016-08-30 16:07:19 +00:00
|
|
|
if v == "" {
|
|
|
|
continue
|
|
|
|
}
|
2013-07-30 12:32:38 +00:00
|
|
|
v = strings.TrimSpace(v)
|
2016-06-03 14:06:43 +00:00
|
|
|
if t := strings.ToLower(v); supportTag[t] == 1 {
|
2016-08-30 16:07:19 +00:00
|
|
|
attrs[t] = true
|
2013-07-30 12:32:38 +00:00
|
|
|
} else if i := strings.Index(v, "("); i > 0 && strings.Index(v, ")") == len(v)-1 {
|
2016-06-03 14:06:43 +00:00
|
|
|
name := t[:i]
|
2013-07-30 12:32:38 +00:00
|
|
|
if supportTag[name] == 2 {
|
|
|
|
v = v[i+1 : len(v)-1]
|
2016-08-30 16:07:19 +00:00
|
|
|
tags[name] = v
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|
2016-08-30 16:07:19 +00:00
|
|
|
} else {
|
|
|
|
DebugLog.Println("unsupport orm tag", v)
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-30 16:07:19 +00:00
|
|
|
return
|
2013-07-30 12:32:38 +00:00
|
|
|
}
|