2015-02-11 08:43:53 +03:00
|
|
|
package gorm
|
|
|
|
|
|
|
|
import (
|
2015-02-11 10:37:04 +03:00
|
|
|
"database/sql/driver"
|
2015-02-11 08:43:53 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
2015-04-21 10:00:36 +03:00
|
|
|
"strings"
|
2015-02-11 08:43:53 +03:00
|
|
|
)
|
|
|
|
|
2015-02-17 17:55:14 +03:00
|
|
|
func getRealValue(value reflect.Value, field string) interface{} {
|
2015-02-11 12:58:19 +03:00
|
|
|
result := reflect.Indirect(value).FieldByName(field).Interface()
|
2015-02-11 10:37:04 +03:00
|
|
|
if r, ok := result.(driver.Valuer); ok {
|
|
|
|
result, _ = r.Value()
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func equalAsString(a interface{}, b interface{}) bool {
|
|
|
|
return fmt.Sprintf("%v", a) == fmt.Sprintf("%v", b)
|
|
|
|
}
|
|
|
|
|
2015-02-11 08:43:53 +03:00
|
|
|
func Preload(scope *Scope) {
|
2015-04-21 11:51:52 +03:00
|
|
|
if scope.Search.preload == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-21 10:00:36 +03:00
|
|
|
preloadMap := map[string]bool{}
|
2015-04-21 11:51:52 +03:00
|
|
|
fields := scope.Fields()
|
|
|
|
for _, preload := range scope.Search.preload {
|
|
|
|
schema, conditions := preload.schema, preload.conditions
|
|
|
|
keys := strings.Split(schema, ".")
|
|
|
|
currentScope := scope
|
|
|
|
currentFields := fields
|
|
|
|
originalConditions := conditions
|
|
|
|
conditions = []interface{}{}
|
|
|
|
for i, key := range keys {
|
|
|
|
var found bool
|
|
|
|
if preloadMap[strings.Join(keys[:i+1], ".")] {
|
|
|
|
goto nextLoop
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(keys)-1 {
|
|
|
|
conditions = originalConditions
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, field := range currentFields {
|
|
|
|
if field.Name != key || field.Relationship == nil {
|
|
|
|
continue
|
2015-04-21 10:00:36 +03:00
|
|
|
}
|
|
|
|
|
2015-04-21 11:51:52 +03:00
|
|
|
found = true
|
|
|
|
switch field.Relationship.Kind {
|
|
|
|
case "has_one":
|
|
|
|
currentScope.handleHasOnePreload(field, conditions)
|
|
|
|
case "has_many":
|
|
|
|
currentScope.handleHasManyPreload(field, conditions)
|
|
|
|
case "belongs_to":
|
|
|
|
currentScope.handleBelongsToPreload(field, conditions)
|
|
|
|
case "many_to_many":
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
currentScope.Err(errors.New("not supported relation"))
|
2015-02-11 08:43:53 +03:00
|
|
|
}
|
2015-04-21 11:51:52 +03:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
value := reflect.ValueOf(currentScope.Value)
|
|
|
|
if value.Kind() == reflect.Slice && value.Type().Elem().Kind() == reflect.Interface {
|
|
|
|
value = value.Index(0).Elem()
|
|
|
|
}
|
|
|
|
scope.Err(fmt.Errorf("can't found field %s in %s", key, value.Type()))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
preloadMap[strings.Join(keys[:i+1], ".")] = true
|
|
|
|
|
|
|
|
nextLoop:
|
|
|
|
if i < len(keys)-1 {
|
|
|
|
currentScope = currentScope.getColumnsAsScope(key)
|
|
|
|
currentFields = currentScope.Fields()
|
2015-02-11 08:43:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-21 11:51:52 +03:00
|
|
|
|
2015-02-11 08:43:53 +03:00
|
|
|
}
|
|
|
|
|
2015-02-17 17:55:14 +03:00
|
|
|
func makeSlice(typ reflect.Type) interface{} {
|
|
|
|
if typ.Kind() == reflect.Slice {
|
2015-02-11 08:43:53 +03:00
|
|
|
typ = typ.Elem()
|
|
|
|
}
|
|
|
|
sliceType := reflect.SliceOf(typ)
|
|
|
|
slice := reflect.New(sliceType)
|
|
|
|
slice.Elem().Set(reflect.MakeSlice(sliceType, 0, 0))
|
|
|
|
return slice.Interface()
|
|
|
|
}
|
|
|
|
|
2015-04-21 11:51:52 +03:00
|
|
|
func (scope *Scope) handleHasOnePreload(field *Field, conditions []interface{}) {
|
|
|
|
primaryName := scope.PrimaryField().Name
|
|
|
|
primaryKeys := scope.getColumnAsArray(primaryName)
|
|
|
|
if len(primaryKeys) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
results := makeSlice(field.Struct.Type)
|
|
|
|
relation := field.Relationship
|
|
|
|
condition := fmt.Sprintf("%v IN (?)", scope.Quote(relation.ForeignDBName))
|
|
|
|
resultValues := reflect.Indirect(reflect.ValueOf(results))
|
|
|
|
|
|
|
|
// TODO: handle error?
|
|
|
|
scope.NewDB().Where(condition, primaryKeys).Find(results, conditions...)
|
|
|
|
|
|
|
|
for i := 0; i < resultValues.Len(); i++ {
|
|
|
|
result := resultValues.Index(i)
|
|
|
|
if scope.IndirectValue().Kind() == reflect.Slice {
|
|
|
|
value := getRealValue(result, relation.ForeignFieldName)
|
|
|
|
objects := scope.IndirectValue()
|
|
|
|
for j := 0; j < objects.Len(); j++ {
|
|
|
|
if equalAsString(getRealValue(objects.Index(j), primaryName), value) {
|
|
|
|
reflect.Indirect(objects.Index(j)).FieldByName(field.Name).Set(result)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
err := scope.SetColumn(field, result)
|
|
|
|
if err != nil {
|
|
|
|
scope.Err(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *Scope) handleHasManyPreload(field *Field, conditions []interface{}) {
|
|
|
|
primaryName := scope.PrimaryField().Name
|
|
|
|
primaryKeys := scope.getColumnAsArray(primaryName)
|
|
|
|
if len(primaryKeys) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
results := makeSlice(field.Struct.Type)
|
|
|
|
relation := field.Relationship
|
|
|
|
condition := fmt.Sprintf("%v IN (?)", scope.Quote(relation.ForeignDBName))
|
|
|
|
resultValues := reflect.Indirect(reflect.ValueOf(results))
|
|
|
|
|
|
|
|
scope.NewDB().Where(condition, primaryKeys).Find(results, conditions...)
|
|
|
|
|
|
|
|
if scope.IndirectValue().Kind() == reflect.Slice {
|
|
|
|
for i := 0; i < resultValues.Len(); i++ {
|
|
|
|
result := resultValues.Index(i)
|
|
|
|
value := getRealValue(result, relation.ForeignFieldName)
|
|
|
|
objects := scope.IndirectValue()
|
|
|
|
for j := 0; j < objects.Len(); j++ {
|
|
|
|
object := reflect.Indirect(objects.Index(j))
|
|
|
|
if equalAsString(getRealValue(object, primaryName), value) {
|
|
|
|
f := object.FieldByName(field.Name)
|
|
|
|
f.Set(reflect.Append(f, result))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
scope.SetColumn(field, resultValues)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *Scope) handleBelongsToPreload(field *Field, conditions []interface{}) {
|
|
|
|
relation := field.Relationship
|
|
|
|
primaryKeys := scope.getColumnAsArray(relation.ForeignFieldName)
|
|
|
|
if len(primaryKeys) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
results := makeSlice(field.Struct.Type)
|
|
|
|
resultValues := reflect.Indirect(reflect.ValueOf(results))
|
|
|
|
associationPrimaryKey := scope.New(results).PrimaryField().Name
|
|
|
|
|
|
|
|
scope.NewDB().Where(primaryKeys).Find(results, conditions...)
|
|
|
|
|
|
|
|
for i := 0; i < resultValues.Len(); i++ {
|
|
|
|
result := resultValues.Index(i)
|
|
|
|
if scope.IndirectValue().Kind() == reflect.Slice {
|
|
|
|
value := getRealValue(result, associationPrimaryKey)
|
|
|
|
objects := scope.IndirectValue()
|
|
|
|
for j := 0; j < objects.Len(); j++ {
|
|
|
|
object := reflect.Indirect(objects.Index(j))
|
|
|
|
if equalAsString(getRealValue(object, relation.ForeignFieldName), value) {
|
|
|
|
object.FieldByName(field.Name).Set(result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
scope.SetColumn(field, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 10:00:36 +03:00
|
|
|
func (scope *Scope) getColumnAsArray(column string) (columns []interface{}) {
|
2015-02-11 08:43:53 +03:00
|
|
|
values := scope.IndirectValue()
|
|
|
|
switch values.Kind() {
|
|
|
|
case reflect.Slice:
|
|
|
|
for i := 0; i < values.Len(); i++ {
|
2015-04-21 10:00:36 +03:00
|
|
|
columns = append(columns, reflect.Indirect(values.Index(i)).FieldByName(column).Interface())
|
2015-02-11 08:43:53 +03:00
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
return []interface{}{values.FieldByName(column).Interface()}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-04-21 10:00:36 +03:00
|
|
|
|
|
|
|
func (scope *Scope) getColumnsAsScope(column string) *Scope {
|
|
|
|
values := scope.IndirectValue()
|
|
|
|
switch values.Kind() {
|
|
|
|
case reflect.Slice:
|
2015-04-21 11:51:52 +03:00
|
|
|
model := values.Type().Elem()
|
|
|
|
if model.Kind() == reflect.Ptr {
|
|
|
|
model = model.Elem()
|
|
|
|
}
|
|
|
|
fieldType, _ := model.FieldByName(column)
|
2015-04-21 10:00:36 +03:00
|
|
|
var columns reflect.Value
|
|
|
|
if fieldType.Type.Kind() == reflect.Slice {
|
|
|
|
columns = reflect.New(reflect.SliceOf(reflect.PtrTo(fieldType.Type.Elem()))).Elem()
|
|
|
|
} else {
|
|
|
|
columns = reflect.New(reflect.SliceOf(reflect.PtrTo(fieldType.Type))).Elem()
|
|
|
|
}
|
|
|
|
for i := 0; i < values.Len(); i++ {
|
|
|
|
column := reflect.Indirect(values.Index(i)).FieldByName(column)
|
|
|
|
if column.Kind() == reflect.Slice {
|
|
|
|
for i := 0; i < column.Len(); i++ {
|
|
|
|
columns = reflect.Append(columns, column.Index(i).Addr())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
columns = reflect.Append(columns, column.Addr())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return scope.New(columns.Interface())
|
|
|
|
case reflect.Struct:
|
|
|
|
return scope.New(values.FieldByName(column).Addr().Interface())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|