mirror of
https://github.com/astaxie/beego.git
synced 2024-11-17 16:00:55 +00:00
133 lines
2.9 KiB
Go
133 lines
2.9 KiB
Go
|
package orm
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
type querySet struct {
|
||
|
mi *modelInfo
|
||
|
cond *Condition
|
||
|
related []string
|
||
|
relDepth int
|
||
|
limit int
|
||
|
offset int64
|
||
|
orders []string
|
||
|
orm *orm
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Filter(expr string, args ...interface{}) QuerySeter {
|
||
|
if o.cond == nil {
|
||
|
o.cond = NewCondition()
|
||
|
}
|
||
|
o.cond.And(expr, args...)
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Exclude(expr string, args ...interface{}) QuerySeter {
|
||
|
if o.cond == nil {
|
||
|
o.cond = NewCondition()
|
||
|
}
|
||
|
o.cond.AndNot(expr, args...)
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Limit(limit int, args ...int64) QuerySeter {
|
||
|
o.limit = limit
|
||
|
if len(args) > 0 {
|
||
|
o.offset = args[0]
|
||
|
}
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Offset(offset int64) QuerySeter {
|
||
|
o.offset = offset
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o *querySet) OrderBy(orders ...string) QuerySeter {
|
||
|
o.orders = orders
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o *querySet) RelatedSel(params ...interface{}) QuerySeter {
|
||
|
var related []string
|
||
|
if len(params) == 0 {
|
||
|
o.relDepth = DefaultRelsDepth
|
||
|
} else {
|
||
|
for _, p := range params {
|
||
|
switch val := p.(type) {
|
||
|
case string:
|
||
|
related = append(o.related, val)
|
||
|
case int:
|
||
|
o.relDepth = val
|
||
|
default:
|
||
|
panic(fmt.Sprintf("<querySet.RelatedSel> wrong param kind: %v", val))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
o.related = related
|
||
|
return o.Clone()
|
||
|
}
|
||
|
|
||
|
func (o querySet) Clone() QuerySeter {
|
||
|
if o.cond != nil {
|
||
|
o.cond = o.cond.Clone()
|
||
|
}
|
||
|
return &o
|
||
|
}
|
||
|
|
||
|
func (o *querySet) SetCond(cond *Condition) error {
|
||
|
o.cond = cond
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Count() (int64, error) {
|
||
|
return o.orm.alias.DbBaser.Count(o.orm.db, o, o.mi, o.cond)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Update(values Params) (int64, error) {
|
||
|
return o.orm.alias.DbBaser.UpdateBatch(o.orm.db, o, o.mi, o.cond, values)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Delete() (int64, error) {
|
||
|
return o.orm.alias.DbBaser.DeleteBatch(o.orm.db, o, o.mi, o.cond)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) PrepareInsert() (Inserter, error) {
|
||
|
return newInsertSet(o.orm, o.mi)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) All(container interface{}) (int64, error) {
|
||
|
return o.orm.alias.DbBaser.ReadBatch(o.orm.db, o, o.mi, o.cond, container)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) One(container Modeler) error {
|
||
|
num, err := o.orm.alias.DbBaser.ReadBatch(o.orm.db, o, o.mi, o.cond, container)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if num > 1 {
|
||
|
return ErrMultiRows
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (o *querySet) Values(results *[]Params, args ...string) (int64, error) {
|
||
|
return o.orm.alias.DbBaser.ReadValues(o.orm.db, o, o.mi, o.cond, args, results)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) ValuesList(results *[]ParamsList, args ...string) (int64, error) {
|
||
|
return o.orm.alias.DbBaser.ReadValues(o.orm.db, o, o.mi, o.cond, args, results)
|
||
|
}
|
||
|
|
||
|
func (o *querySet) ValuesFlat(result *ParamsList, arg string) (int64, error) {
|
||
|
return o.orm.alias.DbBaser.ReadValues(o.orm.db, o, o.mi, o.cond, []string{arg}, result)
|
||
|
}
|
||
|
|
||
|
func newQuerySet(orm *orm, mi *modelInfo) QuerySeter {
|
||
|
o := new(querySet)
|
||
|
o.mi = mi
|
||
|
o.orm = orm
|
||
|
return o
|
||
|
}
|