-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcgroup.go
50 lines (39 loc) · 1.04 KB
/
cgroup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package sqlbuilder
import "bytes"
//
// Author: 陈永佳 [email protected], [email protected]
//
type ConditionGroup struct {
buffer *bytes.Buffer
conditions SQLStatement
}
func Group(conditions SQLStatement) *ConditionGroup {
return newGroup(conditions)
}
func (slf *ConditionGroup) Group(conditions SQLStatement) *ConditionGroup {
slf.conditions = conditions
return slf
}
func (slf *ConditionGroup) And() *ConditionGroup {
return newGroupWith(slf, " AND ")
}
func (slf *ConditionGroup) Or() *ConditionGroup {
return newGroupWith(slf, " OR ")
}
func (slf *ConditionGroup) Compile() string {
slf.buffer.WriteString(brackets(slf.conditions.Compile()))
return slf.buffer.String()
}
//
func newGroup(conditions SQLStatement) *ConditionGroup {
return &ConditionGroup{
buffer: new(bytes.Buffer),
conditions: conditions,
}
}
func newGroupWith(preStatement SQLStatement, op string) *ConditionGroup {
group := newGroup(nil)
group.buffer.WriteString(preStatement.Compile())
group.buffer.WriteString(op)
return group
}