2014-01-26 08:41:37 +04:00
|
|
|
package gorm
|
|
|
|
|
2014-01-26 09:51:23 +04:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-01-26 10:18:21 +04:00
|
|
|
"strings"
|
2014-01-26 13:10:33 +04:00
|
|
|
"time"
|
2014-01-26 09:51:23 +04:00
|
|
|
|
|
|
|
"reflect"
|
|
|
|
)
|
2014-01-26 08:41:37 +04:00
|
|
|
|
|
|
|
type Scope struct {
|
2014-11-11 06:46:21 +03:00
|
|
|
Value interface{}
|
|
|
|
indirectValue *reflect.Value
|
|
|
|
Search *search
|
|
|
|
Sql string
|
|
|
|
SqlVars []interface{}
|
|
|
|
db *DB
|
|
|
|
skipLeft bool
|
|
|
|
primaryKeyField *Field
|
|
|
|
instanceId string
|
|
|
|
fields map[string]*Field
|
2014-07-30 10:58:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *Scope) IndirectValue() reflect.Value {
|
|
|
|
if scope.indirectValue == nil {
|
|
|
|
value := reflect.Indirect(reflect.ValueOf(scope.Value))
|
2015-02-17 18:36:23 +03:00
|
|
|
if value.Kind() == reflect.Ptr {
|
|
|
|
value = value.Elem()
|
|
|
|
}
|
2014-07-30 10:58:00 +04:00
|
|
|
scope.indirectValue = &value
|
|
|
|
}
|
|
|
|
return *scope.indirectValue
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// NewScope create scope for callbacks, including DB's search information
|
2014-01-27 04:26:59 +04:00
|
|
|
func (db *DB) NewScope(value interface{}) *Scope {
|
2014-01-27 07:06:13 +04:00
|
|
|
db.Value = value
|
2014-08-20 12:25:01 +04:00
|
|
|
return &Scope{db: db, Search: db.search, Value: value}
|
2014-01-26 09:51:23 +04:00
|
|
|
}
|
|
|
|
|
2014-11-25 08:44:14 +03:00
|
|
|
func (scope *Scope) NeedPtr() *Scope {
|
|
|
|
reflectKind := reflect.ValueOf(scope.Value).Kind()
|
|
|
|
if !((reflectKind == reflect.Invalid) || (reflectKind == reflect.Ptr)) {
|
2015-02-17 02:15:34 +03:00
|
|
|
err := fmt.Errorf("%v %v\n", fileWithLineNum(), "using unaddressable value")
|
2014-11-25 08:44:14 +03:00
|
|
|
scope.Err(err)
|
|
|
|
fmt.Printf(err.Error())
|
|
|
|
}
|
|
|
|
return scope
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// New create a new Scope without search information
|
2014-01-27 04:26:59 +04:00
|
|
|
func (scope *Scope) New(value interface{}) *Scope {
|
2014-08-27 12:40:32 +04:00
|
|
|
return &Scope{db: scope.db, Search: &search{}, Value: value}
|
2014-01-27 04:26:59 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// NewDB create a new DB without search information
|
2014-01-27 04:26:59 +04:00
|
|
|
func (scope *Scope) NewDB() *DB {
|
2015-01-06 10:11:41 +03:00
|
|
|
return scope.db.New()
|
2014-01-27 04:26:59 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// DB get *sql.DB
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) DB() sqlCommon {
|
|
|
|
return scope.db.db
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// SkipLeft skip remaining callbacks
|
2014-01-29 08:00:57 +04:00
|
|
|
func (scope *Scope) SkipLeft() {
|
|
|
|
scope.skipLeft = true
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Quote used to quote database column name according to database dialect
|
2014-01-29 08:00:57 +04:00
|
|
|
func (scope *Scope) Quote(str string) string {
|
|
|
|
return scope.Dialect().Quote(str)
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Dialect get dialect
|
2014-04-25 03:20:23 +04:00
|
|
|
func (scope *Scope) Dialect() Dialect {
|
2014-01-26 08:41:37 +04:00
|
|
|
return scope.db.parent.dialect
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Err write error
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) Err(err error) error {
|
|
|
|
if err != nil {
|
|
|
|
scope.db.err(err)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Log print log message
|
2014-01-28 04:27:12 +04:00
|
|
|
func (scope *Scope) Log(v ...interface{}) {
|
|
|
|
scope.db.log(v...)
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// HasError check if there are any error
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) HasError() bool {
|
2014-01-28 12:29:42 +04:00
|
|
|
return scope.db.Error != nil
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-11-11 06:46:21 +03:00
|
|
|
func (scope *Scope) PrimaryKeyField() *Field {
|
2015-02-17 09:30:37 +03:00
|
|
|
if field := scope.GetModelStruct().PrimaryKeyField; field != nil {
|
2015-02-17 13:37:47 +03:00
|
|
|
return scope.Fields()[field.DBName]
|
2015-02-17 09:30:37 +03:00
|
|
|
}
|
|
|
|
return nil
|
2014-11-11 06:46:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// PrimaryKey get the primary key's column name
|
|
|
|
func (scope *Scope) PrimaryKey() string {
|
|
|
|
if field := scope.PrimaryKeyField(); field != nil {
|
|
|
|
return field.DBName
|
|
|
|
}
|
2015-02-17 02:15:34 +03:00
|
|
|
return ""
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// PrimaryKeyZero check the primary key is blank or not
|
2014-01-26 13:10:33 +04:00
|
|
|
func (scope *Scope) PrimaryKeyZero() bool {
|
2015-02-17 17:55:14 +03:00
|
|
|
field := scope.PrimaryKeyField()
|
|
|
|
return field == nil || field.IsBlank
|
2014-01-26 13:10:33 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// PrimaryKeyValue get the primary key's value
|
2014-01-26 13:10:33 +04:00
|
|
|
func (scope *Scope) PrimaryKeyValue() interface{} {
|
2015-02-16 12:47:07 +03:00
|
|
|
if field := scope.PrimaryKeyField(); field != nil && field.Field.IsValid() {
|
2014-11-11 06:46:21 +03:00
|
|
|
return field.Field.Interface()
|
2014-01-26 13:10:33 +04:00
|
|
|
}
|
2015-02-17 02:15:34 +03:00
|
|
|
return 0
|
2014-01-26 13:10:33 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// HasColumn to check if has column
|
2015-01-19 11:23:33 +03:00
|
|
|
func (scope *Scope) HasColumn(column string) bool {
|
2015-02-17 12:40:21 +03:00
|
|
|
for _, field := range scope.GetStructFields() {
|
2015-02-17 17:55:14 +03:00
|
|
|
if field.IsNormal && (field.Name == column || field.DBName == column) {
|
|
|
|
return true
|
2015-02-17 12:40:21 +03:00
|
|
|
}
|
2014-09-01 13:03:58 +04:00
|
|
|
}
|
2015-02-17 12:40:21 +03:00
|
|
|
return false
|
2014-01-28 08:28:44 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// SetColumn to set the column's value
|
2014-09-30 16:02:51 +04:00
|
|
|
func (scope *Scope) SetColumn(column interface{}, value interface{}) error {
|
2014-09-02 15:03:01 +04:00
|
|
|
if field, ok := column.(*Field); ok {
|
|
|
|
return field.Set(value)
|
2015-01-16 05:02:04 +03:00
|
|
|
} else if dbName, ok := column.(string); ok {
|
|
|
|
if field, ok := scope.Fields()[dbName]; ok {
|
|
|
|
return field.Set(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
dbName = ToSnake(dbName)
|
2014-09-30 16:02:51 +04:00
|
|
|
if field, ok := scope.Fields()[dbName]; ok {
|
|
|
|
return field.Set(value)
|
2014-08-30 18:39:28 +04:00
|
|
|
}
|
|
|
|
}
|
2014-09-30 16:02:51 +04:00
|
|
|
return errors.New("could not convert column to field")
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// CallMethod invoke method with necessary argument
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) CallMethod(name string) {
|
2014-01-27 18:36:08 +04:00
|
|
|
if scope.Value == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-01-28 05:25:30 +04:00
|
|
|
call := func(value interface{}) {
|
|
|
|
if fm := reflect.ValueOf(value).MethodByName(name); fm.IsValid() {
|
2014-10-06 13:11:07 +04:00
|
|
|
switch f := fm.Interface().(type) {
|
2014-10-07 18:33:57 +04:00
|
|
|
case func():
|
|
|
|
f()
|
|
|
|
case func(s *Scope):
|
|
|
|
f(scope)
|
|
|
|
case func(s *DB):
|
2015-01-06 10:11:41 +03:00
|
|
|
f(scope.db.New())
|
2014-10-07 18:33:57 +04:00
|
|
|
case func() error:
|
|
|
|
scope.Err(f())
|
|
|
|
case func(s *Scope) error:
|
|
|
|
scope.Err(f(scope))
|
|
|
|
case func(s *DB) error:
|
2015-01-06 10:11:41 +03:00
|
|
|
scope.Err(f(scope.db.New()))
|
2014-10-07 18:33:57 +04:00
|
|
|
default:
|
2015-02-17 02:15:34 +03:00
|
|
|
scope.Err(fmt.Errorf("unsupported function %v", name))
|
2014-01-28 05:25:30 +04:00
|
|
|
}
|
2014-01-26 09:51:23 +04:00
|
|
|
}
|
|
|
|
}
|
2014-01-28 05:25:30 +04:00
|
|
|
|
2014-07-30 10:58:00 +04:00
|
|
|
if values := scope.IndirectValue(); values.Kind() == reflect.Slice {
|
2014-01-28 05:25:30 +04:00
|
|
|
for i := 0; i < values.Len(); i++ {
|
|
|
|
call(values.Index(i).Addr().Interface())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
call(scope.Value)
|
|
|
|
}
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// AddToVars add value as sql's vars, gorm will escape them
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) AddToVars(value interface{}) string {
|
2014-01-26 10:18:21 +04:00
|
|
|
scope.SqlVars = append(scope.SqlVars, value)
|
|
|
|
return scope.Dialect().BinVar(len(scope.SqlVars))
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// TableName get table name
|
2014-01-26 08:41:37 +04:00
|
|
|
func (scope *Scope) TableName() string {
|
2014-01-28 12:56:51 +04:00
|
|
|
if scope.Search != nil && len(scope.Search.TableName) > 0 {
|
|
|
|
return scope.Search.TableName
|
2015-02-17 03:34:01 +03:00
|
|
|
}
|
2015-02-17 17:55:14 +03:00
|
|
|
return scope.GetModelStruct().TableName
|
2014-01-26 10:18:21 +04:00
|
|
|
}
|
|
|
|
|
2014-06-03 13:15:05 +04:00
|
|
|
func (scope *Scope) QuotedTableName() string {
|
|
|
|
if scope.Search != nil && len(scope.Search.TableName) > 0 {
|
|
|
|
return scope.Search.TableName
|
|
|
|
}
|
2015-02-17 02:15:34 +03:00
|
|
|
|
|
|
|
keys := strings.Split(scope.TableName(), ".")
|
|
|
|
for i, v := range keys {
|
|
|
|
keys[i] = scope.Quote(v)
|
|
|
|
}
|
|
|
|
return strings.Join(keys, ".")
|
|
|
|
|
2014-06-03 13:15:05 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// CombinedConditionSql get combined condition sql
|
2014-01-29 04:55:45 +04:00
|
|
|
func (scope *Scope) CombinedConditionSql() string {
|
|
|
|
return scope.joinsSql() + scope.whereSql() + scope.groupSql() +
|
|
|
|
scope.havingSql() + scope.orderSql() + scope.limitSql() + scope.offsetSql()
|
2014-01-26 10:55:41 +04:00
|
|
|
}
|
|
|
|
|
2014-07-31 07:08:26 +04:00
|
|
|
func (scope *Scope) FieldByName(name string) (field *Field, ok bool) {
|
2014-09-02 15:03:01 +04:00
|
|
|
for _, field := range scope.Fields() {
|
|
|
|
if field.Name == name {
|
|
|
|
return field, true
|
2014-07-31 07:08:26 +04:00
|
|
|
}
|
|
|
|
}
|
2014-08-28 13:21:43 +04:00
|
|
|
return nil, false
|
2014-07-31 07:08:26 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Raw set sql
|
2014-01-28 11:54:19 +04:00
|
|
|
func (scope *Scope) Raw(sql string) *Scope {
|
2014-01-26 10:18:21 +04:00
|
|
|
scope.Sql = strings.Replace(sql, "$$", "?", -1)
|
2014-01-28 11:54:19 +04:00
|
|
|
return scope
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Exec invoke sql
|
2014-01-28 06:23:31 +04:00
|
|
|
func (scope *Scope) Exec() *Scope {
|
2014-08-23 12:00:04 +04:00
|
|
|
defer scope.Trace(NowFunc())
|
2014-01-28 11:54:19 +04:00
|
|
|
|
2014-01-26 10:18:21 +04:00
|
|
|
if !scope.HasError() {
|
2015-02-17 17:55:14 +03:00
|
|
|
if result, err := scope.DB().Exec(scope.Sql, scope.SqlVars...); scope.Err(err) == nil {
|
2014-06-05 13:58:14 +04:00
|
|
|
if count, err := result.RowsAffected(); err == nil {
|
|
|
|
scope.db.RowsAffected = count
|
|
|
|
}
|
|
|
|
}
|
2014-01-26 10:18:21 +04:00
|
|
|
}
|
2014-01-28 06:23:31 +04:00
|
|
|
return scope
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
2014-01-26 13:10:33 +04:00
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Set set value by name
|
2014-08-20 13:05:02 +04:00
|
|
|
func (scope *Scope) Set(name string, value interface{}) *Scope {
|
2014-08-25 13:10:46 +04:00
|
|
|
scope.db.InstantSet(name, value)
|
2014-08-20 13:05:02 +04:00
|
|
|
return scope
|
2014-01-27 07:56:04 +04:00
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Get get value by name
|
2014-08-20 12:25:01 +04:00
|
|
|
func (scope *Scope) Get(name string) (interface{}, bool) {
|
|
|
|
return scope.db.Get(name)
|
2014-01-29 15:14:37 +04:00
|
|
|
}
|
|
|
|
|
2014-08-20 13:05:02 +04:00
|
|
|
// InstanceId get InstanceId for scope
|
|
|
|
func (scope *Scope) InstanceId() string {
|
|
|
|
if scope.instanceId == "" {
|
2015-01-26 12:59:31 +03:00
|
|
|
scope.instanceId = fmt.Sprintf("%v%v", &scope, &scope.db)
|
2014-08-20 13:05:02 +04:00
|
|
|
}
|
|
|
|
return scope.instanceId
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *Scope) InstanceSet(name string, value interface{}) *Scope {
|
|
|
|
return scope.Set(name+scope.InstanceId(), value)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (scope *Scope) InstanceGet(name string) (interface{}, bool) {
|
|
|
|
return scope.Get(name + scope.InstanceId())
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Trace print sql log
|
2014-01-26 13:10:33 +04:00
|
|
|
func (scope *Scope) Trace(t time.Time) {
|
|
|
|
if len(scope.Sql) > 0 {
|
|
|
|
scope.db.slog(scope.Sql, t, scope.SqlVars...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// Begin start a transaction
|
2014-01-26 13:10:33 +04:00
|
|
|
func (scope *Scope) Begin() *Scope {
|
2014-01-27 06:47:37 +04:00
|
|
|
if db, ok := scope.DB().(sqlDb); ok {
|
|
|
|
if tx, err := db.Begin(); err == nil {
|
|
|
|
scope.db.db = interface{}(tx).(sqlCommon)
|
2014-08-20 13:05:02 +04:00
|
|
|
scope.InstanceSet("gorm:started_transaction", true)
|
2014-01-27 06:47:37 +04:00
|
|
|
}
|
2014-01-26 13:10:33 +04:00
|
|
|
}
|
|
|
|
return scope
|
|
|
|
}
|
|
|
|
|
2014-01-29 15:14:37 +04:00
|
|
|
// CommitOrRollback commit current transaction if there is no error, otherwise rollback it
|
2014-01-26 13:10:33 +04:00
|
|
|
func (scope *Scope) CommitOrRollback() *Scope {
|
2014-08-20 13:05:02 +04:00
|
|
|
if _, ok := scope.InstanceGet("gorm:started_transaction"); ok {
|
2014-01-26 13:10:33 +04:00
|
|
|
if db, ok := scope.db.db.(sqlTx); ok {
|
|
|
|
if scope.HasError() {
|
|
|
|
db.Rollback()
|
|
|
|
} else {
|
|
|
|
db.Commit()
|
|
|
|
}
|
|
|
|
scope.db.db = scope.db.parent.db
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return scope
|
|
|
|
}
|