-
Notifications
You must be signed in to change notification settings - Fork 551
/
Copy pathquery.go
442 lines (369 loc) · 10.5 KB
/
query.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
package queries
import (
"context"
"database/sql"
"fmt"
"regexp"
"github.com/volatiletech/sqlboiler/v4/boil"
"github.com/volatiletech/sqlboiler/v4/drivers"
)
// joinKind is the type of join
type joinKind int
// Join type constants
const (
JoinInner joinKind = iota
JoinOuterLeft
JoinOuterRight
JoinNatural
JoinOuterFull
)
// Query holds the state for the built up query
type Query struct {
dialect *drivers.Dialect
rawSQL rawSQL
load []string
loadMods map[string]Applicator
delete bool
update map[string]interface{}
withs []argClause
selectCols []string
count bool
from []string
joins []join
where []where
groupBy []string
orderBy []argClause
having []argClause
limit *int
offset int
forlock string
distinct string
comment string
// This field is a hack to allow a query to strip out the reference
// to deleted at is null.
removeSoftDelete bool
}
// Applicator exists only to allow
// query mods into the query struct around
// eager loaded relationships.
type Applicator interface {
Apply(*Query)
}
type whereKind int
const (
whereKindNormal whereKind = iota
whereKindLeftParen
whereKindRightParen
whereKindIn
whereKindNotIn
)
type where struct {
kind whereKind
clause string
orSeparator bool
args []interface{}
}
type in struct {
clause string
orSeparator bool
args []interface{}
}
type argClause struct {
clause string
args []interface{}
}
type rawSQL struct {
sql string
args []interface{}
}
type join struct {
kind joinKind
clause string
args []interface{}
}
// Raw makes a raw query, usually for use with bind
func Raw(query string, args ...interface{}) *Query {
return &Query{
rawSQL: rawSQL{
sql: query,
args: args,
},
}
}
// RawG makes a raw query using the global boil.Executor, usually for use with bind
func RawG(query string, args ...interface{}) *Query {
return Raw(query, args...)
}
// Exec executes a query that does not need a row returned
func (q *Query) Exec(exec boil.Executor) (sql.Result, error) {
qs, args := BuildQuery(q)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, qs)
fmt.Fprintln(boil.DebugWriter, args)
}
return exec.Exec(qs, args...)
}
// QueryRow executes the query for the One finisher and returns a row
func (q *Query) QueryRow(exec boil.Executor) *sql.Row {
qs, args := BuildQuery(q)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, qs)
fmt.Fprintln(boil.DebugWriter, args)
}
return exec.QueryRow(qs, args...)
}
// Query executes the query for the All finisher and returns multiple rows
func (q *Query) Query(exec boil.Executor) (*sql.Rows, error) {
qs, args := BuildQuery(q)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, qs)
fmt.Fprintln(boil.DebugWriter, args)
}
return exec.Query(qs, args...)
}
// ExecContext executes a query that does not need a row returned
func (q *Query) ExecContext(ctx context.Context, exec boil.ContextExecutor) (sql.Result, error) {
qs, args := BuildQuery(q)
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, qs)
fmt.Fprintln(writer, args)
}
return exec.ExecContext(ctx, qs, args...)
}
// QueryRowContext executes the query for the One finisher and returns a row
func (q *Query) QueryRowContext(ctx context.Context, exec boil.ContextExecutor) *sql.Row {
qs, args := BuildQuery(q)
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, qs)
fmt.Fprintln(writer, args)
}
return exec.QueryRowContext(ctx, qs, args...)
}
// QueryContext executes the query for the All finisher and returns multiple rows
func (q *Query) QueryContext(ctx context.Context, exec boil.ContextExecutor) (*sql.Rows, error) {
qs, args := BuildQuery(q)
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, qs)
fmt.Fprintln(writer, args)
}
return exec.QueryContext(ctx, qs, args...)
}
// ExecP executes a query that does not need a row returned
// It will panic on error
func (q *Query) ExecP(exec boil.Executor) sql.Result {
res, err := q.Exec(exec)
if err != nil {
panic(boil.WrapErr(err))
}
return res
}
// QueryP executes the query for the All finisher and returns multiple rows
// It will panic on error
func (q *Query) QueryP(exec boil.Executor) *sql.Rows {
rows, err := q.Query(exec)
if err != nil {
panic(boil.WrapErr(err))
}
return rows
}
// SetDialect on the query.
func SetDialect(q *Query, dialect *drivers.Dialect) {
q.dialect = dialect
}
// SetSQL on the query.
func SetSQL(q *Query, sql string, args ...interface{}) {
q.rawSQL = rawSQL{sql: sql, args: args}
}
// SetArgs is primarily for re-use of a query so that the
// query text does not need to be re-generated, useful
// if you're performing the same query with different arguments
// over and over.
func SetArgs(q *Query, args ...interface{}) {
q.rawSQL.args = args
}
// SetLoad on the query.
func SetLoad(q *Query, relationships ...string) {
q.load = append([]string(nil), relationships...)
}
// AppendLoad on the query.
func AppendLoad(q *Query, relationships string) {
q.load = append(q.load, relationships)
}
// SetLoadMods on the query.
func SetLoadMods(q *Query, rel string, appl Applicator) {
if q.loadMods == nil {
q.loadMods = make(map[string]Applicator)
}
q.loadMods[rel] = appl
}
// SetSelect on the query.
func SetSelect(q *Query, sel []string) {
q.selectCols = sel
}
// GetSelect from the query
func GetSelect(q *Query) []string {
return q.selectCols
}
// SetDistinct on the query.
func SetDistinct(q *Query, distinct string) {
q.distinct = distinct
}
// SetCount on the query.
func SetCount(q *Query) {
q.count = true
}
// SetDelete on the query.
func SetDelete(q *Query) {
q.delete = true
}
// SetLimit on the query.
func SetLimit(q *Query, limit int) {
q.limit = &limit
}
// SetOffset on the query.
func SetOffset(q *Query, offset int) {
q.offset = offset
}
// SetFor on the query.
func SetFor(q *Query, clause string) {
q.forlock = clause
}
// SetComment on the query.
func SetComment(q *Query, comment string) {
q.comment = comment
}
// SetUpdate on the query.
func SetUpdate(q *Query, cols map[string]interface{}) {
q.update = cols
}
// AppendSelect on the query.
func AppendSelect(q *Query, columns ...string) {
q.selectCols = append(q.selectCols, columns...)
}
// AppendFrom on the query.
func AppendFrom(q *Query, from ...string) {
q.from = append(q.from, from...)
}
// SetFrom replaces the current from statements.
func SetFrom(q *Query, from ...string) {
q.from = append([]string(nil), from...)
}
// AppendInnerJoin on the query.
func AppendInnerJoin(q *Query, clause string, args ...interface{}) {
q.joins = append(q.joins, join{clause: clause, kind: JoinInner, args: args})
}
// AppendLeftOuterJoin on the query.
func AppendLeftOuterJoin(q *Query, clause string, args ...interface{}) {
q.joins = append(q.joins, join{clause: clause, kind: JoinOuterLeft, args: args})
}
// AppendRightOuterJoin on the query.
func AppendRightOuterJoin(q *Query, clause string, args ...interface{}) {
q.joins = append(q.joins, join{clause: clause, kind: JoinOuterRight, args: args})
}
// AppendFullOuterJoin on the query.
func AppendFullOuterJoin(q *Query, clause string, args ...interface{}) {
q.joins = append(q.joins, join{clause: clause, kind: JoinOuterFull, args: args})
}
// AppendHaving on the query.
func AppendHaving(q *Query, clause string, args ...interface{}) {
q.having = append(q.having, argClause{clause: clause, args: args})
}
// AppendWhere on the query.
func AppendWhere(q *Query, clause string, args ...interface{}) {
q.where = append(q.where, where{clause: clause, args: args})
}
// AppendIn on the query.
func AppendIn(q *Query, clause string, args ...interface{}) {
q.where = append(q.where, where{kind: whereKindIn, clause: clause, args: args})
}
// AppendNotIn on the query.
func AppendNotIn(q *Query, clause string, args ...interface{}) {
q.where = append(q.where, where{kind: whereKindNotIn, clause: clause, args: args})
}
// SetLastWhereAsOr sets the or separator for the tail "WHERE" in the slice
func SetLastWhereAsOr(q *Query) {
if len(q.where) == 0 {
return
}
pos := len(q.where) - 1
where := q.where[pos]
if where.kind != whereKindRightParen {
q.where[len(q.where)-1].orSeparator = true
return
}
stack := 0
pos--
for ; pos >= 0; pos-- {
switch q.where[pos].kind {
case whereKindLeftParen:
if stack == 0 {
q.where[pos].orSeparator = true
return
}
stack--
case whereKindRightParen:
stack++
}
}
panic("could not find matching ( in where query expr")
}
// SetLastInAsOr is an alias for SetLastWhereAsOr
func SetLastInAsOr(q *Query) {
SetLastWhereAsOr(q)
}
// AppendWhereLeftParen creates a right left in the where expression
func AppendWhereLeftParen(q *Query) {
q.where = append(q.where, where{kind: whereKindLeftParen})
}
// AppendWhereRightParen creates a right paren in the where expression
func AppendWhereRightParen(q *Query) {
q.where = append(q.where, where{kind: whereKindRightParen})
}
// AppendGroupBy on the query.
func AppendGroupBy(q *Query, clause string) {
q.groupBy = append(q.groupBy, clause)
}
// AppendOrderBy on the query.
func AppendOrderBy(q *Query, clause string, args ...interface{}) {
q.orderBy = append(q.orderBy, argClause{clause: clause, args: args})
}
// AppendWith on the query.
func AppendWith(q *Query, clause string, args ...interface{}) {
q.withs = append(q.withs, argClause{clause: clause, args: args})
}
// RemoveSoftDeleteWhere prevents the automatic soft delete where clause
// from being included when building the query.
func RemoveSoftDeleteWhere(q *Query) {
q.removeSoftDelete = true
}
var removeSoftDeleteRgx = regexp.MustCompile("deleted_at[\"'`]? is null")
// SetRemoveSoftDeleteRgx sets the removeSoftDeleteRgx variable to support
// qm.Where method to work with a custom soft delete auto-column name.
func SetRemoveSoftDeleteRgx(rgx *regexp.Regexp) {
removeSoftDeleteRgx = rgx
}
// removeSoftDeleteWhere attempts to remove the soft delete where clause
// added automatically by sqlboiler.
func (q *Query) removeSoftDeleteWhere() {
if !q.removeSoftDelete {
return
}
for i := len(q.where) - 1; i >= 0; i-- {
w := q.where[i]
if w.kind != whereKindNormal || !removeSoftDeleteRgx.MatchString(w.clause) {
continue
}
// It's of vital importance we preserve order here
if i != len(q.where)-1 {
// If this is not the last element we shift all elements
// left one.
copy(q.where[i:], q.where[i+1:])
}
q.where = q.where[:len(q.where)-1]
// Only delete one of these - the rest could be from the user.
break
}
}