2016-11-03 18:16:01 -04:00
|
|
|
// Copyright 2015 The Xorm Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package xorm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql/driver"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2019-06-23 11:22:43 -04:00
|
|
|
"xorm.io/builder"
|
|
|
|
"xorm.io/core"
|
2016-11-03 18:16:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Statement save all the sql info for executing SQL
|
|
|
|
type Statement struct {
|
|
|
|
RefTable *core.Table
|
|
|
|
Engine *Engine
|
|
|
|
Start int
|
|
|
|
LimitN int
|
2017-04-06 21:47:25 -04:00
|
|
|
idParam *core.PK
|
2016-11-03 18:16:01 -04:00
|
|
|
OrderStr string
|
|
|
|
JoinStr string
|
|
|
|
joinArgs []interface{}
|
|
|
|
GroupByStr string
|
|
|
|
HavingStr string
|
|
|
|
ColumnStr string
|
|
|
|
selectStr string
|
|
|
|
useAllCols bool
|
|
|
|
OmitStr string
|
|
|
|
AltTableName string
|
|
|
|
tableName string
|
|
|
|
RawSQL string
|
|
|
|
RawParams []interface{}
|
|
|
|
UseCascade bool
|
|
|
|
UseAutoJoin bool
|
|
|
|
StoreEngine string
|
|
|
|
Charset string
|
|
|
|
UseCache bool
|
|
|
|
UseAutoTime bool
|
|
|
|
noAutoCondition bool
|
|
|
|
IsDistinct bool
|
|
|
|
IsForUpdate bool
|
|
|
|
TableAlias string
|
|
|
|
allUseBool bool
|
|
|
|
checkVersion bool
|
|
|
|
unscoped bool
|
2018-07-19 22:10:17 -04:00
|
|
|
columnMap columnMap
|
|
|
|
omitColumnMap columnMap
|
2016-11-03 18:16:01 -04:00
|
|
|
mustColumnMap map[string]bool
|
|
|
|
nullableMap map[string]bool
|
|
|
|
incrColumns map[string]incrParam
|
|
|
|
decrColumns map[string]decrParam
|
|
|
|
exprColumns map[string]exprParam
|
|
|
|
cond builder.Cond
|
2017-10-01 12:52:35 -04:00
|
|
|
bufferSize int
|
2018-12-11 20:01:41 -05:00
|
|
|
context ContextCache
|
2019-06-23 11:22:43 -04:00
|
|
|
lastError error
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Init reset all the statement's fields
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Init() {
|
|
|
|
statement.RefTable = nil
|
|
|
|
statement.Start = 0
|
|
|
|
statement.LimitN = 0
|
|
|
|
statement.OrderStr = ""
|
|
|
|
statement.UseCascade = true
|
|
|
|
statement.JoinStr = ""
|
|
|
|
statement.joinArgs = make([]interface{}, 0)
|
|
|
|
statement.GroupByStr = ""
|
|
|
|
statement.HavingStr = ""
|
|
|
|
statement.ColumnStr = ""
|
|
|
|
statement.OmitStr = ""
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.columnMap = columnMap{}
|
|
|
|
statement.omitColumnMap = columnMap{}
|
2016-11-03 18:16:01 -04:00
|
|
|
statement.AltTableName = ""
|
|
|
|
statement.tableName = ""
|
2017-04-06 21:47:25 -04:00
|
|
|
statement.idParam = nil
|
2016-11-03 18:16:01 -04:00
|
|
|
statement.RawSQL = ""
|
|
|
|
statement.RawParams = make([]interface{}, 0)
|
|
|
|
statement.UseCache = true
|
|
|
|
statement.UseAutoTime = true
|
|
|
|
statement.noAutoCondition = false
|
|
|
|
statement.IsDistinct = false
|
|
|
|
statement.IsForUpdate = false
|
|
|
|
statement.TableAlias = ""
|
|
|
|
statement.selectStr = ""
|
|
|
|
statement.allUseBool = false
|
|
|
|
statement.useAllCols = false
|
|
|
|
statement.mustColumnMap = make(map[string]bool)
|
|
|
|
statement.nullableMap = make(map[string]bool)
|
|
|
|
statement.checkVersion = true
|
|
|
|
statement.unscoped = false
|
|
|
|
statement.incrColumns = make(map[string]incrParam)
|
|
|
|
statement.decrColumns = make(map[string]decrParam)
|
|
|
|
statement.exprColumns = make(map[string]exprParam)
|
|
|
|
statement.cond = builder.NewCond()
|
2017-10-01 12:52:35 -04:00
|
|
|
statement.bufferSize = 0
|
2018-12-11 20:01:41 -05:00
|
|
|
statement.context = nil
|
2019-06-23 11:22:43 -04:00
|
|
|
statement.lastError = nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NoAutoCondition if you do not want convert bean's field as query condition, then use this function
|
|
|
|
func (statement *Statement) NoAutoCondition(no ...bool) *Statement {
|
|
|
|
statement.noAutoCondition = true
|
|
|
|
if len(no) > 0 {
|
|
|
|
statement.noAutoCondition = no[0]
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alias set the table alias
|
|
|
|
func (statement *Statement) Alias(alias string) *Statement {
|
|
|
|
statement.TableAlias = alias
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
// SQL adds raw sql statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) SQL(query interface{}, args ...interface{}) *Statement {
|
|
|
|
switch query.(type) {
|
|
|
|
case (*builder.Builder):
|
|
|
|
var err error
|
|
|
|
statement.RawSQL, statement.RawParams, err = query.(*builder.Builder).ToSQL()
|
|
|
|
if err != nil {
|
2019-06-23 11:22:43 -04:00
|
|
|
statement.lastError = err
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
case string:
|
|
|
|
statement.RawSQL = query.(string)
|
|
|
|
statement.RawParams = args
|
|
|
|
default:
|
2019-06-23 11:22:43 -04:00
|
|
|
statement.lastError = ErrUnSupportedSQLType
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Where add Where statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Where(query interface{}, args ...interface{}) *Statement {
|
|
|
|
return statement.And(query, args...)
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// And add Where & and statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) And(query interface{}, args ...interface{}) *Statement {
|
|
|
|
switch query.(type) {
|
|
|
|
case string:
|
|
|
|
cond := builder.Expr(query.(string), args...)
|
|
|
|
statement.cond = statement.cond.And(cond)
|
2018-01-27 10:20:59 -05:00
|
|
|
case map[string]interface{}:
|
|
|
|
cond := builder.Eq(query.(map[string]interface{}))
|
|
|
|
statement.cond = statement.cond.And(cond)
|
2016-11-03 18:16:01 -04:00
|
|
|
case builder.Cond:
|
|
|
|
cond := query.(builder.Cond)
|
|
|
|
statement.cond = statement.cond.And(cond)
|
|
|
|
for _, v := range args {
|
|
|
|
if vv, ok := v.(builder.Cond); ok {
|
|
|
|
statement.cond = statement.cond.And(vv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
2019-06-23 11:22:43 -04:00
|
|
|
statement.lastError = ErrConditionType
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Or add Where & Or statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Or(query interface{}, args ...interface{}) *Statement {
|
|
|
|
switch query.(type) {
|
|
|
|
case string:
|
|
|
|
cond := builder.Expr(query.(string), args...)
|
|
|
|
statement.cond = statement.cond.Or(cond)
|
2018-01-27 10:20:59 -05:00
|
|
|
case map[string]interface{}:
|
|
|
|
cond := builder.Eq(query.(map[string]interface{}))
|
|
|
|
statement.cond = statement.cond.Or(cond)
|
2016-11-03 18:16:01 -04:00
|
|
|
case builder.Cond:
|
|
|
|
cond := query.(builder.Cond)
|
|
|
|
statement.cond = statement.cond.Or(cond)
|
|
|
|
for _, v := range args {
|
|
|
|
if vv, ok := v.(builder.Cond); ok {
|
|
|
|
statement.cond = statement.cond.Or(vv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// TODO: not support condition type
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// In generate "Where column IN (?) " statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) In(column string, args ...interface{}) *Statement {
|
2017-04-06 21:47:25 -04:00
|
|
|
in := builder.In(statement.Engine.Quote(column), args...)
|
2016-11-03 18:16:01 -04:00
|
|
|
statement.cond = statement.cond.And(in)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// NotIn generate "Where column NOT IN (?) " statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) NotIn(column string, args ...interface{}) *Statement {
|
2017-04-06 21:47:25 -04:00
|
|
|
notIn := builder.NotIn(statement.Engine.Quote(column), args...)
|
|
|
|
statement.cond = statement.cond.And(notIn)
|
2016-11-03 18:16:01 -04:00
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-04-06 21:47:25 -04:00
|
|
|
func (statement *Statement) setRefValue(v reflect.Value) error {
|
|
|
|
var err error
|
|
|
|
statement.RefTable, err = statement.Engine.autoMapType(reflect.Indirect(v))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.tableName = statement.Engine.TableName(v, true)
|
2017-04-06 21:47:25 -04:00
|
|
|
return nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
func (statement *Statement) setRefBean(bean interface{}) error {
|
|
|
|
var err error
|
|
|
|
statement.RefTable, err = statement.Engine.autoMapType(rValue(bean))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.tableName = statement.Engine.TableName(bean, true)
|
|
|
|
return nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Auto generating update columnes and values according a struct
|
2018-07-19 22:10:17 -04:00
|
|
|
func (statement *Statement) buildUpdates(bean interface{},
|
|
|
|
includeVersion, includeUpdated, includeNil,
|
|
|
|
includeAutoIncr, update bool) ([]string, []interface{}) {
|
|
|
|
engine := statement.Engine
|
|
|
|
table := statement.RefTable
|
|
|
|
allUseBool := statement.allUseBool
|
|
|
|
useAllCols := statement.useAllCols
|
|
|
|
mustColumnMap := statement.mustColumnMap
|
|
|
|
nullableMap := statement.nullableMap
|
|
|
|
columnMap := statement.columnMap
|
|
|
|
omitColumnMap := statement.omitColumnMap
|
|
|
|
unscoped := statement.unscoped
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
var colNames = make([]string, 0)
|
|
|
|
var args = make([]interface{}, 0)
|
|
|
|
for _, col := range table.Columns() {
|
|
|
|
if !includeVersion && col.IsVersion {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if col.IsCreated {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !includeUpdated && col.IsUpdated {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !includeAutoIncr && col.IsAutoIncrement {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if col.IsDeleted && !unscoped {
|
|
|
|
continue
|
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
if omitColumnMap.contain(col.Name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if len(columnMap) > 0 && !columnMap.contain(col.Name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if col.MapType == core.ONLYFROMDB {
|
2016-11-03 18:16:01 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldValuePtr, err := col.ValueOf(bean)
|
|
|
|
if err != nil {
|
|
|
|
engine.logger.Error(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldValue := *fieldValuePtr
|
|
|
|
fieldType := reflect.TypeOf(fieldValue.Interface())
|
2017-08-22 07:39:52 -04:00
|
|
|
if fieldType == nil {
|
|
|
|
continue
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
requiredField := useAllCols
|
|
|
|
includeNil := useAllCols
|
|
|
|
|
2017-01-03 03:20:28 -05:00
|
|
|
if b, ok := getFlagForColumn(mustColumnMap, col); ok {
|
2016-11-03 18:16:01 -04:00
|
|
|
if b {
|
|
|
|
requiredField = true
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// !evalphobia! set fieldValue as nil when column is nullable and zero-value
|
2017-01-03 03:20:28 -05:00
|
|
|
if b, ok := getFlagForColumn(nullableMap, col); ok {
|
2016-11-03 18:16:01 -04:00
|
|
|
if b && col.Nullable && isZero(fieldValue.Interface()) {
|
|
|
|
var nilValue *int
|
|
|
|
fieldValue = reflect.ValueOf(nilValue)
|
|
|
|
fieldType = reflect.TypeOf(fieldValue.Interface())
|
|
|
|
includeNil = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var val interface{}
|
|
|
|
|
|
|
|
if fieldValue.CanAddr() {
|
|
|
|
if structConvert, ok := fieldValue.Addr().Interface().(core.Conversion); ok {
|
|
|
|
data, err := structConvert.ToDB()
|
|
|
|
if err != nil {
|
|
|
|
engine.logger.Error(err)
|
|
|
|
} else {
|
|
|
|
val = data
|
|
|
|
}
|
|
|
|
goto APPEND
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if structConvert, ok := fieldValue.Interface().(core.Conversion); ok {
|
|
|
|
data, err := structConvert.ToDB()
|
|
|
|
if err != nil {
|
|
|
|
engine.logger.Error(err)
|
|
|
|
} else {
|
|
|
|
val = data
|
|
|
|
}
|
|
|
|
goto APPEND
|
|
|
|
}
|
|
|
|
|
|
|
|
if fieldType.Kind() == reflect.Ptr {
|
|
|
|
if fieldValue.IsNil() {
|
|
|
|
if includeNil {
|
|
|
|
args = append(args, nil)
|
|
|
|
colNames = append(colNames, fmt.Sprintf("%v=?", engine.Quote(col.Name)))
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
} else if !fieldValue.IsValid() {
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
// dereference ptr type to instance type
|
|
|
|
fieldValue = fieldValue.Elem()
|
|
|
|
fieldType = reflect.TypeOf(fieldValue.Interface())
|
|
|
|
requiredField = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch fieldType.Kind() {
|
|
|
|
case reflect.Bool:
|
|
|
|
if allUseBool || requiredField {
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
} else {
|
|
|
|
// if a bool in a struct, it will not be as a condition because it default is false,
|
|
|
|
// please use Where() instead
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
case reflect.String:
|
|
|
|
if !requiredField && fieldValue.String() == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// for MyString, should convert to string or panic
|
|
|
|
if fieldType.String() != reflect.String.String() {
|
|
|
|
val = fieldValue.String()
|
|
|
|
} else {
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
}
|
|
|
|
case reflect.Int8, reflect.Int16, reflect.Int, reflect.Int32, reflect.Int64:
|
|
|
|
if !requiredField && fieldValue.Int() == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
if !requiredField && fieldValue.Float() == 0.0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
case reflect.Uint8, reflect.Uint16, reflect.Uint, reflect.Uint32, reflect.Uint64:
|
|
|
|
if !requiredField && fieldValue.Uint() == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
t := int64(fieldValue.Uint())
|
|
|
|
val = reflect.ValueOf(&t).Interface()
|
|
|
|
case reflect.Struct:
|
|
|
|
if fieldType.ConvertibleTo(core.TimeType) {
|
|
|
|
t := fieldValue.Convert(core.TimeType).Interface().(time.Time)
|
|
|
|
if !requiredField && (t.IsZero() || !fieldValue.IsValid()) {
|
|
|
|
continue
|
|
|
|
}
|
2017-08-22 07:39:52 -04:00
|
|
|
val = engine.formatColTime(col, t)
|
2016-11-03 18:16:01 -04:00
|
|
|
} else if nulType, ok := fieldValue.Interface().(driver.Valuer); ok {
|
|
|
|
val, _ = nulType.Value()
|
|
|
|
} else {
|
|
|
|
if !col.SQLType.IsJson() {
|
|
|
|
engine.autoMapType(fieldValue)
|
|
|
|
if table, ok := engine.Tables[fieldValue.Type()]; ok {
|
|
|
|
if len(table.PrimaryKeys) == 1 {
|
|
|
|
pkField := reflect.Indirect(fieldValue).FieldByName(table.PKColumns()[0].FieldName)
|
|
|
|
// fix non-int pk issues
|
|
|
|
if pkField.IsValid() && (!requiredField && !isZero(pkField.Interface())) {
|
|
|
|
val = pkField.Interface()
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//TODO: how to handler?
|
|
|
|
panic("not supported")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Blank struct could not be as update data
|
|
|
|
if requiredField || !isStructZero(fieldValue) {
|
2019-06-23 11:22:43 -04:00
|
|
|
bytes, err := DefaultJSONHandler.Marshal(fieldValue.Interface())
|
2016-11-03 18:16:01 -04:00
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("mashal %v failed", fieldValue.Interface()))
|
|
|
|
}
|
|
|
|
if col.SQLType.IsText() {
|
|
|
|
val = string(bytes)
|
|
|
|
} else if col.SQLType.IsBlob() {
|
|
|
|
val = bytes
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case reflect.Array, reflect.Slice, reflect.Map:
|
|
|
|
if !requiredField {
|
|
|
|
if fieldValue == reflect.Zero(fieldType) {
|
|
|
|
continue
|
|
|
|
}
|
2017-04-06 21:47:25 -04:00
|
|
|
if fieldType.Kind() == reflect.Array {
|
|
|
|
if isArrayValueZero(fieldValue) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else if fieldValue.IsNil() || !fieldValue.IsValid() || fieldValue.Len() == 0 {
|
2016-11-03 18:16:01 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if col.SQLType.IsText() {
|
2019-06-23 11:22:43 -04:00
|
|
|
bytes, err := DefaultJSONHandler.Marshal(fieldValue.Interface())
|
2016-11-03 18:16:01 -04:00
|
|
|
if err != nil {
|
|
|
|
engine.logger.Error(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
val = string(bytes)
|
|
|
|
} else if col.SQLType.IsBlob() {
|
|
|
|
var bytes []byte
|
|
|
|
var err error
|
2017-04-06 21:47:25 -04:00
|
|
|
if fieldType.Kind() == reflect.Slice &&
|
2016-11-03 18:16:01 -04:00
|
|
|
fieldType.Elem().Kind() == reflect.Uint8 {
|
|
|
|
if fieldValue.Len() > 0 {
|
|
|
|
val = fieldValue.Bytes()
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
2017-04-06 21:47:25 -04:00
|
|
|
} else if fieldType.Kind() == reflect.Array &&
|
|
|
|
fieldType.Elem().Kind() == reflect.Uint8 {
|
|
|
|
val = fieldValue.Slice(0, 0).Interface()
|
2016-11-03 18:16:01 -04:00
|
|
|
} else {
|
2019-06-23 11:22:43 -04:00
|
|
|
bytes, err = DefaultJSONHandler.Marshal(fieldValue.Interface())
|
2016-11-03 18:16:01 -04:00
|
|
|
if err != nil {
|
|
|
|
engine.logger.Error(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
val = bytes
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
val = fieldValue.Interface()
|
|
|
|
}
|
|
|
|
|
|
|
|
APPEND:
|
|
|
|
args = append(args, val)
|
|
|
|
if col.IsPrimaryKey && engine.dialect.DBType() == "ql" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
colNames = append(colNames, fmt.Sprintf("%v = ?", engine.Quote(col.Name)))
|
|
|
|
}
|
|
|
|
|
|
|
|
return colNames, args
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) needTableName() bool {
|
|
|
|
return len(statement.JoinStr) > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) colName(col *core.Column, tableName string) string {
|
|
|
|
if statement.needTableName() {
|
|
|
|
var nm = tableName
|
|
|
|
if len(statement.TableAlias) > 0 {
|
|
|
|
nm = statement.TableAlias
|
|
|
|
}
|
|
|
|
return statement.Engine.Quote(nm) + "." + statement.Engine.Quote(col.Name)
|
|
|
|
}
|
|
|
|
return statement.Engine.Quote(col.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TableName return current tableName
|
|
|
|
func (statement *Statement) TableName() string {
|
|
|
|
if statement.AltTableName != "" {
|
|
|
|
return statement.AltTableName
|
|
|
|
}
|
|
|
|
|
|
|
|
return statement.tableName
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// ID generate "where id = ? " statement or for composite key "where key1 = ? and key2 = ?"
|
2017-01-03 03:20:28 -05:00
|
|
|
func (statement *Statement) ID(id interface{}) *Statement {
|
2016-11-03 18:16:01 -04:00
|
|
|
idValue := reflect.ValueOf(id)
|
|
|
|
idType := reflect.TypeOf(idValue.Interface())
|
|
|
|
|
|
|
|
switch idType {
|
|
|
|
case ptrPkType:
|
|
|
|
if pkPtr, ok := (id).(*core.PK); ok {
|
2017-04-06 21:47:25 -04:00
|
|
|
statement.idParam = pkPtr
|
2016-11-03 18:16:01 -04:00
|
|
|
return statement
|
|
|
|
}
|
|
|
|
case pkType:
|
|
|
|
if pk, ok := (id).(core.PK); ok {
|
2017-04-06 21:47:25 -04:00
|
|
|
statement.idParam = &pk
|
2016-11-03 18:16:01 -04:00
|
|
|
return statement
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch idType.Kind() {
|
|
|
|
case reflect.String:
|
2017-04-06 21:47:25 -04:00
|
|
|
statement.idParam = &core.PK{idValue.Convert(reflect.TypeOf("")).Interface()}
|
2016-11-03 18:16:01 -04:00
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-04-06 21:47:25 -04:00
|
|
|
statement.idParam = &core.PK{id}
|
2016-11-03 18:16:01 -04:00
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Incr Generate "Update ... Set column = column + arg" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Incr(column string, arg ...interface{}) *Statement {
|
|
|
|
k := strings.ToLower(column)
|
|
|
|
if len(arg) > 0 {
|
|
|
|
statement.incrColumns[k] = incrParam{column, arg[0]}
|
|
|
|
} else {
|
|
|
|
statement.incrColumns[k] = incrParam{column, 1}
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Decr Generate "Update ... Set column = column - arg" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Decr(column string, arg ...interface{}) *Statement {
|
|
|
|
k := strings.ToLower(column)
|
|
|
|
if len(arg) > 0 {
|
|
|
|
statement.decrColumns[k] = decrParam{column, arg[0]}
|
|
|
|
} else {
|
|
|
|
statement.decrColumns[k] = decrParam{column, 1}
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// SetExpr Generate "Update ... Set column = {expression}" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) SetExpr(column string, expression string) *Statement {
|
|
|
|
k := strings.ToLower(column)
|
|
|
|
statement.exprColumns[k] = exprParam{column, expression}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Generate "Update ... Set column = column + arg" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) getInc() map[string]incrParam {
|
|
|
|
return statement.incrColumns
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Generate "Update ... Set column = column - arg" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) getDec() map[string]decrParam {
|
|
|
|
return statement.decrColumns
|
|
|
|
}
|
|
|
|
|
2017-01-23 04:11:18 -05:00
|
|
|
// Generate "Update ... Set column = {expression}" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) getExpr() map[string]exprParam {
|
|
|
|
return statement.exprColumns
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) col2NewColsWithQuote(columns ...string) []string {
|
|
|
|
newColumns := make([]string, 0)
|
|
|
|
for _, col := range columns {
|
|
|
|
col = strings.Replace(col, "`", "", -1)
|
|
|
|
col = strings.Replace(col, statement.Engine.QuoteStr(), "", -1)
|
|
|
|
ccols := strings.Split(col, ",")
|
|
|
|
for _, c := range ccols {
|
|
|
|
fields := strings.Split(strings.TrimSpace(c), ".")
|
|
|
|
if len(fields) == 1 {
|
|
|
|
newColumns = append(newColumns, statement.Engine.quote(fields[0]))
|
|
|
|
} else if len(fields) == 2 {
|
|
|
|
newColumns = append(newColumns, statement.Engine.quote(fields[0])+"."+
|
|
|
|
statement.Engine.quote(fields[1]))
|
|
|
|
} else {
|
|
|
|
panic(errors.New("unwanted colnames"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newColumns
|
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) colmap2NewColsWithQuote() []string {
|
2018-07-19 22:10:17 -04:00
|
|
|
newColumns := make([]string, len(statement.columnMap), len(statement.columnMap))
|
|
|
|
copy(newColumns, statement.columnMap)
|
|
|
|
for i := 0; i < len(statement.columnMap); i++ {
|
|
|
|
newColumns[i] = statement.Engine.Quote(newColumns[i])
|
2017-08-22 07:39:52 -04:00
|
|
|
}
|
|
|
|
return newColumns
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
// Distinct generates "DISTINCT col1, col2 " statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) Distinct(columns ...string) *Statement {
|
|
|
|
statement.IsDistinct = true
|
|
|
|
statement.Cols(columns...)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
// ForUpdate generates "SELECT ... FOR UPDATE" statement
|
2016-11-03 18:16:01 -04:00
|
|
|
func (statement *Statement) ForUpdate() *Statement {
|
|
|
|
statement.IsForUpdate = true
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select replace select
|
2016-11-11 11:40:21 -05:00
|
|
|
func (statement *Statement) Select(str string) *Statement {
|
|
|
|
statement.selectStr = str
|
|
|
|
return statement
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cols generate "col1, col2" statement
|
|
|
|
func (statement *Statement) Cols(columns ...string) *Statement {
|
|
|
|
cols := col2NewCols(columns...)
|
|
|
|
for _, nc := range cols {
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.columnMap.add(nc)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
newColumns := statement.colmap2NewColsWithQuote()
|
2018-07-19 22:10:17 -04:00
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
statement.ColumnStr = strings.Join(newColumns, ", ")
|
|
|
|
statement.ColumnStr = strings.Replace(statement.ColumnStr, statement.Engine.quote("*"), "*", -1)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// AllCols update use only: update all columns
|
|
|
|
func (statement *Statement) AllCols() *Statement {
|
|
|
|
statement.useAllCols = true
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustCols update use only: must update columns
|
|
|
|
func (statement *Statement) MustCols(columns ...string) *Statement {
|
|
|
|
newColumns := col2NewCols(columns...)
|
|
|
|
for _, nc := range newColumns {
|
|
|
|
statement.mustColumnMap[strings.ToLower(nc)] = true
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseBool indicates that use bool fields as update contents and query contiditions
|
|
|
|
func (statement *Statement) UseBool(columns ...string) *Statement {
|
|
|
|
if len(columns) > 0 {
|
|
|
|
statement.MustCols(columns...)
|
|
|
|
} else {
|
|
|
|
statement.allUseBool = true
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Omit do not use the columns
|
|
|
|
func (statement *Statement) Omit(columns ...string) {
|
|
|
|
newColumns := col2NewCols(columns...)
|
|
|
|
for _, nc := range newColumns {
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.omitColumnMap = append(statement.omitColumnMap, nc)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
statement.OmitStr = statement.Engine.Quote(strings.Join(newColumns, statement.Engine.Quote(", ")))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nullable Update use only: update columns to null when value is nullable and zero-value
|
|
|
|
func (statement *Statement) Nullable(columns ...string) {
|
|
|
|
newColumns := col2NewCols(columns...)
|
|
|
|
for _, nc := range newColumns {
|
|
|
|
statement.nullableMap[strings.ToLower(nc)] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Top generate LIMIT limit statement
|
|
|
|
func (statement *Statement) Top(limit int) *Statement {
|
|
|
|
statement.Limit(limit)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Limit generate LIMIT start, limit statement
|
|
|
|
func (statement *Statement) Limit(limit int, start ...int) *Statement {
|
|
|
|
statement.LimitN = limit
|
|
|
|
if len(start) > 0 {
|
|
|
|
statement.Start = start[0]
|
|
|
|
}
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// OrderBy generate "Order By order" statement
|
|
|
|
func (statement *Statement) OrderBy(order string) *Statement {
|
|
|
|
if len(statement.OrderStr) > 0 {
|
|
|
|
statement.OrderStr += ", "
|
|
|
|
}
|
|
|
|
statement.OrderStr += order
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Desc generate `ORDER BY xx DESC`
|
|
|
|
func (statement *Statement) Desc(colNames ...string) *Statement {
|
2018-07-19 22:10:17 -04:00
|
|
|
var buf builder.StringBuilder
|
2016-11-03 18:16:01 -04:00
|
|
|
if len(statement.OrderStr) > 0 {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, statement.OrderStr, ", ")
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
newColNames := statement.col2NewColsWithQuote(colNames...)
|
|
|
|
fmt.Fprintf(&buf, "%v DESC", strings.Join(newColNames, " DESC, "))
|
|
|
|
statement.OrderStr = buf.String()
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Asc provide asc order by query condition, the input parameters are columns.
|
|
|
|
func (statement *Statement) Asc(colNames ...string) *Statement {
|
2018-07-19 22:10:17 -04:00
|
|
|
var buf builder.StringBuilder
|
2016-11-03 18:16:01 -04:00
|
|
|
if len(statement.OrderStr) > 0 {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, statement.OrderStr, ", ")
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
newColNames := statement.col2NewColsWithQuote(colNames...)
|
|
|
|
fmt.Fprintf(&buf, "%v ASC", strings.Join(newColNames, " ASC, "))
|
|
|
|
statement.OrderStr = buf.String()
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
// Table tempororily set table name, the parameter could be a string or a pointer of struct
|
|
|
|
func (statement *Statement) Table(tableNameOrBean interface{}) *Statement {
|
|
|
|
v := rValue(tableNameOrBean)
|
|
|
|
t := v.Type()
|
|
|
|
if t.Kind() == reflect.Struct {
|
|
|
|
var err error
|
|
|
|
statement.RefTable, err = statement.Engine.autoMapType(v)
|
|
|
|
if err != nil {
|
|
|
|
statement.Engine.logger.Error(err)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
statement.AltTableName = statement.Engine.TableName(tableNameOrBean, true)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
// Join The joinOP should be one of INNER, LEFT OUTER, CROSS etc - this will be prepended to JOIN
|
|
|
|
func (statement *Statement) Join(joinOP string, tablename interface{}, condition string, args ...interface{}) *Statement {
|
2018-07-19 22:10:17 -04:00
|
|
|
var buf builder.StringBuilder
|
2016-11-03 18:16:01 -04:00
|
|
|
if len(statement.JoinStr) > 0 {
|
|
|
|
fmt.Fprintf(&buf, "%v %v JOIN ", statement.JoinStr, joinOP)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(&buf, "%v JOIN ", joinOP)
|
|
|
|
}
|
|
|
|
|
2019-06-23 11:22:43 -04:00
|
|
|
switch tp := tablename.(type) {
|
|
|
|
case builder.Builder:
|
|
|
|
subSQL, subQueryArgs, err := tp.ToSQL()
|
|
|
|
if err != nil {
|
|
|
|
statement.lastError = err
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
tbs := strings.Split(tp.TableName(), ".")
|
|
|
|
var aliasName = strings.Trim(tbs[len(tbs)-1], statement.Engine.QuoteStr())
|
|
|
|
fmt.Fprintf(&buf, "(%s) %s ON %v", subSQL, aliasName, condition)
|
|
|
|
statement.joinArgs = append(statement.joinArgs, subQueryArgs...)
|
|
|
|
case *builder.Builder:
|
|
|
|
subSQL, subQueryArgs, err := tp.ToSQL()
|
|
|
|
if err != nil {
|
|
|
|
statement.lastError = err
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
tbs := strings.Split(tp.TableName(), ".")
|
|
|
|
var aliasName = strings.Trim(tbs[len(tbs)-1], statement.Engine.QuoteStr())
|
|
|
|
fmt.Fprintf(&buf, "(%s) %s ON %v", subSQL, aliasName, condition)
|
|
|
|
statement.joinArgs = append(statement.joinArgs, subQueryArgs...)
|
|
|
|
default:
|
|
|
|
tbName := statement.Engine.TableName(tablename, true)
|
|
|
|
fmt.Fprintf(&buf, "%s ON %v", tbName, condition)
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
statement.JoinStr = buf.String()
|
|
|
|
statement.joinArgs = append(statement.joinArgs, args...)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// GroupBy generate "Group By keys" statement
|
|
|
|
func (statement *Statement) GroupBy(keys string) *Statement {
|
|
|
|
statement.GroupByStr = keys
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Having generate "Having conditions" statement
|
|
|
|
func (statement *Statement) Having(conditions string) *Statement {
|
|
|
|
statement.HavingStr = fmt.Sprintf("HAVING %v", conditions)
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unscoped always disable struct tag "deleted"
|
|
|
|
func (statement *Statement) Unscoped() *Statement {
|
|
|
|
statement.unscoped = true
|
|
|
|
return statement
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) genColumnStr() string {
|
2017-01-03 03:20:28 -05:00
|
|
|
if statement.RefTable == nil {
|
|
|
|
return ""
|
|
|
|
}
|
2016-11-11 11:40:21 -05:00
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
var buf builder.StringBuilder
|
2016-11-11 11:40:21 -05:00
|
|
|
columns := statement.RefTable.Columns()
|
|
|
|
|
|
|
|
for _, col := range columns {
|
2018-07-19 22:10:17 -04:00
|
|
|
if statement.omitColumnMap.contain(col.Name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(statement.columnMap) > 0 && !statement.columnMap.contain(col.Name) {
|
|
|
|
continue
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2016-11-11 11:40:21 -05:00
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
if col.MapType == core.ONLYTODB {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
if buf.Len() != 0 {
|
|
|
|
buf.WriteString(", ")
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
if statement.JoinStr != "" {
|
|
|
|
if statement.TableAlias != "" {
|
2016-11-11 11:40:21 -05:00
|
|
|
buf.WriteString(statement.TableAlias)
|
2016-11-03 18:16:01 -04:00
|
|
|
} else {
|
2016-11-11 11:40:21 -05:00
|
|
|
buf.WriteString(statement.TableName())
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2016-11-11 11:40:21 -05:00
|
|
|
|
|
|
|
buf.WriteString(".")
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2016-11-11 11:40:21 -05:00
|
|
|
|
|
|
|
statement.Engine.QuoteTo(&buf, col.Name)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2016-11-11 11:40:21 -05:00
|
|
|
|
|
|
|
return buf.String()
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) genCreateTableSQL() string {
|
|
|
|
return statement.Engine.dialect.CreateTableSql(statement.RefTable, statement.TableName(),
|
|
|
|
statement.StoreEngine, statement.Charset)
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
func (statement *Statement) genIndexSQL() []string {
|
2016-11-03 18:16:01 -04:00
|
|
|
var sqls []string
|
2016-11-11 11:40:21 -05:00
|
|
|
tbName := statement.TableName()
|
2018-07-19 22:10:17 -04:00
|
|
|
for _, index := range statement.RefTable.Indexes {
|
2016-11-03 18:16:01 -04:00
|
|
|
if index.Type == core.IndexType {
|
2018-07-19 22:10:17 -04:00
|
|
|
sql := statement.Engine.dialect.CreateIndexSql(tbName, index)
|
|
|
|
/*idxTBName := strings.Replace(tbName, ".", "_", -1)
|
|
|
|
idxTBName = strings.Replace(idxTBName, `"`, "", -1)
|
|
|
|
sql := fmt.Sprintf("CREATE INDEX %v ON %v (%v);", quote(indexName(idxTBName, idxName)),
|
|
|
|
quote(tbName), quote(strings.Join(index.Cols, quote(","))))*/
|
2016-11-03 18:16:01 -04:00
|
|
|
sqls = append(sqls, sql)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sqls
|
|
|
|
}
|
|
|
|
|
|
|
|
func uniqueName(tableName, uqeName string) string {
|
|
|
|
return fmt.Sprintf("UQE_%v_%v", tableName, uqeName)
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
func (statement *Statement) genUniqueSQL() []string {
|
2016-11-03 18:16:01 -04:00
|
|
|
var sqls []string
|
2016-11-11 11:40:21 -05:00
|
|
|
tbName := statement.TableName()
|
|
|
|
for _, index := range statement.RefTable.Indexes {
|
2016-11-03 18:16:01 -04:00
|
|
|
if index.Type == core.UniqueType {
|
2016-11-11 11:40:21 -05:00
|
|
|
sql := statement.Engine.dialect.CreateIndexSql(tbName, index)
|
2016-11-03 18:16:01 -04:00
|
|
|
sqls = append(sqls, sql)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sqls
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
func (statement *Statement) genDelIndexSQL() []string {
|
2016-11-03 18:16:01 -04:00
|
|
|
var sqls []string
|
2016-11-11 11:40:21 -05:00
|
|
|
tbName := statement.TableName()
|
2018-07-19 22:10:17 -04:00
|
|
|
idxPrefixName := strings.Replace(tbName, `"`, "", -1)
|
|
|
|
idxPrefixName = strings.Replace(idxPrefixName, `.`, "_", -1)
|
2016-11-11 11:40:21 -05:00
|
|
|
for idxName, index := range statement.RefTable.Indexes {
|
2016-11-03 18:16:01 -04:00
|
|
|
var rIdxName string
|
|
|
|
if index.Type == core.UniqueType {
|
2018-07-19 22:10:17 -04:00
|
|
|
rIdxName = uniqueName(idxPrefixName, idxName)
|
2016-11-03 18:16:01 -04:00
|
|
|
} else if index.Type == core.IndexType {
|
2018-07-19 22:10:17 -04:00
|
|
|
rIdxName = indexName(idxPrefixName, idxName)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
sql := fmt.Sprintf("DROP INDEX %v", statement.Engine.Quote(statement.Engine.TableName(rIdxName, true)))
|
2016-11-11 11:40:21 -05:00
|
|
|
if statement.Engine.dialect.IndexOnTable() {
|
2018-07-19 22:10:17 -04:00
|
|
|
sql += fmt.Sprintf(" ON %v", statement.Engine.Quote(tbName))
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
sqls = append(sqls, sql)
|
|
|
|
}
|
|
|
|
return sqls
|
|
|
|
}
|
|
|
|
|
2016-11-11 11:40:21 -05:00
|
|
|
func (statement *Statement) genAddColumnStr(col *core.Column) (string, []interface{}) {
|
|
|
|
quote := statement.Engine.Quote
|
2018-01-27 10:20:59 -05:00
|
|
|
sql := fmt.Sprintf("ALTER TABLE %v ADD %v", quote(statement.TableName()),
|
2016-11-11 11:40:21 -05:00
|
|
|
col.String(statement.Engine.dialect))
|
2018-01-27 10:20:59 -05:00
|
|
|
if statement.Engine.dialect.DBType() == core.MYSQL && len(col.Comment) > 0 {
|
|
|
|
sql += " COMMENT '" + col.Comment + "'"
|
|
|
|
}
|
|
|
|
sql += ";"
|
2016-11-03 18:16:01 -04:00
|
|
|
return sql, []interface{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) buildConds(table *core.Table, bean interface{}, includeVersion bool, includeUpdated bool, includeNil bool, includeAutoIncr bool, addedTableName bool) (builder.Cond, error) {
|
2017-08-22 07:39:52 -04:00
|
|
|
return statement.Engine.buildConds(table, bean, includeVersion, includeUpdated, includeNil, includeAutoIncr, statement.allUseBool, statement.useAllCols,
|
2016-11-03 18:16:01 -04:00
|
|
|
statement.unscoped, statement.mustColumnMap, statement.TableName(), statement.TableAlias, addedTableName)
|
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) mergeConds(bean interface{}) error {
|
2016-11-03 18:16:01 -04:00
|
|
|
if !statement.noAutoCondition {
|
|
|
|
var addedTableName = (len(statement.JoinStr) > 0)
|
|
|
|
autoCond, err := statement.buildConds(statement.RefTable, bean, true, true, false, true, addedTableName)
|
|
|
|
if err != nil {
|
2017-08-22 07:39:52 -04:00
|
|
|
return err
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
statement.cond = statement.cond.And(autoCond)
|
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
if err := statement.processIDParam(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) genConds(bean interface{}) (string, []interface{}, error) {
|
|
|
|
if err := statement.mergeConds(bean); err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
return builder.ToSQL(statement.cond)
|
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) genGetSQL(bean interface{}) (string, []interface{}, error) {
|
2017-04-06 21:47:25 -04:00
|
|
|
v := rValue(bean)
|
|
|
|
isStruct := v.Kind() == reflect.Struct
|
|
|
|
if isStruct {
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.setRefBean(bean)
|
2017-04-06 21:47:25 -04:00
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
var columnStr = statement.ColumnStr
|
|
|
|
if len(statement.selectStr) > 0 {
|
|
|
|
columnStr = statement.selectStr
|
|
|
|
} else {
|
|
|
|
// TODO: always generate column names, not use * even if join
|
|
|
|
if len(statement.JoinStr) == 0 {
|
|
|
|
if len(columnStr) == 0 {
|
|
|
|
if len(statement.GroupByStr) > 0 {
|
2018-12-11 20:01:41 -05:00
|
|
|
columnStr = statement.Engine.quoteColumns(statement.GroupByStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
} else {
|
|
|
|
columnStr = statement.genColumnStr()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if len(columnStr) == 0 {
|
|
|
|
if len(statement.GroupByStr) > 0 {
|
2018-12-11 20:01:41 -05:00
|
|
|
columnStr = statement.Engine.quoteColumns(statement.GroupByStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-06 21:47:25 -04:00
|
|
|
if len(columnStr) == 0 {
|
|
|
|
columnStr = "*"
|
|
|
|
}
|
|
|
|
|
|
|
|
if isStruct {
|
2017-08-22 07:39:52 -04:00
|
|
|
if err := statement.mergeConds(bean); err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
} else {
|
|
|
|
if err := statement.processIDParam(); err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2017-08-22 07:39:52 -04:00
|
|
|
}
|
|
|
|
condSQL, condArgs, err := builder.ToSQL(statement.cond)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
2017-04-06 21:47:25 -04:00
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
sqlStr, err := statement.genSelectSQL(columnStr, condSQL, true, true)
|
2017-08-22 07:39:52 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
return sqlStr, append(statement.joinArgs, condArgs...), nil
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) genCountSQL(beans ...interface{}) (string, []interface{}, error) {
|
|
|
|
var condSQL string
|
|
|
|
var condArgs []interface{}
|
|
|
|
var err error
|
|
|
|
if len(beans) > 0 {
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.setRefBean(beans[0])
|
2017-08-22 07:39:52 -04:00
|
|
|
condSQL, condArgs, err = statement.genConds(beans[0])
|
|
|
|
} else {
|
|
|
|
condSQL, condArgs, err = builder.ToSQL(statement.cond)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2017-01-03 03:20:28 -05:00
|
|
|
var selectSQL = statement.selectStr
|
|
|
|
if len(selectSQL) <= 0 {
|
2016-11-03 18:16:01 -04:00
|
|
|
if statement.IsDistinct {
|
2017-01-03 03:20:28 -05:00
|
|
|
selectSQL = fmt.Sprintf("count(DISTINCT %s)", statement.ColumnStr)
|
|
|
|
} else {
|
|
|
|
selectSQL = "count(*)"
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
sqlStr, err := statement.genSelectSQL(selectSQL, condSQL, false, false)
|
2017-08-22 07:39:52 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return sqlStr, append(statement.joinArgs, condArgs...), nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) genSumSQL(bean interface{}, columns ...string) (string, []interface{}, error) {
|
2018-07-19 22:10:17 -04:00
|
|
|
statement.setRefBean(bean)
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
var sumStrs = make([]string, 0, len(columns))
|
|
|
|
for _, colName := range columns {
|
2017-05-01 20:50:33 -04:00
|
|
|
if !strings.Contains(colName, " ") && !strings.Contains(colName, "(") {
|
|
|
|
colName = statement.Engine.Quote(colName)
|
|
|
|
}
|
|
|
|
sumStrs = append(sumStrs, fmt.Sprintf("COALESCE(sum(%s),0)", colName))
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2017-05-01 20:50:33 -04:00
|
|
|
sumSelect := strings.Join(sumStrs, ", ")
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
condSQL, condArgs, err := statement.genConds(bean)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
sqlStr, err := statement.genSelectSQL(sumSelect, condSQL, true, true)
|
2017-08-22 07:39:52 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
return sqlStr, append(statement.joinArgs, condArgs...), nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
func (statement *Statement) genSelectSQL(columnStr, condSQL string, needLimit, needOrderBy bool) (string, error) {
|
|
|
|
var (
|
|
|
|
distinct string
|
|
|
|
dialect = statement.Engine.Dialect()
|
|
|
|
quote = statement.Engine.Quote
|
|
|
|
fromStr = " FROM "
|
|
|
|
top, mssqlCondi, whereStr string
|
|
|
|
)
|
2017-04-06 21:47:25 -04:00
|
|
|
if statement.IsDistinct && !strings.HasPrefix(columnStr, "count") {
|
2016-11-03 18:16:01 -04:00
|
|
|
distinct = "DISTINCT "
|
|
|
|
}
|
|
|
|
if len(condSQL) > 0 {
|
2018-07-19 22:10:17 -04:00
|
|
|
whereStr = " WHERE " + condSQL
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2017-05-01 20:50:33 -04:00
|
|
|
|
|
|
|
if dialect.DBType() == core.MSSQL && strings.Contains(statement.TableName(), "..") {
|
|
|
|
fromStr += statement.TableName()
|
|
|
|
} else {
|
|
|
|
fromStr += quote(statement.TableName())
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
if statement.TableAlias != "" {
|
|
|
|
if dialect.DBType() == core.ORACLE {
|
|
|
|
fromStr += " " + quote(statement.TableAlias)
|
|
|
|
} else {
|
|
|
|
fromStr += " AS " + quote(statement.TableAlias)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if statement.JoinStr != "" {
|
|
|
|
fromStr = fmt.Sprintf("%v %v", fromStr, statement.JoinStr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if dialect.DBType() == core.MSSQL {
|
|
|
|
if statement.LimitN > 0 {
|
2019-06-23 11:22:43 -04:00
|
|
|
top = fmt.Sprintf("TOP %d ", statement.LimitN)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
if statement.Start > 0 {
|
|
|
|
var column string
|
|
|
|
if len(statement.RefTable.PKColumns()) == 0 {
|
|
|
|
for _, index := range statement.RefTable.Indexes {
|
|
|
|
if len(index.Cols) == 1 {
|
|
|
|
column = index.Cols[0]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(column) == 0 {
|
|
|
|
column = statement.RefTable.ColumnsSeq()[0]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
column = statement.RefTable.PKColumns()[0].Name
|
|
|
|
}
|
|
|
|
if statement.needTableName() {
|
|
|
|
if len(statement.TableAlias) > 0 {
|
|
|
|
column = statement.TableAlias + "." + column
|
|
|
|
} else {
|
|
|
|
column = statement.TableName() + "." + column
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var orderStr string
|
2018-07-19 22:10:17 -04:00
|
|
|
if needOrderBy && len(statement.OrderStr) > 0 {
|
2016-11-03 18:16:01 -04:00
|
|
|
orderStr = " ORDER BY " + statement.OrderStr
|
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
var groupStr string
|
|
|
|
if len(statement.GroupByStr) > 0 {
|
|
|
|
groupStr = " GROUP BY " + statement.GroupByStr
|
|
|
|
}
|
|
|
|
mssqlCondi = fmt.Sprintf("(%s NOT IN (SELECT TOP %d %s%s%s%s%s))",
|
|
|
|
column, statement.Start, column, fromStr, whereStr, orderStr, groupStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
var buf builder.StringBuilder
|
|
|
|
fmt.Fprintf(&buf, "SELECT %v%v%v%v%v", distinct, top, columnStr, fromStr, whereStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
if len(mssqlCondi) > 0 {
|
|
|
|
if len(whereStr) > 0 {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, " AND ", mssqlCondi)
|
2016-11-03 18:16:01 -04:00
|
|
|
} else {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, " WHERE ", mssqlCondi)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if statement.GroupByStr != "" {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, " GROUP BY ", statement.GroupByStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
if statement.HavingStr != "" {
|
2018-07-19 22:10:17 -04:00
|
|
|
fmt.Fprint(&buf, " ", statement.HavingStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
if needOrderBy && statement.OrderStr != "" {
|
|
|
|
fmt.Fprint(&buf, " ORDER BY ", statement.OrderStr)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2018-07-19 22:10:17 -04:00
|
|
|
if needLimit {
|
|
|
|
if dialect.DBType() != core.MSSQL && dialect.DBType() != core.ORACLE {
|
|
|
|
if statement.Start > 0 {
|
|
|
|
fmt.Fprintf(&buf, " LIMIT %v OFFSET %v", statement.LimitN, statement.Start)
|
|
|
|
} else if statement.LimitN > 0 {
|
|
|
|
fmt.Fprint(&buf, " LIMIT ", statement.LimitN)
|
|
|
|
}
|
|
|
|
} else if dialect.DBType() == core.ORACLE {
|
|
|
|
if statement.Start != 0 || statement.LimitN != 0 {
|
|
|
|
oldString := buf.String()
|
|
|
|
buf.Reset()
|
|
|
|
fmt.Fprintf(&buf, "SELECT %v FROM (SELECT %v,ROWNUM RN FROM (%v) at WHERE ROWNUM <= %d) aat WHERE RN > %d",
|
|
|
|
columnStr, columnStr, oldString, statement.Start+statement.LimitN, statement.Start)
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if statement.IsForUpdate {
|
2018-07-19 22:10:17 -04:00
|
|
|
return dialect.ForUpdateSql(buf.String()), nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2018-07-19 22:10:17 -04:00
|
|
|
return buf.String(), nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2017-08-22 07:39:52 -04:00
|
|
|
func (statement *Statement) processIDParam() error {
|
2018-07-19 22:10:17 -04:00
|
|
|
if statement.idParam == nil || statement.RefTable == nil {
|
2017-08-22 07:39:52 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(statement.RefTable.PrimaryKeys) != len(*statement.idParam) {
|
|
|
|
return fmt.Errorf("ID condition is error, expect %d primarykeys, there are %d",
|
|
|
|
len(statement.RefTable.PrimaryKeys),
|
|
|
|
len(*statement.idParam),
|
|
|
|
)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, col := range statement.RefTable.PKColumns() {
|
|
|
|
var colName = statement.colName(col, statement.TableName())
|
2017-08-22 07:39:52 -04:00
|
|
|
statement.cond = statement.cond.And(builder.Eq{colName: (*(statement.idParam))[i]})
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2017-08-22 07:39:52 -04:00
|
|
|
return nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) joinColumns(cols []*core.Column, includeTableName bool) string {
|
|
|
|
var colnames = make([]string, len(cols))
|
|
|
|
for i, col := range cols {
|
|
|
|
if includeTableName {
|
|
|
|
colnames[i] = statement.Engine.Quote(statement.TableName()) +
|
|
|
|
"." + statement.Engine.Quote(col.Name)
|
|
|
|
} else {
|
|
|
|
colnames[i] = statement.Engine.Quote(col.Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strings.Join(colnames, ", ")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) convertIDSQL(sqlStr string) string {
|
|
|
|
if statement.RefTable != nil {
|
|
|
|
cols := statement.RefTable.PKColumns()
|
|
|
|
if len(cols) == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
colstrs := statement.joinColumns(cols, false)
|
|
|
|
sqls := splitNNoCase(sqlStr, " from ", 2)
|
|
|
|
if len(sqls) != 2 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-01-03 03:20:28 -05:00
|
|
|
var top string
|
|
|
|
if statement.LimitN > 0 && statement.Engine.dialect.DBType() == core.MSSQL {
|
|
|
|
top = fmt.Sprintf("TOP %d ", statement.LimitN)
|
|
|
|
}
|
|
|
|
|
2017-09-13 01:18:22 -04:00
|
|
|
newsql := fmt.Sprintf("SELECT %s%s FROM %v", top, colstrs, sqls[1])
|
|
|
|
return newsql
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (statement *Statement) convertUpdateSQL(sqlStr string) (string, string) {
|
|
|
|
if statement.RefTable == nil || len(statement.RefTable.PrimaryKeys) != 1 {
|
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
|
|
|
colstrs := statement.joinColumns(statement.RefTable.PKColumns(), true)
|
|
|
|
sqls := splitNNoCase(sqlStr, "where", 2)
|
|
|
|
if len(sqls) != 2 {
|
|
|
|
if len(sqls) == 1 {
|
|
|
|
return sqls[0], fmt.Sprintf("SELECT %v FROM %v",
|
|
|
|
colstrs, statement.Engine.Quote(statement.TableName()))
|
|
|
|
}
|
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var whereStr = sqls[1]
|
|
|
|
|
|
|
|
//TODO: for postgres only, if any other database?
|
|
|
|
var paraStr string
|
|
|
|
if statement.Engine.dialect.DBType() == core.POSTGRES {
|
|
|
|
paraStr = "$"
|
|
|
|
} else if statement.Engine.dialect.DBType() == core.MSSQL {
|
|
|
|
paraStr = ":"
|
|
|
|
}
|
|
|
|
|
|
|
|
if paraStr != "" {
|
|
|
|
if strings.Contains(sqls[1], paraStr) {
|
|
|
|
dollers := strings.Split(sqls[1], paraStr)
|
|
|
|
whereStr = dollers[0]
|
|
|
|
for i, c := range dollers[1:] {
|
|
|
|
ccs := strings.SplitN(c, " ", 2)
|
|
|
|
whereStr += fmt.Sprintf(paraStr+"%v %v", i+1, ccs[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sqls[0], fmt.Sprintf("SELECT %v FROM %v WHERE %v",
|
|
|
|
colstrs, statement.Engine.Quote(statement.TableName()),
|
|
|
|
whereStr)
|
|
|
|
}
|