2017-01-03 09:20:28 +01:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-11-03 23:16:01 +01:00
|
|
|
package builder
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// Incr implements a type used by Eq
|
2016-11-03 23:16:01 +01:00
|
|
|
type Incr int
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// Decr implements a type used by Eq
|
2016-11-03 23:16:01 +01:00
|
|
|
type Decr int
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// Eq defines equals conditions
|
2016-11-03 23:16:01 +01:00
|
|
|
type Eq map[string]interface{}
|
|
|
|
|
|
|
|
var _ Cond = Eq{}
|
|
|
|
|
|
|
|
func (eq Eq) opWriteTo(op string, w Writer) error {
|
|
|
|
var i = 0
|
|
|
|
for k, v := range eq {
|
|
|
|
switch v.(type) {
|
|
|
|
case []int, []int64, []string, []int32, []int16, []int8, []uint, []uint64, []uint32, []uint16, []interface{}:
|
|
|
|
if err := In(k, v).WriteTo(w); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case expr:
|
|
|
|
if _, err := fmt.Fprintf(w, "%s=(", k); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := v.(expr).WriteTo(w); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := fmt.Fprintf(w, ")"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case *Builder:
|
|
|
|
if _, err := fmt.Fprintf(w, "%s=(", k); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := v.(*Builder).WriteTo(w); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := fmt.Fprintf(w, ")"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case Incr:
|
|
|
|
if _, err := fmt.Fprintf(w, "%s=%s+?", k, k); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.Append(int(v.(Incr)))
|
|
|
|
case Decr:
|
|
|
|
if _, err := fmt.Fprintf(w, "%s=%s-?", k, k); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.Append(int(v.(Decr)))
|
|
|
|
default:
|
|
|
|
if _, err := fmt.Fprintf(w, "%s=?", k); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.Append(v)
|
|
|
|
}
|
|
|
|
if i != len(eq)-1 {
|
|
|
|
if _, err := fmt.Fprint(w, op); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i = i + 1
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// WriteTo writes SQL to Writer
|
2016-11-03 23:16:01 +01:00
|
|
|
func (eq Eq) WriteTo(w Writer) error {
|
|
|
|
return eq.opWriteTo(" AND ", w)
|
|
|
|
}
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// And implements And with other conditions
|
2016-11-03 23:16:01 +01:00
|
|
|
func (eq Eq) And(conds ...Cond) Cond {
|
|
|
|
return And(eq, And(conds...))
|
|
|
|
}
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// Or implements Or with other conditions
|
2016-11-03 23:16:01 +01:00
|
|
|
func (eq Eq) Or(conds ...Cond) Cond {
|
|
|
|
return Or(eq, Or(conds...))
|
|
|
|
}
|
|
|
|
|
2017-01-03 09:20:28 +01:00
|
|
|
// IsValid tests if this Eq is valid
|
2016-11-03 23:16:01 +01:00
|
|
|
func (eq Eq) IsValid() bool {
|
|
|
|
return len(eq) > 0
|
|
|
|
}
|