mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:20:54 +00:00
90 lines
1.9 KiB
Go
90 lines
1.9 KiB
Go
package orm
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
ExprSep = "__"
|
|
)
|
|
|
|
type condValue struct {
|
|
exprs []string
|
|
args []interface{}
|
|
cond *Condition
|
|
isOr bool
|
|
isNot bool
|
|
isCond bool
|
|
}
|
|
|
|
type Condition struct {
|
|
params []condValue
|
|
}
|
|
|
|
func NewCondition() *Condition {
|
|
c := &Condition{}
|
|
return c
|
|
}
|
|
|
|
func (c Condition) And(expr string, args ...interface{}) *Condition {
|
|
if expr == "" || len(args) == 0 {
|
|
panic("<Condition.And> args cannot empty")
|
|
}
|
|
c.params = append(c.params, condValue{exprs: strings.Split(expr, ExprSep), args: args})
|
|
return &c
|
|
}
|
|
|
|
func (c Condition) AndNot(expr string, args ...interface{}) *Condition {
|
|
if expr == "" || len(args) == 0 {
|
|
panic("<Condition.AndNot> args cannot empty")
|
|
}
|
|
c.params = append(c.params, condValue{exprs: strings.Split(expr, ExprSep), args: args, isNot: true})
|
|
return &c
|
|
}
|
|
|
|
func (c *Condition) AndCond(cond *Condition) *Condition {
|
|
c = c.clone()
|
|
if c == cond {
|
|
panic("cannot use self as sub cond")
|
|
}
|
|
if cond != nil {
|
|
c.params = append(c.params, condValue{cond: cond, isCond: true})
|
|
}
|
|
return c
|
|
}
|
|
|
|
func (c Condition) Or(expr string, args ...interface{}) *Condition {
|
|
if expr == "" || len(args) == 0 {
|
|
panic("<Condition.Or> args cannot empty")
|
|
}
|
|
c.params = append(c.params, condValue{exprs: strings.Split(expr, ExprSep), args: args, isOr: true})
|
|
return &c
|
|
}
|
|
|
|
func (c Condition) OrNot(expr string, args ...interface{}) *Condition {
|
|
if expr == "" || len(args) == 0 {
|
|
panic("<Condition.OrNot> args cannot empty")
|
|
}
|
|
c.params = append(c.params, condValue{exprs: strings.Split(expr, ExprSep), args: args, isNot: true, isOr: true})
|
|
return &c
|
|
}
|
|
|
|
func (c *Condition) OrCond(cond *Condition) *Condition {
|
|
c = c.clone()
|
|
if c == cond {
|
|
panic("cannot use self as sub cond")
|
|
}
|
|
if cond != nil {
|
|
c.params = append(c.params, condValue{cond: cond, isCond: true, isOr: true})
|
|
}
|
|
return c
|
|
}
|
|
|
|
func (c *Condition) IsEmpty() bool {
|
|
return len(c.params) == 0
|
|
}
|
|
|
|
func (c Condition) clone() *Condition {
|
|
return &c
|
|
}
|