-
-
Notifications
You must be signed in to change notification settings - Fork 407
/
Copy pathquery.go
1680 lines (1431 loc) · 37.2 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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package orm
import (
"context"
"errors"
"fmt"
"io"
"reflect"
"strconv"
"strings"
"sync"
"time"
"github.com/go-pg/pg/v10/internal"
"github.com/go-pg/pg/v10/types"
)
type QueryOp string
const (
SelectOp QueryOp = "SELECT"
InsertOp QueryOp = "INSERT"
UpdateOp QueryOp = "UPDATE"
DeleteOp QueryOp = "DELETE"
CreateTableOp QueryOp = "CREATE TABLE"
DropTableOp QueryOp = "DROP TABLE"
CreateCompositeOp QueryOp = "CREATE COMPOSITE"
DropCompositeOp QueryOp = "DROP COMPOSITE"
)
type queryFlag uint8
const (
implicitModelFlag queryFlag = 1 << iota
deletedFlag
allWithDeletedFlag
)
type withQuery struct {
name string
query QueryAppender
}
type columnValue struct {
column string
value *SafeQueryAppender
}
type union struct {
expr string
query *Query
}
type Query struct {
ctx context.Context
db DB
stickyErr error
model Model
tableModel TableModel
flags queryFlag
with []withQuery
tables []QueryAppender
distinctOn []*SafeQueryAppender
columns []QueryAppender
set []QueryAppender
modelValues map[string]*SafeQueryAppender
extraValues []*columnValue
where []queryWithSepAppender
updWhere []queryWithSepAppender
group []QueryAppender
having []*SafeQueryAppender
union []*union
joins []QueryAppender
joinAppendOn func(app *condAppender)
order []QueryAppender
limit int
offset int
selFor *SafeQueryAppender
onConflict *SafeQueryAppender
returning []*SafeQueryAppender
}
func NewQuery(db DB, model ...interface{}) *Query {
ctx := context.Background()
if db != nil {
ctx = db.Context()
}
q := &Query{ctx: ctx}
return q.DB(db).Model(model...)
}
func NewQueryContext(ctx context.Context, db DB, model ...interface{}) *Query {
return NewQuery(db, model...).Context(ctx)
}
// New returns new zero Query bound to the current db.
func (q *Query) New() *Query {
clone := &Query{
ctx: q.ctx,
db: q.db,
model: q.model,
tableModel: cloneTableModelJoins(q.tableModel),
flags: q.flags,
}
return clone.withFlag(implicitModelFlag)
}
// Clone clones the Query.
func (q *Query) Clone() *Query {
var modelValues map[string]*SafeQueryAppender
if len(q.modelValues) > 0 {
modelValues = make(map[string]*SafeQueryAppender, len(q.modelValues))
for k, v := range q.modelValues {
modelValues[k] = v
}
}
clone := &Query{
ctx: q.ctx,
db: q.db,
stickyErr: q.stickyErr,
model: q.model,
tableModel: cloneTableModelJoins(q.tableModel),
flags: q.flags,
with: q.with[:len(q.with):len(q.with)],
tables: q.tables[:len(q.tables):len(q.tables)],
distinctOn: q.distinctOn[:len(q.distinctOn):len(q.distinctOn)],
columns: q.columns[:len(q.columns):len(q.columns)],
set: q.set[:len(q.set):len(q.set)],
modelValues: modelValues,
extraValues: q.extraValues[:len(q.extraValues):len(q.extraValues)],
where: q.where[:len(q.where):len(q.where)],
updWhere: q.updWhere[:len(q.updWhere):len(q.updWhere)],
joins: q.joins[:len(q.joins):len(q.joins)],
group: q.group[:len(q.group):len(q.group)],
having: q.having[:len(q.having):len(q.having)],
union: q.union[:len(q.union):len(q.union)],
order: q.order[:len(q.order):len(q.order)],
limit: q.limit,
offset: q.offset,
selFor: q.selFor,
onConflict: q.onConflict,
returning: q.returning[:len(q.returning):len(q.returning)],
}
return clone
}
func cloneTableModelJoins(tm TableModel) TableModel {
switch tm := tm.(type) {
case *structTableModel:
if len(tm.joins) == 0 {
return tm
}
clone := *tm
clone.joins = clone.joins[:len(clone.joins):len(clone.joins)]
return &clone
case *sliceTableModel:
if len(tm.joins) == 0 {
return tm
}
clone := *tm
clone.joins = clone.joins[:len(clone.joins):len(clone.joins)]
return &clone
}
return tm
}
func (q *Query) err(err error) *Query {
if q.stickyErr == nil {
q.stickyErr = err
}
return q
}
func (q *Query) hasFlag(flag queryFlag) bool {
return hasFlag(q.flags, flag)
}
func hasFlag(flags, flag queryFlag) bool {
return flags&flag != 0
}
func (q *Query) withFlag(flag queryFlag) *Query {
q.flags |= flag
return q
}
func (q *Query) withoutFlag(flag queryFlag) *Query {
q.flags &= ^flag
return q
}
func (q *Query) Context(c context.Context) *Query {
q.ctx = c
return q
}
func (q *Query) DB(db DB) *Query {
q.db = db
return q
}
func (q *Query) Model(model ...interface{}) *Query {
var err error
switch l := len(model); {
case l == 0:
q.model = nil
case l == 1:
q.model, err = NewModel(model[0])
case l > 1:
q.model, err = NewModel(&model)
default:
panic("not reached")
}
if err != nil {
q = q.err(err)
}
q.tableModel, _ = q.model.(TableModel)
return q.withoutFlag(implicitModelFlag)
}
func (q *Query) TableModel() TableModel {
return q.tableModel
}
func (q *Query) isSoftDelete() bool {
if q.tableModel != nil {
return q.tableModel.Table().SoftDeleteField != nil && !q.hasFlag(allWithDeletedFlag)
}
return false
}
// Deleted adds `WHERE deleted_at IS NOT NULL` clause for soft deleted models.
func (q *Query) Deleted() *Query {
if q.tableModel != nil {
if err := q.tableModel.Table().mustSoftDelete(); err != nil {
return q.err(err)
}
}
return q.withFlag(deletedFlag).withoutFlag(allWithDeletedFlag)
}
// AllWithDeleted changes query to return all rows including soft deleted ones.
func (q *Query) AllWithDeleted() *Query {
if q.tableModel != nil {
if err := q.tableModel.Table().mustSoftDelete(); err != nil {
return q.err(err)
}
}
return q.withFlag(allWithDeletedFlag).withoutFlag(deletedFlag)
}
// With adds subq as common table expression with the given name.
func (q *Query) With(name string, subq *Query) *Query {
return q._with(name, NewSelectQuery(subq))
}
func (q *Query) WithInsert(name string, subq *Query) *Query {
return q._with(name, NewInsertQuery(subq))
}
func (q *Query) WithUpdate(name string, subq *Query) *Query {
return q._with(name, NewUpdateQuery(subq, false))
}
func (q *Query) WithDelete(name string, subq *Query) *Query {
return q._with(name, NewDeleteQuery(subq))
}
func (q *Query) _with(name string, subq QueryAppender) *Query {
q.with = append(q.with, withQuery{
name: name,
query: subq,
})
return q
}
// WrapWith creates new Query and adds to it current query as
// common table expression with the given name.
func (q *Query) WrapWith(name string) *Query {
wrapper := q.New()
wrapper.with = q.with
q.with = nil
wrapper = wrapper.With(name, q)
return wrapper
}
func (q *Query) Table(tables ...string) *Query {
for _, table := range tables {
q.tables = append(q.tables, fieldAppender{table})
}
return q
}
func (q *Query) TableExpr(expr string, params ...interface{}) *Query {
q.tables = append(q.tables, SafeQuery(expr, params...))
return q
}
func (q *Query) Distinct() *Query {
q.distinctOn = make([]*SafeQueryAppender, 0)
return q
}
func (q *Query) DistinctOn(expr string, params ...interface{}) *Query {
q.distinctOn = append(q.distinctOn, SafeQuery(expr, params...))
return q
}
// Column adds a column to the Query quoting it according to PostgreSQL rules.
// Does not expand params like ?TableAlias etc.
// ColumnExpr can be used to bypass quoting restriction or for params expansion.
// Column name can be:
// - column_name,
// - table_alias.column_name,
// - table_alias.*.
func (q *Query) Column(columns ...string) *Query {
for _, column := range columns {
if column == "_" {
if q.columns == nil {
q.columns = make([]QueryAppender, 0)
}
continue
}
q.columns = append(q.columns, fieldAppender{column})
}
return q
}
// ColumnExpr adds column expression to the Query.
func (q *Query) ColumnExpr(expr string, params ...interface{}) *Query {
q.columns = append(q.columns, SafeQuery(expr, params...))
return q
}
// ExcludeColumn excludes a column from the list of to be selected columns.
func (q *Query) ExcludeColumn(columns ...string) *Query {
if q.columns == nil {
for _, f := range q.tableModel.Table().Fields {
q.columns = append(q.columns, fieldAppender{f.SQLName})
}
}
for _, col := range columns {
if !q.excludeColumn(col) {
return q.err(fmt.Errorf("pg: can't find column=%q", col))
}
}
return q
}
func (q *Query) excludeColumn(column string) bool {
for i := 0; i < len(q.columns); i++ {
app, ok := q.columns[i].(fieldAppender)
if ok && app.field == column {
q.columns = append(q.columns[:i], q.columns[i+1:]...)
return true
}
}
return false
}
func (q *Query) getFields() ([]*Field, error) {
return q._getFields(false)
}
func (q *Query) getDataFields() ([]*Field, error) {
return q._getFields(true)
}
func (q *Query) _getFields(omitPKs bool) ([]*Field, error) {
table := q.tableModel.Table()
columns := make([]*Field, 0, len(q.columns))
for _, col := range q.columns {
f, ok := col.(fieldAppender)
if !ok {
continue
}
field, err := table.GetField(f.field)
if err != nil {
return nil, err
}
if omitPKs && field.hasFlag(PrimaryKeyFlag) {
continue
}
columns = append(columns, field)
}
return columns, nil
}
// Relation adds a relation to the query. Relation name can be:
// - RelationName to select all columns,
// - RelationName.column_name,
// - RelationName._ to join relation without selecting relation columns.
func (q *Query) Relation(name string, apply ...func(*Query) (*Query, error)) *Query {
var fn func(*Query) (*Query, error)
if len(apply) == 1 {
fn = apply[0]
} else if len(apply) > 1 {
panic("only one apply function is supported")
}
join := q.tableModel.Join(name, fn)
if join == nil {
return q.err(fmt.Errorf("%s does not have relation=%q",
q.tableModel.Table(), name))
}
if fn == nil {
return q
}
switch join.Rel.Type {
case HasOneRelation, BelongsToRelation:
q.joinAppendOn = join.AppendOn
return q.Apply(fn)
default:
q.joinAppendOn = nil
return q
}
}
func (q *Query) Set(set string, params ...interface{}) *Query {
q.set = append(q.set, SafeQuery(set, params...))
return q
}
// Value overwrites model value for the column in INSERT and UPDATE queries.
func (q *Query) Value(column string, value string, params ...interface{}) *Query {
if !q.hasTableModel() {
q.err(errModelNil)
return q
}
table := q.tableModel.Table()
if _, ok := table.FieldsMap[column]; ok {
if q.modelValues == nil {
q.modelValues = make(map[string]*SafeQueryAppender)
}
q.modelValues[column] = SafeQuery(value, params...)
} else {
q.extraValues = append(q.extraValues, &columnValue{
column: column,
value: SafeQuery(value, params...),
})
}
return q
}
func (q *Query) Where(condition string, params ...interface{}) *Query {
q.addWhere(&condAppender{
sep: " AND ",
cond: condition,
params: params,
})
return q
}
func (q *Query) WhereOr(condition string, params ...interface{}) *Query {
q.addWhere(&condAppender{
sep: " OR ",
cond: condition,
params: params,
})
return q
}
// WhereGroup encloses conditions added in the function in parentheses.
//
// q.Where("TRUE").
// WhereGroup(func(q *pg.Query) (*pg.Query, error) {
// q = q.WhereOr("FALSE").WhereOr("TRUE").
// return q, nil
// })
//
// generates
//
// WHERE TRUE AND (FALSE OR TRUE)
func (q *Query) WhereGroup(fn func(*Query) (*Query, error)) *Query {
return q.whereGroup(" AND ", fn)
}
// WhereGroup encloses conditions added in the function in parentheses.
//
// q.Where("TRUE").
// WhereNotGroup(func(q *pg.Query) (*pg.Query, error) {
// q = q.WhereOr("FALSE").WhereOr("TRUE").
// return q, nil
// })
//
// generates
//
// WHERE TRUE AND NOT (FALSE OR TRUE)
func (q *Query) WhereNotGroup(fn func(*Query) (*Query, error)) *Query {
return q.whereGroup(" AND NOT ", fn)
}
// WhereOrGroup encloses conditions added in the function in parentheses.
//
// q.Where("TRUE").
// WhereOrGroup(func(q *pg.Query) (*pg.Query, error) {
// q = q.Where("FALSE").Where("TRUE").
// return q, nil
// })
//
// generates
//
// WHERE TRUE OR (FALSE AND TRUE)
func (q *Query) WhereOrGroup(fn func(*Query) (*Query, error)) *Query {
return q.whereGroup(" OR ", fn)
}
// WhereOrGroup encloses conditions added in the function in parentheses.
//
// q.Where("TRUE").
// WhereOrGroup(func(q *pg.Query) (*pg.Query, error) {
// q = q.Where("FALSE").Where("TRUE").
// return q, nil
// })
//
// generates
//
// WHERE TRUE OR NOT (FALSE AND TRUE)
func (q *Query) WhereOrNotGroup(fn func(*Query) (*Query, error)) *Query {
return q.whereGroup(" OR NOT ", fn)
}
func (q *Query) whereGroup(conj string, fn func(*Query) (*Query, error)) *Query {
saved := q.where
q.where = nil
newq, err := fn(q)
if err != nil {
q.err(err)
return q
}
if len(newq.where) == 0 {
newq.where = saved
return newq
}
f := &condGroupAppender{
sep: conj,
cond: newq.where,
}
newq.where = saved
newq.addWhere(f)
return newq
}
// WhereIn is a shortcut for Where and pg.In.
func (q *Query) WhereIn(where string, slice interface{}) *Query {
return q.Where(where, types.In(slice))
}
// WhereInMulti is a shortcut for Where and pg.InMulti.
func (q *Query) WhereInMulti(where string, values ...interface{}) *Query {
return q.Where(where, types.InMulti(values...))
}
func (q *Query) addWhere(f queryWithSepAppender) {
if q.onConflictDoUpdate() {
q.updWhere = append(q.updWhere, f)
} else {
q.where = append(q.where, f)
}
}
// WherePK adds condition based on the model primary keys.
// Usually it is the same as:
//
// Where("id = ?id")
func (q *Query) WherePK() *Query {
if !q.hasTableModel() {
q.err(errModelNil)
return q
}
if err := q.tableModel.Table().checkPKs(); err != nil {
q.err(err)
return q
}
switch q.tableModel.Kind() {
case reflect.Struct:
q.where = append(q.where, wherePKStructQuery{q})
return q
case reflect.Slice:
q.joins = append(q.joins, joinPKSliceQuery{q: q})
q.where = append(q.where, wherePKSliceQuery{q: q})
q = q.OrderExpr(`"_data"."ordering" ASC`)
return q
}
panic("not reached")
}
func (q *Query) Join(join string, params ...interface{}) *Query {
j := &joinQuery{
join: SafeQuery(join, params...),
}
q.joins = append(q.joins, j)
q.joinAppendOn = j.AppendOn
return q
}
// JoinOn appends join condition to the last join.
func (q *Query) JoinOn(condition string, params ...interface{}) *Query {
if q.joinAppendOn == nil {
q.err(errors.New("pg: no joins to apply JoinOn"))
return q
}
q.joinAppendOn(&condAppender{
sep: " AND ",
cond: condition,
params: params,
})
return q
}
func (q *Query) JoinOnOr(condition string, params ...interface{}) *Query {
if q.joinAppendOn == nil {
q.err(errors.New("pg: no joins to apply JoinOn"))
return q
}
q.joinAppendOn(&condAppender{
sep: " OR ",
cond: condition,
params: params,
})
return q
}
func (q *Query) Group(columns ...string) *Query {
for _, column := range columns {
q.group = append(q.group, fieldAppender{column})
}
return q
}
func (q *Query) GroupExpr(group string, params ...interface{}) *Query {
q.group = append(q.group, SafeQuery(group, params...))
return q
}
func (q *Query) Having(having string, params ...interface{}) *Query {
q.having = append(q.having, SafeQuery(having, params...))
return q
}
func (q *Query) Union(other *Query) *Query {
return q.addUnion(" UNION ", other)
}
func (q *Query) UnionAll(other *Query) *Query {
return q.addUnion(" UNION ALL ", other)
}
func (q *Query) Intersect(other *Query) *Query {
return q.addUnion(" INTERSECT ", other)
}
func (q *Query) IntersectAll(other *Query) *Query {
return q.addUnion(" INTERSECT ALL ", other)
}
func (q *Query) Except(other *Query) *Query {
return q.addUnion(" EXCEPT ", other)
}
func (q *Query) ExceptAll(other *Query) *Query {
return q.addUnion(" EXCEPT ALL ", other)
}
func (q *Query) addUnion(expr string, other *Query) *Query {
q.union = append(q.union, &union{
expr: expr,
query: other,
})
return q
}
// Order adds sort order to the Query quoting column name. Does not expand params like ?TableAlias etc.
// OrderExpr can be used to bypass quoting restriction or for params expansion.
func (q *Query) Order(orders ...string) *Query {
loop:
for _, order := range orders {
if order == "" {
continue
}
ind := strings.Index(order, " ")
if ind != -1 {
field := order[:ind]
sort := order[ind+1:]
switch internal.UpperString(sort) {
case "ASC", "DESC", "ASC NULLS FIRST", "DESC NULLS FIRST",
"ASC NULLS LAST", "DESC NULLS LAST":
q = q.OrderExpr("? ?", types.Ident(field), types.Safe(sort))
continue loop
}
}
q.order = append(q.order, fieldAppender{order})
}
return q
}
// Order adds sort order to the Query.
func (q *Query) OrderExpr(order string, params ...interface{}) *Query {
if order != "" {
q.order = append(q.order, SafeQuery(order, params...))
}
return q
}
func (q *Query) Limit(n int) *Query {
q.limit = n
return q
}
func (q *Query) Offset(n int) *Query {
q.offset = n
return q
}
func (q *Query) OnConflict(s string, params ...interface{}) *Query {
q.onConflict = SafeQuery(s, params...)
return q
}
func (q *Query) onConflictDoUpdate() bool {
return q.onConflict != nil &&
strings.HasSuffix(internal.UpperString(q.onConflict.query), "DO UPDATE")
}
// Returning adds a RETURNING clause to the query.
//
// `Returning("NULL")` can be used to suppress default returning clause
// generated by go-pg for INSERT queries to get values for null columns.
func (q *Query) Returning(s string, params ...interface{}) *Query {
q.returning = append(q.returning, SafeQuery(s, params...))
return q
}
func (q *Query) For(s string, params ...interface{}) *Query {
q.selFor = SafeQuery(s, params...)
return q
}
// Apply calls the fn passing the Query as an argument.
func (q *Query) Apply(fn func(*Query) (*Query, error)) *Query {
qq, err := fn(q)
if err != nil {
q.err(err)
return q
}
return qq
}
// Count returns number of rows matching the query using count aggregate function.
func (q *Query) Count() (int, error) {
if q.stickyErr != nil {
return 0, q.stickyErr
}
var count int
_, err := q.db.QueryOneContext(
q.ctx, Scan(&count), q.countSelectQuery("count(*)"), q.tableModel)
return count, err
}
func (q *Query) countSelectQuery(column string) *SelectQuery {
return &SelectQuery{
q: q,
count: column,
}
}
// First sorts rows by primary key and selects the first row.
// It is a shortcut for:
//
// q.OrderExpr("id ASC").Limit(1)
func (q *Query) First() error {
table := q.tableModel.Table()
if err := table.checkPKs(); err != nil {
return err
}
b := appendColumns(nil, table.Alias, table.PKs)
return q.OrderExpr(internal.BytesToString(b)).Limit(1).Select()
}
// Last sorts rows by primary key and selects the last row.
// It is a shortcut for:
//
// q.OrderExpr("id DESC").Limit(1)
func (q *Query) Last() error {
table := q.tableModel.Table()
if err := table.checkPKs(); err != nil {
return err
}
// TODO: fix for multi columns
b := appendColumns(nil, table.Alias, table.PKs)
b = append(b, " DESC"...)
return q.OrderExpr(internal.BytesToString(b)).Limit(1).Select()
}
// Select selects the model.
func (q *Query) Select(values ...interface{}) error {
if q.stickyErr != nil {
return q.stickyErr
}
model, err := q.newModel(values)
if err != nil {
return err
}
res, err := q.query(q.ctx, model, NewSelectQuery(q))
if err != nil {
return err
}
if res.RowsReturned() > 0 {
if q.tableModel != nil {
if err := q.selectJoins(q.tableModel.GetJoins()); err != nil {
return err
}
}
}
if err := model.AfterSelect(q.ctx); err != nil {
return err
}
return nil
}
func (q *Query) newModel(values []interface{}) (Model, error) {
if len(values) > 0 {
return newScanModel(values)
}
return q.tableModel, nil
}
func (q *Query) query(ctx context.Context, model Model, query interface{}) (Result, error) {
if _, ok := model.(useQueryOne); ok {
return q.db.QueryOneContext(ctx, model, query, q.tableModel)
}
return q.db.QueryContext(ctx, model, query, q.tableModel)
}
// SelectAndCount runs Select and Count in two goroutines,
// waits for them to finish and returns the result. If query limit is -1
// it does not select any data and only counts the results.
func (q *Query) SelectAndCount(values ...interface{}) (count int, firstErr error) {
if q.stickyErr != nil {
return 0, q.stickyErr
}
var wg sync.WaitGroup
var mu sync.Mutex
if q.limit >= 0 {
wg.Add(1)
go func() {
defer wg.Done()
err := q.Select(values...)
if err != nil {
mu.Lock()
if firstErr == nil {
firstErr = err
}
mu.Unlock()
}
}()
}
wg.Add(1)
go func() {
defer wg.Done()
var err error
count, err = q.Count()
if err != nil {
mu.Lock()
if firstErr == nil {
firstErr = err
}
mu.Unlock()
}
}()
wg.Wait()
return count, firstErr
}
// SelectAndCountEstimate runs Select and CountEstimate in two goroutines,
// waits for them to finish and returns the result. If query limit is -1
// it does not select any data and only counts the results.
func (q *Query) SelectAndCountEstimate(threshold int, values ...interface{}) (count int, firstErr error) {
if q.stickyErr != nil {
return 0, q.stickyErr
}
var wg sync.WaitGroup
var mu sync.Mutex
if q.limit >= 0 {
wg.Add(1)
go func() {
defer wg.Done()
err := q.Select(values...)
if err != nil {
mu.Lock()
if firstErr == nil {
firstErr = err
}
mu.Unlock()
}
}()
}
wg.Add(1)
go func() {
defer wg.Done()
var err error
count, err = q.CountEstimate(threshold)
if err != nil {
mu.Lock()
if firstErr == nil {
firstErr = err
}
mu.Unlock()
}
}()
wg.Wait()
return count, firstErr
}
// ForEach calls the function for each row returned by the query
// without loading all rows into the memory.
//
// Function can accept a struct, a pointer to a struct, an orm.Model,
// or values for the columns in a row. Function must return an error.
func (q *Query) ForEach(fn interface{}) error {
m := newFuncModel(fn)
return q.Select(m)
}
func (q *Query) forEachHasOneJoin(fn func(*join) error) error {
if q.tableModel == nil {
return nil
}
return q._forEachHasOneJoin(fn, q.tableModel.GetJoins())
}
func (q *Query) _forEachHasOneJoin(fn func(*join) error, joins []join) error {
for i := range joins {
j := &joins[i]
switch j.Rel.Type {
case HasOneRelation, BelongsToRelation:
err := fn(j)
if err != nil {
return err
}
err = q._forEachHasOneJoin(fn, j.JoinModel.GetJoins())
if err != nil {
return err
}
}
}
return nil
}
func (q *Query) selectJoins(joins []join) error {
var err error
for i := range joins {
j := &joins[i]