-
Notifications
You must be signed in to change notification settings - Fork 8
/
fetch_exec.go
1291 lines (1184 loc) · 38.2 KB
/
fetch_exec.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 sq
import (
"bytes"
"context"
"database/sql"
"fmt"
"reflect"
"runtime"
"strconv"
"strings"
"sync/atomic"
"time"
)
// Default dialect used by all queries (if no dialect is explicitly provided).
var DefaultDialect atomic.Pointer[string]
// A Cursor represents a database cursor.
type Cursor[T any] struct {
ctx context.Context
row *Row
rowmapper func(*Row) T
queryStats QueryStats
logSettings LogSettings
logger SqLogger
logged int32
fieldNames []string
resultsBuffer *bytes.Buffer
}
// FetchCursor returns a new cursor.
func FetchCursor[T any](db DB, query Query, rowmapper func(*Row) T) (*Cursor[T], error) {
return fetchCursor(context.Background(), db, query, rowmapper, 1)
}
// FetchCursorContext is like FetchCursor but additionally requires a context.Context.
func FetchCursorContext[T any](ctx context.Context, db DB, query Query, rowmapper func(*Row) T) (*Cursor[T], error) {
return fetchCursor(ctx, db, query, rowmapper, 1)
}
func fetchCursor[T any](ctx context.Context, db DB, query Query, rowmapper func(*Row) T, skip int) (cursor *Cursor[T], err error) {
if db == nil {
return nil, fmt.Errorf("db is nil")
}
if query == nil {
return nil, fmt.Errorf("query is nil")
}
if rowmapper == nil {
return nil, fmt.Errorf("rowmapper is nil")
}
dialect := query.GetDialect()
if dialect == "" {
defaultDialect := DefaultDialect.Load()
if defaultDialect != nil {
dialect = *defaultDialect
}
}
// If we can't set the fetchable fields, the query is static.
_, ok := query.SetFetchableFields(nil)
cursor = &Cursor[T]{
ctx: ctx,
rowmapper: rowmapper,
row: &Row{
dialect: dialect,
queryIsStatic: !ok,
},
queryStats: QueryStats{
Dialect: dialect,
Params: make(map[string][]int),
RowCount: sql.NullInt64{Valid: true},
},
}
// If the query is dynamic, call the rowmapper to populate row.fields and
// row.scanDest. Then, insert those fields back into the query.
if !cursor.row.queryIsStatic {
defer mapperFunctionPanicked(&err)
_ = cursor.rowmapper(cursor.row)
query, _ = query.SetFetchableFields(cursor.row.fields)
}
// Build query.
buf := bufpool.Get().(*bytes.Buffer)
buf.Reset()
defer bufpool.Put(buf)
err = query.WriteSQL(ctx, dialect, buf, &cursor.queryStats.Args, cursor.queryStats.Params)
cursor.queryStats.Query = buf.String()
if err != nil {
return nil, err
}
// Setup logger.
cursor.logger, _ = db.(SqLogger)
if cursor.logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
cursor.logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
if cursor.logger != nil {
cursor.logger.SqLogSettings(ctx, &cursor.logSettings)
if cursor.logSettings.IncludeCaller {
cursor.queryStats.CallerFile, cursor.queryStats.CallerLine, cursor.queryStats.CallerFunction = caller(skip + 1)
}
}
// Run query.
if cursor.logSettings.IncludeTime {
cursor.queryStats.StartedAt = time.Now()
}
cursor.row.sqlRows, cursor.queryStats.Err = db.QueryContext(ctx, cursor.queryStats.Query, cursor.queryStats.Args...)
if cursor.logSettings.IncludeTime {
cursor.queryStats.TimeTaken = time.Since(cursor.queryStats.StartedAt)
}
if cursor.queryStats.Err != nil {
cursor.log()
return nil, cursor.queryStats.Err
}
// If the query is static, we now know the number of columns returned by
// the query and can allocate the values slice and scanDest slice for
// scanning later.
if cursor.row.queryIsStatic {
cursor.row.columns, err = cursor.row.sqlRows.Columns()
if err != nil {
return nil, err
}
cursor.row.columnTypes, err = cursor.row.sqlRows.ColumnTypes()
if err != nil {
return nil, err
}
cursor.row.columnIndex = make(map[string]int)
for index, column := range cursor.row.columns {
cursor.row.columnIndex[column] = index
}
cursor.row.values = make([]any, len(cursor.row.columns))
cursor.row.scanDest = make([]any, len(cursor.row.columns))
for index := range cursor.row.values {
cursor.row.scanDest[index] = &cursor.row.values[index]
}
}
// Allocate the resultsBuffer.
if cursor.logSettings.IncludeResults > 0 {
cursor.resultsBuffer = bufpool.Get().(*bytes.Buffer)
cursor.resultsBuffer.Reset()
}
return cursor, nil
}
// Next advances the cursor to the next result.
func (cursor *Cursor[T]) Next() bool {
hasNext := cursor.row.sqlRows.Next()
if hasNext {
cursor.queryStats.RowCount.Int64++
} else {
cursor.log()
}
return hasNext
}
// RowCount returns the current row number so far.
func (cursor *Cursor[T]) RowCount() int64 { return cursor.queryStats.RowCount.Int64 }
// Result returns the cursor result.
func (cursor *Cursor[T]) Result() (result T, err error) {
err = cursor.row.sqlRows.Scan(cursor.row.scanDest...)
if err != nil {
cursor.log()
fieldMappings := getFieldMappings(cursor.queryStats.Dialect, cursor.row.fields, cursor.row.scanDest)
return result, fmt.Errorf("please check if your mapper function is correct:%s\n%w", fieldMappings, err)
}
// If results should be logged, write the row into the resultsBuffer.
if cursor.resultsBuffer != nil && cursor.queryStats.RowCount.Int64 <= int64(cursor.logSettings.IncludeResults) {
if len(cursor.fieldNames) == 0 {
cursor.fieldNames = getFieldNames(cursor.ctx, cursor.row)
}
cursor.resultsBuffer.WriteString("\n----[ Row " + strconv.FormatInt(cursor.queryStats.RowCount.Int64, 10) + " ]----")
for i := range cursor.row.scanDest {
cursor.resultsBuffer.WriteString("\n")
if i < len(cursor.fieldNames) {
cursor.resultsBuffer.WriteString(cursor.fieldNames[i])
}
cursor.resultsBuffer.WriteString(": ")
scanDest := cursor.row.scanDest[i]
rhs, err := Sprint(cursor.queryStats.Dialect, scanDest)
if err != nil {
cursor.resultsBuffer.WriteString("%!(error=" + err.Error() + ")")
continue
}
cursor.resultsBuffer.WriteString(rhs)
}
}
cursor.row.runningIndex = 0
defer mapperFunctionPanicked(&err)
result = cursor.rowmapper(cursor.row)
return result, nil
}
func (cursor *Cursor[T]) log() {
if !atomic.CompareAndSwapInt32(&cursor.logged, 0, 1) {
return
}
if cursor.resultsBuffer != nil {
cursor.queryStats.Results = cursor.resultsBuffer.String()
bufpool.Put(cursor.resultsBuffer)
}
if cursor.logger == nil {
return
}
if cursor.logSettings.LogAsynchronously {
go cursor.logger.SqLogQuery(cursor.ctx, cursor.queryStats)
} else {
cursor.logger.SqLogQuery(cursor.ctx, cursor.queryStats)
}
}
// Close closes the cursor.
func (cursor *Cursor[T]) Close() error {
cursor.log()
if err := cursor.row.sqlRows.Close(); err != nil {
return err
}
if err := cursor.row.sqlRows.Err(); err != nil {
return err
}
return nil
}
// FetchOne returns the first result from running the given Query on the given
// DB.
func FetchOne[T any](db DB, query Query, rowmapper func(*Row) T) (T, error) {
cursor, err := fetchCursor(context.Background(), db, query, rowmapper, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchOneContext is like FetchOne but additionally requires a context.Context.
func FetchOneContext[T any](ctx context.Context, db DB, query Query, rowmapper func(*Row) T) (T, error) {
cursor, err := fetchCursor(ctx, db, query, rowmapper, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchAll returns all results from running the given Query on the given DB.
func FetchAll[T any](db DB, query Query, rowmapper func(*Row) T) ([]T, error) {
cursor, err := fetchCursor(context.Background(), db, query, rowmapper, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// FetchAllContext is like FetchAll but additionally requires a context.Context.
func FetchAllContext[T any](ctx context.Context, db DB, query Query, rowmapper func(*Row) T) ([]T, error) {
cursor, err := fetchCursor(ctx, db, query, rowmapper, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// CompiledFetch is the result of compiling a Query down into a query string
// and args slice. A CompiledFetch can be safely executed in parallel.
type CompiledFetch[T any] struct {
dialect string
query string
args []any
params map[string][]int
rowmapper func(*Row) T
// if queryIsStatic is true, the rowmapper doesn't actually know what
// columns are in the query and it must be determined at runtime after
// running the query.
queryIsStatic bool
}
// NewCompiledFetch returns a new CompiledFetch.
func NewCompiledFetch[T any](dialect string, query string, args []any, params map[string][]int, rowmapper func(*Row) T) *CompiledFetch[T] {
return &CompiledFetch[T]{
dialect: dialect,
query: query,
args: args,
params: params,
rowmapper: rowmapper,
}
}
// CompileFetch returns a new CompileFetch.
func CompileFetch[T any](q Query, rowmapper func(*Row) T) (*CompiledFetch[T], error) {
return CompileFetchContext(context.Background(), q, rowmapper)
}
// CompileFetchContext is like CompileFetch but accepts a context.Context.
func CompileFetchContext[T any](ctx context.Context, query Query, rowmapper func(*Row) T) (compiledFetch *CompiledFetch[T], err error) {
if query == nil {
return nil, fmt.Errorf("query is nil")
}
if rowmapper == nil {
return nil, fmt.Errorf("rowmapper is nil")
}
dialect := query.GetDialect()
if dialect == "" {
defaultDialect := DefaultDialect.Load()
if defaultDialect != nil {
dialect = *defaultDialect
}
}
// If we can't set the fetchable fields, the query is static.
_, ok := query.SetFetchableFields(nil)
compiledFetch = &CompiledFetch[T]{
dialect: dialect,
params: make(map[string][]int),
rowmapper: rowmapper,
queryIsStatic: !ok,
}
row := &Row{
dialect: dialect,
queryIsStatic: !ok,
}
// If the query is dynamic, call the rowmapper to populate row.fields.
// Then, insert those fields back into the query.
if !row.queryIsStatic {
defer mapperFunctionPanicked(&err)
_ = rowmapper(row)
query, _ = query.SetFetchableFields(row.fields)
}
// Build query.
buf := bufpool.Get().(*bytes.Buffer)
buf.Reset()
defer bufpool.Put(buf)
err = query.WriteSQL(ctx, dialect, buf, &compiledFetch.args, compiledFetch.params)
compiledFetch.query = buf.String()
if err != nil {
return nil, err
}
return compiledFetch, nil
}
// FetchCursor returns a new cursor.
func (compiledFetch *CompiledFetch[T]) FetchCursor(db DB, params Params) (*Cursor[T], error) {
return compiledFetch.fetchCursor(context.Background(), db, params, 1)
}
// FetchCursorContext is like FetchCursor but additionally requires a context.Context.
func (compiledFetch *CompiledFetch[T]) FetchCursorContext(ctx context.Context, db DB, params Params) (*Cursor[T], error) {
return compiledFetch.fetchCursor(ctx, db, params, 1)
}
func (compiledFetch *CompiledFetch[T]) fetchCursor(ctx context.Context, db DB, params Params, skip int) (cursor *Cursor[T], err error) {
if db == nil {
return nil, fmt.Errorf("db is nil")
}
cursor = &Cursor[T]{
ctx: ctx,
rowmapper: compiledFetch.rowmapper,
row: &Row{
dialect: compiledFetch.dialect,
queryIsStatic: compiledFetch.queryIsStatic,
},
queryStats: QueryStats{
Dialect: compiledFetch.dialect,
Query: compiledFetch.query,
Args: compiledFetch.args,
Params: compiledFetch.params,
},
}
// Call the rowmapper to populate row.scanDest.
if !cursor.row.queryIsStatic {
defer mapperFunctionPanicked(&err)
_ = cursor.rowmapper(cursor.row)
}
// Substitute params.
cursor.queryStats.Args, err = substituteParams(cursor.queryStats.Dialect, cursor.queryStats.Args, cursor.queryStats.Params, params)
if err != nil {
return nil, err
}
// Setup logger.
cursor.queryStats.RowCount.Valid = true
cursor.logger, _ = db.(SqLogger)
if cursor.logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
cursor.logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
if cursor.logger != nil {
cursor.logger.SqLogSettings(ctx, &cursor.logSettings)
if cursor.logSettings.IncludeCaller {
cursor.queryStats.CallerFile, cursor.queryStats.CallerLine, cursor.queryStats.CallerFunction = caller(skip + 1)
}
}
// Run query.
if cursor.logSettings.IncludeTime {
cursor.queryStats.StartedAt = time.Now()
}
cursor.row.sqlRows, cursor.queryStats.Err = db.QueryContext(ctx, cursor.queryStats.Query, cursor.queryStats.Args...)
if cursor.logSettings.IncludeTime {
cursor.queryStats.TimeTaken = time.Since(cursor.queryStats.StartedAt)
}
if cursor.queryStats.Err != nil {
return nil, cursor.queryStats.Err
}
// If the query is static, we now know the number of columns returned by
// the query and can allocate the values slice and scanDest slice for
// scanning later.
if cursor.row.queryIsStatic {
cursor.row.columns, err = cursor.row.sqlRows.Columns()
if err != nil {
return nil, err
}
cursor.row.columnTypes, err = cursor.row.sqlRows.ColumnTypes()
if err != nil {
return nil, err
}
cursor.row.columnIndex = make(map[string]int)
for index, column := range cursor.row.columns {
cursor.row.columnIndex[column] = index
}
cursor.row.values = make([]any, len(cursor.row.columns))
cursor.row.scanDest = make([]any, len(cursor.row.columns))
for index := range cursor.row.values {
cursor.row.scanDest[index] = &cursor.row.values[index]
}
}
// Allocate the resultsBuffer.
if cursor.logSettings.IncludeResults > 0 {
cursor.resultsBuffer = bufpool.Get().(*bytes.Buffer)
cursor.resultsBuffer.Reset()
}
return cursor, nil
}
// FetchOne returns the first result from running the CompiledFetch on the
// given DB with the give params.
func (compiledFetch *CompiledFetch[T]) FetchOne(db DB, params Params) (T, error) {
cursor, err := compiledFetch.fetchCursor(context.Background(), db, params, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchOneContext is like FetchOne but additionally requires a context.Context.
func (compiledFetch *CompiledFetch[T]) FetchOneContext(ctx context.Context, db DB, params Params) (T, error) {
cursor, err := compiledFetch.fetchCursor(ctx, db, params, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchAll returns all the results from running the CompiledFetch on the given
// DB with the give params.
func (compiledFetch *CompiledFetch[T]) FetchAll(db DB, params Params) ([]T, error) {
cursor, err := compiledFetch.fetchCursor(context.Background(), db, params, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// FetchAllContext is like FetchAll but additionally requires a context.Context.
func (compiledFetch *CompiledFetch[T]) FetchAllContext(ctx context.Context, db DB, params Params) ([]T, error) {
cursor, err := compiledFetch.fetchCursor(ctx, db, params, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// GetSQL returns a copy of the dialect, query, args, params and rowmapper that
// make up the CompiledFetch.
func (compiledFetch *CompiledFetch[T]) GetSQL() (dialect string, query string, args []any, params map[string][]int, rowmapper func(*Row) T) {
dialect = compiledFetch.dialect
query = compiledFetch.query
args = make([]any, len(compiledFetch.args))
params = make(map[string][]int)
copy(args, compiledFetch.args)
for name, indexes := range compiledFetch.params {
indexes2 := make([]int, len(indexes))
copy(indexes2, indexes)
params[name] = indexes2
}
return dialect, query, args, params, compiledFetch.rowmapper
}
// Prepare creates a PreparedFetch from a CompiledFetch by preparing it on
// the given DB.
func (compiledFetch *CompiledFetch[T]) Prepare(db DB) (*PreparedFetch[T], error) {
return compiledFetch.PrepareContext(context.Background(), db)
}
// PrepareContext is like Prepare but additionally requires a context.Context.
func (compiledFetch *CompiledFetch[T]) PrepareContext(ctx context.Context, db DB) (*PreparedFetch[T], error) {
var err error
preparedFetch := &PreparedFetch[T]{
compiledFetch: NewCompiledFetch(compiledFetch.GetSQL()),
}
preparedFetch.compiledFetch.queryIsStatic = compiledFetch.queryIsStatic
if db == nil {
return nil, fmt.Errorf("db is nil")
}
preparedFetch.stmt, err = db.PrepareContext(ctx, compiledFetch.query)
if err != nil {
return nil, err
}
preparedFetch.logger, _ = db.(SqLogger)
if preparedFetch.logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
preparedFetch.logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
return preparedFetch, nil
}
// PreparedFetch is the result of preparing a CompiledFetch on a DB.
type PreparedFetch[T any] struct {
compiledFetch *CompiledFetch[T]
stmt *sql.Stmt
logger SqLogger
}
// PrepareFetch returns a new PreparedFetch.
func PrepareFetch[T any](db DB, q Query, rowmapper func(*Row) T) (*PreparedFetch[T], error) {
return PrepareFetchContext(context.Background(), db, q, rowmapper)
}
// PrepareFetchContext is like PrepareFetch but additionally requires a context.Context.
func PrepareFetchContext[T any](ctx context.Context, db DB, q Query, rowmapper func(*Row) T) (*PreparedFetch[T], error) {
compiledFetch, err := CompileFetchContext(ctx, q, rowmapper)
if err != nil {
return nil, err
}
return compiledFetch.PrepareContext(ctx, db)
}
// FetchCursor returns a new cursor.
func (preparedFetch PreparedFetch[T]) FetchCursor(params Params) (*Cursor[T], error) {
return preparedFetch.fetchCursor(context.Background(), params, 1)
}
// FetchCursorContext is like FetchCursor but additionally requires a context.Context.
func (preparedFetch PreparedFetch[T]) FetchCursorContext(ctx context.Context, params Params) (*Cursor[T], error) {
return preparedFetch.fetchCursor(ctx, params, 1)
}
func (preparedFetch *PreparedFetch[T]) fetchCursor(ctx context.Context, params Params, skip int) (cursor *Cursor[T], err error) {
cursor = &Cursor[T]{
ctx: ctx,
rowmapper: preparedFetch.compiledFetch.rowmapper,
row: &Row{
dialect: preparedFetch.compiledFetch.dialect,
queryIsStatic: preparedFetch.compiledFetch.queryIsStatic,
},
queryStats: QueryStats{
Dialect: preparedFetch.compiledFetch.dialect,
Query: preparedFetch.compiledFetch.query,
Args: preparedFetch.compiledFetch.args,
Params: preparedFetch.compiledFetch.params,
RowCount: sql.NullInt64{Valid: true},
},
logger: preparedFetch.logger,
}
// If the query is dynamic, call the rowmapper to populate row.scanDest.
if !cursor.row.queryIsStatic {
defer mapperFunctionPanicked(&err)
_ = cursor.rowmapper(cursor.row)
}
// Substitute params.
cursor.queryStats.Args, err = substituteParams(cursor.queryStats.Dialect, cursor.queryStats.Args, cursor.queryStats.Params, params)
if err != nil {
return nil, err
}
// Setup logger.
if cursor.logger != nil {
cursor.logger.SqLogSettings(ctx, &cursor.logSettings)
if cursor.logSettings.IncludeCaller {
cursor.queryStats.CallerFile, cursor.queryStats.CallerLine, cursor.queryStats.CallerFunction = caller(skip + 1)
}
}
// Run query.
if cursor.logSettings.IncludeTime {
cursor.queryStats.StartedAt = time.Now()
}
cursor.row.sqlRows, cursor.queryStats.Err = preparedFetch.stmt.QueryContext(ctx, cursor.queryStats.Args...)
if cursor.logSettings.IncludeTime {
cursor.queryStats.TimeTaken = time.Since(cursor.queryStats.StartedAt)
}
if cursor.queryStats.Err != nil {
return nil, cursor.queryStats.Err
}
// If the query is static, we now know the number of columns returned by
// the query and can allocate the values slice and scanDest slice for
// scanning later.
if cursor.row.queryIsStatic {
cursor.row.columns, err = cursor.row.sqlRows.Columns()
if err != nil {
return nil, err
}
cursor.row.columnTypes, err = cursor.row.sqlRows.ColumnTypes()
if err != nil {
return nil, err
}
cursor.row.columnIndex = make(map[string]int)
for index, column := range cursor.row.columns {
cursor.row.columnIndex[column] = index
}
cursor.row.values = make([]any, len(cursor.row.columns))
cursor.row.scanDest = make([]any, len(cursor.row.columns))
for index := range cursor.row.values {
cursor.row.scanDest[index] = &cursor.row.values[index]
}
}
// Allocate the resultsBuffer.
if cursor.logSettings.IncludeResults > 0 {
cursor.resultsBuffer = bufpool.Get().(*bytes.Buffer)
cursor.resultsBuffer.Reset()
}
return cursor, nil
}
// FetchOne returns the first result from running the PreparedFetch with the
// give params.
func (preparedFetch *PreparedFetch[T]) FetchOne(params Params) (T, error) {
cursor, err := preparedFetch.fetchCursor(context.Background(), params, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchOneContext is like FetchOne but additionally requires a context.Context.
func (preparedFetch *PreparedFetch[T]) FetchOneContext(ctx context.Context, params Params) (T, error) {
cursor, err := preparedFetch.fetchCursor(ctx, params, 1)
if err != nil {
return *new(T), err
}
defer cursor.Close()
return cursorResult(cursor)
}
// FetchAll returns all the results from running the PreparedFetch with the
// give params.
func (preparedFetch *PreparedFetch[T]) FetchAll(params Params) ([]T, error) {
cursor, err := preparedFetch.fetchCursor(context.Background(), params, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// FetchAllContext is like FetchAll but additionally requires a context.Context.
func (preparedFetch *PreparedFetch[T]) FetchAllContext(ctx context.Context, params Params) ([]T, error) {
cursor, err := preparedFetch.fetchCursor(ctx, params, 1)
if err != nil {
return nil, err
}
defer cursor.Close()
return cursorResults(cursor)
}
// GetCompiled returns a copy of the underlying CompiledFetch.
func (preparedFetch *PreparedFetch[T]) GetCompiled() *CompiledFetch[T] {
compiledFetch := NewCompiledFetch(preparedFetch.compiledFetch.GetSQL())
compiledFetch.queryIsStatic = preparedFetch.compiledFetch.queryIsStatic
return compiledFetch
}
// Close closes the PreparedFetch.
func (preparedFetch *PreparedFetch[T]) Close() error {
if preparedFetch.stmt == nil {
return nil
}
return preparedFetch.stmt.Close()
}
// Exec executes the given Query on the given DB.
func Exec(db DB, query Query) (Result, error) {
return exec(context.Background(), db, query, 1)
}
// ExecContext is like Exec but additionally requires a context.Context.
func ExecContext(ctx context.Context, db DB, query Query) (Result, error) {
return exec(ctx, db, query, 1)
}
func exec(ctx context.Context, db DB, query Query, skip int) (result Result, err error) {
if db == nil {
return result, fmt.Errorf("db is nil")
}
if query == nil {
return result, fmt.Errorf("query is nil")
}
dialect := query.GetDialect()
if dialect == "" {
defaultDialect := DefaultDialect.Load()
if defaultDialect != nil {
dialect = *defaultDialect
}
}
queryStats := QueryStats{
Dialect: dialect,
Params: make(map[string][]int),
}
// Build query.
buf := bufpool.Get().(*bytes.Buffer)
buf.Reset()
defer bufpool.Put(buf)
err = query.WriteSQL(ctx, dialect, buf, &queryStats.Args, queryStats.Params)
queryStats.Query = buf.String()
if err != nil {
return result, err
}
// Setup logger.
var logSettings LogSettings
logger, _ := db.(SqLogger)
if logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
if logger != nil {
logger.SqLogSettings(ctx, &logSettings)
if logSettings.IncludeCaller {
queryStats.CallerFile, queryStats.CallerLine, queryStats.CallerFunction = caller(skip + 1)
}
defer func() {
if logSettings.LogAsynchronously {
go logger.SqLogQuery(ctx, queryStats)
} else {
logger.SqLogQuery(ctx, queryStats)
}
}()
}
// Run query.
if logSettings.IncludeTime {
queryStats.StartedAt = time.Now()
}
var sqlResult sql.Result
sqlResult, queryStats.Err = db.ExecContext(ctx, queryStats.Query, queryStats.Args...)
if logSettings.IncludeTime {
queryStats.TimeTaken = time.Since(queryStats.StartedAt)
}
if queryStats.Err != nil {
return result, queryStats.Err
}
return execResult(sqlResult, &queryStats)
}
// CompiledExec is the result of compiling a Query down into a query string and
// args slice. A CompiledExec can be safely executed in parallel.
type CompiledExec struct {
dialect string
query string
args []any
params map[string][]int
}
// NewCompiledExec returns a new CompiledExec.
func NewCompiledExec(dialect string, query string, args []any, params map[string][]int) *CompiledExec {
return &CompiledExec{
dialect: dialect,
query: query,
args: args,
params: params,
}
}
// CompileExec returns a new CompiledExec.
func CompileExec(query Query) (*CompiledExec, error) {
return CompileExecContext(context.Background(), query)
}
// CompileExecContext is like CompileExec but additionally requires a context.Context.
func CompileExecContext(ctx context.Context, query Query) (*CompiledExec, error) {
if query == nil {
return nil, fmt.Errorf("query is nil")
}
dialect := query.GetDialect()
if dialect == "" {
defaultDialect := DefaultDialect.Load()
if defaultDialect != nil {
dialect = *defaultDialect
}
}
compiledExec := &CompiledExec{
dialect: dialect,
params: make(map[string][]int),
}
// Build query.
buf := bufpool.Get().(*bytes.Buffer)
buf.Reset()
defer bufpool.Put(buf)
err := query.WriteSQL(ctx, dialect, buf, &compiledExec.args, compiledExec.params)
compiledExec.query = buf.String()
if err != nil {
return nil, err
}
return compiledExec, nil
}
// Exec executes the CompiledExec on the given DB with the given params.
func (compiledExec *CompiledExec) Exec(db DB, params Params) (Result, error) {
return compiledExec.exec(context.Background(), db, params, 1)
}
// ExecContext is like Exec but additionally requires a context.Context.
func (compiledExec *CompiledExec) ExecContext(ctx context.Context, db DB, params Params) (Result, error) {
return compiledExec.exec(ctx, db, params, 1)
}
func (compiledExec *CompiledExec) exec(ctx context.Context, db DB, params Params, skip int) (result Result, err error) {
if db == nil {
return result, fmt.Errorf("db is nil")
}
queryStats := QueryStats{
Dialect: compiledExec.dialect,
Query: compiledExec.query,
Args: compiledExec.args,
Params: compiledExec.params,
}
// Setup logger.
var logSettings LogSettings
logger, _ := db.(SqLogger)
if logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
if logger != nil {
logger.SqLogSettings(ctx, &logSettings)
if logSettings.IncludeCaller {
queryStats.CallerFile, queryStats.CallerLine, queryStats.CallerFunction = caller(skip + 1)
}
defer func() {
if logSettings.LogAsynchronously {
go logger.SqLogQuery(ctx, queryStats)
} else {
logger.SqLogQuery(ctx, queryStats)
}
}()
}
// Substitute params.
queryStats.Args, err = substituteParams(queryStats.Dialect, queryStats.Args, queryStats.Params, params)
if err != nil {
return result, err
}
// Run query.
if logSettings.IncludeTime {
queryStats.StartedAt = time.Now()
}
var sqlResult sql.Result
sqlResult, queryStats.Err = db.ExecContext(ctx, queryStats.Query, queryStats.Args...)
if logSettings.IncludeTime {
queryStats.TimeTaken = time.Since(queryStats.StartedAt)
}
if queryStats.Err != nil {
return result, queryStats.Err
}
return execResult(sqlResult, &queryStats)
}
// GetSQL returns a copy of the dialect, query, args, params and rowmapper that
// make up the CompiledExec.
func (compiledExec *CompiledExec) GetSQL() (dialect string, query string, args []any, params map[string][]int) {
dialect = compiledExec.dialect
query = compiledExec.query
args = make([]any, len(compiledExec.args))
params = make(map[string][]int)
copy(args, compiledExec.args)
for name, indexes := range compiledExec.params {
indexes2 := make([]int, len(indexes))
copy(indexes2, indexes)
params[name] = indexes2
}
return dialect, query, args, params
}
// Prepare creates a PreparedExec from a CompiledExec by preparing it on the
// given DB.
func (compiledExec *CompiledExec) Prepare(db DB) (*PreparedExec, error) {
return compiledExec.PrepareContext(context.Background(), db)
}
// PrepareContext is like Prepare but additionally requires a context.Context.
func (compiledExec *CompiledExec) PrepareContext(ctx context.Context, db DB) (*PreparedExec, error) {
var err error
preparedExec := &PreparedExec{
compiledExec: NewCompiledExec(compiledExec.GetSQL()),
}
preparedExec.stmt, err = db.PrepareContext(ctx, compiledExec.query)
if err != nil {
return nil, err
}
preparedExec.logger, _ = db.(SqLogger)
if preparedExec.logger == nil {
logQuery, _ := defaultLogQuery.Load().(func(context.Context, QueryStats))
if logQuery != nil {
logSettings, _ := defaultLogSettings.Load().(func(context.Context, *LogSettings))
preparedExec.logger = &sqLogStruct{
logSettings: logSettings,
logQuery: logQuery,
}
}
}
return preparedExec, nil
}
// PrepareExec is the result of preparing a CompiledExec on a DB.
type PreparedExec struct {
compiledExec *CompiledExec
stmt *sql.Stmt
logger SqLogger
}
// PrepareExec returns a new PreparedExec.
func PrepareExec(db DB, q Query) (*PreparedExec, error) {
return PrepareExecContext(context.Background(), db, q)
}
// PrepareExecContext is like PrepareExec but additionally requires a
// context.Context.
func PrepareExecContext(ctx context.Context, db DB, q Query) (*PreparedExec, error) {
compiledExec, err := CompileExecContext(ctx, q)
if err != nil {
return nil, err
}
return compiledExec.PrepareContext(ctx, db)
}
// Close closes the PreparedExec.
func (preparedExec *PreparedExec) Close() error {
if preparedExec.stmt == nil {
return nil
}
return preparedExec.stmt.Close()
}
// Exec executes the PreparedExec with the given params.
func (preparedExec *PreparedExec) Exec(params Params) (Result, error) {
return preparedExec.exec(context.Background(), params, 1)