-
Notifications
You must be signed in to change notification settings - Fork 0
/
select.go
216 lines (186 loc) · 5.35 KB
/
select.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package dat
// SelectBuilder contains the clauses for a SELECT statement
type SelectBuilder struct {
Execer
isDistinct bool
distinctColumns []string
isInterpolated bool
columns []string
table string
whereFragments []*whereFragment
groupBys []string
havingFragments []*whereFragment
orderBys []string
limitCount uint64
limitValid bool
offsetCount uint64
offsetValid bool
scope Scope
}
// NewSelectBuilder creates a new SelectBuilder for the given columns
func NewSelectBuilder(columns ...string) *SelectBuilder {
if len(columns) == 0 || columns[0] == "" {
logger.Error("Select requires 1 or more columns")
return nil
}
return &SelectBuilder{columns: columns, isInterpolated: EnableInterpolation}
}
// Columns adds additional select columns to the builder.
func (b *SelectBuilder) Columns(columns ...string) *SelectBuilder {
if len(columns) == 0 || columns[0] == "" {
logger.Error("Select requires 1 or more columns")
return nil
}
b.columns = append(b.columns, columns...)
return b
}
// Distinct marks the statement as a DISTINCT SELECT
func (b *SelectBuilder) Distinct() *SelectBuilder {
b.isDistinct = true
return b
}
// DistinctOn sets the columns for DISTINCT ON
func (b *SelectBuilder) DistinctOn(columns ...string) *SelectBuilder {
b.isDistinct = true
b.distinctColumns = columns
return b
}
// From sets the table to SELECT FROM. JOINs may also be defined here.
func (b *SelectBuilder) From(from string) *SelectBuilder {
b.table = from
return b
}
// ScopeMap uses a predefined scope in place of WHERE.
func (b *SelectBuilder) ScopeMap(mapScope *MapScope, m M) *SelectBuilder {
b.scope = mapScope.mergeClone(m)
return b
}
// Scope uses a predefined scope in place of WHERE.
func (b *SelectBuilder) Scope(sql string, args ...interface{}) *SelectBuilder {
b.scope = ScopeFunc(func(table string) (string, []interface{}) {
return sql, args
})
return b
}
// Where appends a WHERE clause to the statement for the given string and args
// or map of column/value pairs
func (b *SelectBuilder) Where(whereSqlOrMap interface{}, args ...interface{}) *SelectBuilder {
b.whereFragments = append(b.whereFragments, newWhereFragment(whereSqlOrMap, args))
return b
}
// GroupBy appends a column to group the statement
func (b *SelectBuilder) GroupBy(group string) *SelectBuilder {
b.groupBys = append(b.groupBys, group)
return b
}
// Having appends a HAVING clause to the statement
func (b *SelectBuilder) Having(whereSqlOrMap interface{}, args ...interface{}) *SelectBuilder {
b.havingFragments = append(b.havingFragments, newWhereFragment(whereSqlOrMap, args))
return b
}
// OrderBy appends a column to ORDER the statement by
func (b *SelectBuilder) OrderBy(ord string) *SelectBuilder {
b.orderBys = append(b.orderBys, ord)
return b
}
// Limit sets a limit for the statement; overrides any existing LIMIT
func (b *SelectBuilder) Limit(limit uint64) *SelectBuilder {
b.limitCount = limit
b.limitValid = true
return b
}
// Offset sets an offset for the statement; overrides any existing OFFSET
func (b *SelectBuilder) Offset(offset uint64) *SelectBuilder {
b.offsetCount = offset
b.offsetValid = true
return b
}
// Paginate sets LIMIT/OFFSET for the statement based on the given page/perPage
// Assumes page/perPage are valid. Page and perPage must be >= 1
func (b *SelectBuilder) Paginate(page, perPage uint64) *SelectBuilder {
b.Limit(perPage)
b.Offset((page - 1) * perPage)
return b
}
// ToSQL serialized the SelectBuilder to a SQL string
// It returns the string with placeholders and a slice of query arguments
func (b *SelectBuilder) ToSQL() (string, []interface{}) {
if len(b.columns) == 0 {
panic("no columns specified")
}
if len(b.table) == 0 {
panic("no table specified")
}
buf := bufPool.Get()
defer bufPool.Put(buf)
var args []interface{}
buf.WriteString("SELECT ")
if b.isDistinct {
if len(b.distinctColumns) == 0 {
buf.WriteString("DISTINCT ")
} else {
buf.WriteString("DISTINCT ON (")
for i, s := range b.distinctColumns {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
buf.WriteString(") ")
}
}
for i, s := range b.columns {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
buf.WriteString(" FROM ")
buf.WriteString(b.table)
var placeholderStartPos int64 = 1
if b.scope != nil {
var where string
sql, args := b.scope.ToSQL(b.table)
sql, where = splitWhere(sql)
buf.WriteString(sql)
if where != "" {
fragment := newWhereFragment(where, args)
b.whereFragments = append(b.whereFragments, fragment)
}
}
if len(b.whereFragments) > 0 {
buf.WriteString(" WHERE ")
writeWhereFragmentsToSql(buf, b.whereFragments, &args, &placeholderStartPos)
}
if len(b.groupBys) > 0 {
buf.WriteString(" GROUP BY ")
for i, s := range b.groupBys {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
}
if len(b.havingFragments) > 0 {
buf.WriteString(" HAVING ")
writeWhereFragmentsToSql(buf, b.havingFragments, &args, &placeholderStartPos)
}
if len(b.orderBys) > 0 {
buf.WriteString(" ORDER BY ")
for i, s := range b.orderBys {
if i > 0 {
buf.WriteString(", ")
}
buf.WriteString(s)
}
}
if b.limitValid {
buf.WriteString(" LIMIT ")
writeUint64(buf, b.limitCount)
}
if b.offsetValid {
buf.WriteString(" OFFSET ")
writeUint64(buf, b.offsetCount)
}
return buf.String(), args
}