-
Notifications
You must be signed in to change notification settings - Fork 27
/
referrer_query.go
867 lines (816 loc) · 25.8 KB
/
referrer_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
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"database/sql/driver"
"fmt"
"math"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/predicate"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/referrer"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/workflow"
"github.com/google/uuid"
)
// ReferrerQuery is the builder for querying Referrer entities.
type ReferrerQuery struct {
config
ctx *QueryContext
order []referrer.OrderOption
inters []Interceptor
predicates []predicate.Referrer
withReferredBy *ReferrerQuery
withReferences *ReferrerQuery
withWorkflows *WorkflowQuery
modifiers []func(*sql.Selector)
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Where adds a new predicate for the ReferrerQuery builder.
func (rq *ReferrerQuery) Where(ps ...predicate.Referrer) *ReferrerQuery {
rq.predicates = append(rq.predicates, ps...)
return rq
}
// Limit the number of records to be returned by this query.
func (rq *ReferrerQuery) Limit(limit int) *ReferrerQuery {
rq.ctx.Limit = &limit
return rq
}
// Offset to start from.
func (rq *ReferrerQuery) Offset(offset int) *ReferrerQuery {
rq.ctx.Offset = &offset
return rq
}
// Unique configures the query builder to filter duplicate records on query.
// By default, unique is set to true, and can be disabled using this method.
func (rq *ReferrerQuery) Unique(unique bool) *ReferrerQuery {
rq.ctx.Unique = &unique
return rq
}
// Order specifies how the records should be ordered.
func (rq *ReferrerQuery) Order(o ...referrer.OrderOption) *ReferrerQuery {
rq.order = append(rq.order, o...)
return rq
}
// QueryReferredBy chains the current query on the "referred_by" edge.
func (rq *ReferrerQuery) QueryReferredBy() *ReferrerQuery {
query := (&ReferrerClient{config: rq.config}).Query()
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := rq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(referrer.Table, referrer.FieldID, selector),
sqlgraph.To(referrer.Table, referrer.FieldID),
sqlgraph.Edge(sqlgraph.M2M, true, referrer.ReferredByTable, referrer.ReferredByPrimaryKey...),
)
fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// QueryReferences chains the current query on the "references" edge.
func (rq *ReferrerQuery) QueryReferences() *ReferrerQuery {
query := (&ReferrerClient{config: rq.config}).Query()
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := rq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(referrer.Table, referrer.FieldID, selector),
sqlgraph.To(referrer.Table, referrer.FieldID),
sqlgraph.Edge(sqlgraph.M2M, false, referrer.ReferencesTable, referrer.ReferencesPrimaryKey...),
)
fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// QueryWorkflows chains the current query on the "workflows" edge.
func (rq *ReferrerQuery) QueryWorkflows() *WorkflowQuery {
query := (&WorkflowClient{config: rq.config}).Query()
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := rq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(referrer.Table, referrer.FieldID, selector),
sqlgraph.To(workflow.Table, workflow.FieldID),
sqlgraph.Edge(sqlgraph.M2M, false, referrer.WorkflowsTable, referrer.WorkflowsPrimaryKey...),
)
fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// First returns the first Referrer entity from the query.
// Returns a *NotFoundError when no Referrer was found.
func (rq *ReferrerQuery) First(ctx context.Context) (*Referrer, error) {
nodes, err := rq.Limit(1).All(setContextOp(ctx, rq.ctx, "First"))
if err != nil {
return nil, err
}
if len(nodes) == 0 {
return nil, &NotFoundError{referrer.Label}
}
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (rq *ReferrerQuery) FirstX(ctx context.Context) *Referrer {
node, err := rq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return node
}
// FirstID returns the first Referrer ID from the query.
// Returns a *NotFoundError when no Referrer ID was found.
func (rq *ReferrerQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) {
var ids []uuid.UUID
if ids, err = rq.Limit(1).IDs(setContextOp(ctx, rq.ctx, "FirstID")); err != nil {
return
}
if len(ids) == 0 {
err = &NotFoundError{referrer.Label}
return
}
return ids[0], nil
}
// FirstIDX is like FirstID, but panics if an error occurs.
func (rq *ReferrerQuery) FirstIDX(ctx context.Context) uuid.UUID {
id, err := rq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns a single Referrer entity found by the query, ensuring it only returns one.
// Returns a *NotSingularError when more than one Referrer entity is found.
// Returns a *NotFoundError when no Referrer entities are found.
func (rq *ReferrerQuery) Only(ctx context.Context) (*Referrer, error) {
nodes, err := rq.Limit(2).All(setContextOp(ctx, rq.ctx, "Only"))
if err != nil {
return nil, err
}
switch len(nodes) {
case 1:
return nodes[0], nil
case 0:
return nil, &NotFoundError{referrer.Label}
default:
return nil, &NotSingularError{referrer.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (rq *ReferrerQuery) OnlyX(ctx context.Context) *Referrer {
node, err := rq.Only(ctx)
if err != nil {
panic(err)
}
return node
}
// OnlyID is like Only, but returns the only Referrer ID in the query.
// Returns a *NotSingularError when more than one Referrer ID is found.
// Returns a *NotFoundError when no entities are found.
func (rq *ReferrerQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) {
var ids []uuid.UUID
if ids, err = rq.Limit(2).IDs(setContextOp(ctx, rq.ctx, "OnlyID")); err != nil {
return
}
switch len(ids) {
case 1:
id = ids[0]
case 0:
err = &NotFoundError{referrer.Label}
default:
err = &NotSingularError{referrer.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (rq *ReferrerQuery) OnlyIDX(ctx context.Context) uuid.UUID {
id, err := rq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of Referrers.
func (rq *ReferrerQuery) All(ctx context.Context) ([]*Referrer, error) {
ctx = setContextOp(ctx, rq.ctx, "All")
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
qr := querierAll[[]*Referrer, *ReferrerQuery]()
return withInterceptors[[]*Referrer](ctx, rq, qr, rq.inters)
}
// AllX is like All, but panics if an error occurs.
func (rq *ReferrerQuery) AllX(ctx context.Context) []*Referrer {
nodes, err := rq.All(ctx)
if err != nil {
panic(err)
}
return nodes
}
// IDs executes the query and returns a list of Referrer IDs.
func (rq *ReferrerQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) {
if rq.ctx.Unique == nil && rq.path != nil {
rq.Unique(true)
}
ctx = setContextOp(ctx, rq.ctx, "IDs")
if err = rq.Select(referrer.FieldID).Scan(ctx, &ids); err != nil {
return nil, err
}
return ids, nil
}
// IDsX is like IDs, but panics if an error occurs.
func (rq *ReferrerQuery) IDsX(ctx context.Context) []uuid.UUID {
ids, err := rq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (rq *ReferrerQuery) Count(ctx context.Context) (int, error) {
ctx = setContextOp(ctx, rq.ctx, "Count")
if err := rq.prepareQuery(ctx); err != nil {
return 0, err
}
return withInterceptors[int](ctx, rq, querierCount[*ReferrerQuery](), rq.inters)
}
// CountX is like Count, but panics if an error occurs.
func (rq *ReferrerQuery) CountX(ctx context.Context) int {
count, err := rq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (rq *ReferrerQuery) Exist(ctx context.Context) (bool, error) {
ctx = setContextOp(ctx, rq.ctx, "Exist")
switch _, err := rq.FirstID(ctx); {
case IsNotFound(err):
return false, nil
case err != nil:
return false, fmt.Errorf("ent: check existence: %w", err)
default:
return true, nil
}
}
// ExistX is like Exist, but panics if an error occurs.
func (rq *ReferrerQuery) ExistX(ctx context.Context) bool {
exist, err := rq.Exist(ctx)
if err != nil {
panic(err)
}
return exist
}
// Clone returns a duplicate of the ReferrerQuery builder, including all associated steps. It can be
// used to prepare common query builders and use them differently after the clone is made.
func (rq *ReferrerQuery) Clone() *ReferrerQuery {
if rq == nil {
return nil
}
return &ReferrerQuery{
config: rq.config,
ctx: rq.ctx.Clone(),
order: append([]referrer.OrderOption{}, rq.order...),
inters: append([]Interceptor{}, rq.inters...),
predicates: append([]predicate.Referrer{}, rq.predicates...),
withReferredBy: rq.withReferredBy.Clone(),
withReferences: rq.withReferences.Clone(),
withWorkflows: rq.withWorkflows.Clone(),
// clone intermediate query.
sql: rq.sql.Clone(),
path: rq.path,
}
}
// WithReferredBy tells the query-builder to eager-load the nodes that are connected to
// the "referred_by" edge. The optional arguments are used to configure the query builder of the edge.
func (rq *ReferrerQuery) WithReferredBy(opts ...func(*ReferrerQuery)) *ReferrerQuery {
query := (&ReferrerClient{config: rq.config}).Query()
for _, opt := range opts {
opt(query)
}
rq.withReferredBy = query
return rq
}
// WithReferences tells the query-builder to eager-load the nodes that are connected to
// the "references" edge. The optional arguments are used to configure the query builder of the edge.
func (rq *ReferrerQuery) WithReferences(opts ...func(*ReferrerQuery)) *ReferrerQuery {
query := (&ReferrerClient{config: rq.config}).Query()
for _, opt := range opts {
opt(query)
}
rq.withReferences = query
return rq
}
// WithWorkflows tells the query-builder to eager-load the nodes that are connected to
// the "workflows" edge. The optional arguments are used to configure the query builder of the edge.
func (rq *ReferrerQuery) WithWorkflows(opts ...func(*WorkflowQuery)) *ReferrerQuery {
query := (&WorkflowClient{config: rq.config}).Query()
for _, opt := range opts {
opt(query)
}
rq.withWorkflows = query
return rq
}
// GroupBy is used to group vertices by one or more fields/columns.
// It is often used with aggregate functions, like: count, max, mean, min, sum.
//
// Example:
//
// var v []struct {
// Digest string `json:"digest,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.Referrer.Query().
// GroupBy(referrer.FieldDigest).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
func (rq *ReferrerQuery) GroupBy(field string, fields ...string) *ReferrerGroupBy {
rq.ctx.Fields = append([]string{field}, fields...)
grbuild := &ReferrerGroupBy{build: rq}
grbuild.flds = &rq.ctx.Fields
grbuild.label = referrer.Label
grbuild.scan = grbuild.Scan
return grbuild
}
// Select allows the selection one or more fields/columns for the given query,
// instead of selecting all fields in the entity.
//
// Example:
//
// var v []struct {
// Digest string `json:"digest,omitempty"`
// }
//
// client.Referrer.Query().
// Select(referrer.FieldDigest).
// Scan(ctx, &v)
func (rq *ReferrerQuery) Select(fields ...string) *ReferrerSelect {
rq.ctx.Fields = append(rq.ctx.Fields, fields...)
sbuild := &ReferrerSelect{ReferrerQuery: rq}
sbuild.label = referrer.Label
sbuild.flds, sbuild.scan = &rq.ctx.Fields, sbuild.Scan
return sbuild
}
// Aggregate returns a ReferrerSelect configured with the given aggregations.
func (rq *ReferrerQuery) Aggregate(fns ...AggregateFunc) *ReferrerSelect {
return rq.Select().Aggregate(fns...)
}
func (rq *ReferrerQuery) prepareQuery(ctx context.Context) error {
for _, inter := range rq.inters {
if inter == nil {
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
}
if trv, ok := inter.(Traverser); ok {
if err := trv.Traverse(ctx, rq); err != nil {
return err
}
}
}
for _, f := range rq.ctx.Fields {
if !referrer.ValidColumn(f) {
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
}
if rq.path != nil {
prev, err := rq.path(ctx)
if err != nil {
return err
}
rq.sql = prev
}
return nil
}
func (rq *ReferrerQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Referrer, error) {
var (
nodes = []*Referrer{}
_spec = rq.querySpec()
loadedTypes = [3]bool{
rq.withReferredBy != nil,
rq.withReferences != nil,
rq.withWorkflows != nil,
}
)
_spec.ScanValues = func(columns []string) ([]any, error) {
return (*Referrer).scanValues(nil, columns)
}
_spec.Assign = func(columns []string, values []any) error {
node := &Referrer{config: rq.config}
nodes = append(nodes, node)
node.Edges.loadedTypes = loadedTypes
return node.assignValues(columns, values)
}
if len(rq.modifiers) > 0 {
_spec.Modifiers = rq.modifiers
}
for i := range hooks {
hooks[i](ctx, _spec)
}
if err := sqlgraph.QueryNodes(ctx, rq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
if query := rq.withReferredBy; query != nil {
if err := rq.loadReferredBy(ctx, query, nodes,
func(n *Referrer) { n.Edges.ReferredBy = []*Referrer{} },
func(n *Referrer, e *Referrer) { n.Edges.ReferredBy = append(n.Edges.ReferredBy, e) }); err != nil {
return nil, err
}
}
if query := rq.withReferences; query != nil {
if err := rq.loadReferences(ctx, query, nodes,
func(n *Referrer) { n.Edges.References = []*Referrer{} },
func(n *Referrer, e *Referrer) { n.Edges.References = append(n.Edges.References, e) }); err != nil {
return nil, err
}
}
if query := rq.withWorkflows; query != nil {
if err := rq.loadWorkflows(ctx, query, nodes,
func(n *Referrer) { n.Edges.Workflows = []*Workflow{} },
func(n *Referrer, e *Workflow) { n.Edges.Workflows = append(n.Edges.Workflows, e) }); err != nil {
return nil, err
}
}
return nodes, nil
}
func (rq *ReferrerQuery) loadReferredBy(ctx context.Context, query *ReferrerQuery, nodes []*Referrer, init func(*Referrer), assign func(*Referrer, *Referrer)) error {
edgeIDs := make([]driver.Value, len(nodes))
byID := make(map[uuid.UUID]*Referrer)
nids := make(map[uuid.UUID]map[*Referrer]struct{})
for i, node := range nodes {
edgeIDs[i] = node.ID
byID[node.ID] = node
if init != nil {
init(node)
}
}
query.Where(func(s *sql.Selector) {
joinT := sql.Table(referrer.ReferredByTable)
s.Join(joinT).On(s.C(referrer.FieldID), joinT.C(referrer.ReferredByPrimaryKey[0]))
s.Where(sql.InValues(joinT.C(referrer.ReferredByPrimaryKey[1]), edgeIDs...))
columns := s.SelectedColumns()
s.Select(joinT.C(referrer.ReferredByPrimaryKey[1]))
s.AppendSelect(columns...)
s.SetDistinct(false)
})
if err := query.prepareQuery(ctx); err != nil {
return err
}
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
assign := spec.Assign
values := spec.ScanValues
spec.ScanValues = func(columns []string) ([]any, error) {
values, err := values(columns[1:])
if err != nil {
return nil, err
}
return append([]any{new(uuid.UUID)}, values...), nil
}
spec.Assign = func(columns []string, values []any) error {
outValue := *values[0].(*uuid.UUID)
inValue := *values[1].(*uuid.UUID)
if nids[inValue] == nil {
nids[inValue] = map[*Referrer]struct{}{byID[outValue]: {}}
return assign(columns[1:], values[1:])
}
nids[inValue][byID[outValue]] = struct{}{}
return nil
}
})
})
neighbors, err := withInterceptors[[]*Referrer](ctx, query, qr, query.inters)
if err != nil {
return err
}
for _, n := range neighbors {
nodes, ok := nids[n.ID]
if !ok {
return fmt.Errorf(`unexpected "referred_by" node returned %v`, n.ID)
}
for kn := range nodes {
assign(kn, n)
}
}
return nil
}
func (rq *ReferrerQuery) loadReferences(ctx context.Context, query *ReferrerQuery, nodes []*Referrer, init func(*Referrer), assign func(*Referrer, *Referrer)) error {
edgeIDs := make([]driver.Value, len(nodes))
byID := make(map[uuid.UUID]*Referrer)
nids := make(map[uuid.UUID]map[*Referrer]struct{})
for i, node := range nodes {
edgeIDs[i] = node.ID
byID[node.ID] = node
if init != nil {
init(node)
}
}
query.Where(func(s *sql.Selector) {
joinT := sql.Table(referrer.ReferencesTable)
s.Join(joinT).On(s.C(referrer.FieldID), joinT.C(referrer.ReferencesPrimaryKey[1]))
s.Where(sql.InValues(joinT.C(referrer.ReferencesPrimaryKey[0]), edgeIDs...))
columns := s.SelectedColumns()
s.Select(joinT.C(referrer.ReferencesPrimaryKey[0]))
s.AppendSelect(columns...)
s.SetDistinct(false)
})
if err := query.prepareQuery(ctx); err != nil {
return err
}
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
assign := spec.Assign
values := spec.ScanValues
spec.ScanValues = func(columns []string) ([]any, error) {
values, err := values(columns[1:])
if err != nil {
return nil, err
}
return append([]any{new(uuid.UUID)}, values...), nil
}
spec.Assign = func(columns []string, values []any) error {
outValue := *values[0].(*uuid.UUID)
inValue := *values[1].(*uuid.UUID)
if nids[inValue] == nil {
nids[inValue] = map[*Referrer]struct{}{byID[outValue]: {}}
return assign(columns[1:], values[1:])
}
nids[inValue][byID[outValue]] = struct{}{}
return nil
}
})
})
neighbors, err := withInterceptors[[]*Referrer](ctx, query, qr, query.inters)
if err != nil {
return err
}
for _, n := range neighbors {
nodes, ok := nids[n.ID]
if !ok {
return fmt.Errorf(`unexpected "references" node returned %v`, n.ID)
}
for kn := range nodes {
assign(kn, n)
}
}
return nil
}
func (rq *ReferrerQuery) loadWorkflows(ctx context.Context, query *WorkflowQuery, nodes []*Referrer, init func(*Referrer), assign func(*Referrer, *Workflow)) error {
edgeIDs := make([]driver.Value, len(nodes))
byID := make(map[uuid.UUID]*Referrer)
nids := make(map[uuid.UUID]map[*Referrer]struct{})
for i, node := range nodes {
edgeIDs[i] = node.ID
byID[node.ID] = node
if init != nil {
init(node)
}
}
query.Where(func(s *sql.Selector) {
joinT := sql.Table(referrer.WorkflowsTable)
s.Join(joinT).On(s.C(workflow.FieldID), joinT.C(referrer.WorkflowsPrimaryKey[1]))
s.Where(sql.InValues(joinT.C(referrer.WorkflowsPrimaryKey[0]), edgeIDs...))
columns := s.SelectedColumns()
s.Select(joinT.C(referrer.WorkflowsPrimaryKey[0]))
s.AppendSelect(columns...)
s.SetDistinct(false)
})
if err := query.prepareQuery(ctx); err != nil {
return err
}
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
assign := spec.Assign
values := spec.ScanValues
spec.ScanValues = func(columns []string) ([]any, error) {
values, err := values(columns[1:])
if err != nil {
return nil, err
}
return append([]any{new(uuid.UUID)}, values...), nil
}
spec.Assign = func(columns []string, values []any) error {
outValue := *values[0].(*uuid.UUID)
inValue := *values[1].(*uuid.UUID)
if nids[inValue] == nil {
nids[inValue] = map[*Referrer]struct{}{byID[outValue]: {}}
return assign(columns[1:], values[1:])
}
nids[inValue][byID[outValue]] = struct{}{}
return nil
}
})
})
neighbors, err := withInterceptors[[]*Workflow](ctx, query, qr, query.inters)
if err != nil {
return err
}
for _, n := range neighbors {
nodes, ok := nids[n.ID]
if !ok {
return fmt.Errorf(`unexpected "workflows" node returned %v`, n.ID)
}
for kn := range nodes {
assign(kn, n)
}
}
return nil
}
func (rq *ReferrerQuery) sqlCount(ctx context.Context) (int, error) {
_spec := rq.querySpec()
if len(rq.modifiers) > 0 {
_spec.Modifiers = rq.modifiers
}
_spec.Node.Columns = rq.ctx.Fields
if len(rq.ctx.Fields) > 0 {
_spec.Unique = rq.ctx.Unique != nil && *rq.ctx.Unique
}
return sqlgraph.CountNodes(ctx, rq.driver, _spec)
}
func (rq *ReferrerQuery) querySpec() *sqlgraph.QuerySpec {
_spec := sqlgraph.NewQuerySpec(referrer.Table, referrer.Columns, sqlgraph.NewFieldSpec(referrer.FieldID, field.TypeUUID))
_spec.From = rq.sql
if unique := rq.ctx.Unique; unique != nil {
_spec.Unique = *unique
} else if rq.path != nil {
_spec.Unique = true
}
if fields := rq.ctx.Fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, referrer.FieldID)
for i := range fields {
if fields[i] != referrer.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
}
}
}
if ps := rq.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if limit := rq.ctx.Limit; limit != nil {
_spec.Limit = *limit
}
if offset := rq.ctx.Offset; offset != nil {
_spec.Offset = *offset
}
if ps := rq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (rq *ReferrerQuery) sqlQuery(ctx context.Context) *sql.Selector {
builder := sql.Dialect(rq.driver.Dialect())
t1 := builder.Table(referrer.Table)
columns := rq.ctx.Fields
if len(columns) == 0 {
columns = referrer.Columns
}
selector := builder.Select(t1.Columns(columns...)...).From(t1)
if rq.sql != nil {
selector = rq.sql
selector.Select(selector.Columns(columns...)...)
}
if rq.ctx.Unique != nil && *rq.ctx.Unique {
selector.Distinct()
}
for _, m := range rq.modifiers {
m(selector)
}
for _, p := range rq.predicates {
p(selector)
}
for _, p := range rq.order {
p(selector)
}
if offset := rq.ctx.Offset; offset != nil {
// limit is mandatory for offset clause. We start
// with default value, and override it below if needed.
selector.Offset(*offset).Limit(math.MaxInt32)
}
if limit := rq.ctx.Limit; limit != nil {
selector.Limit(*limit)
}
return selector
}
// Modify adds a query modifier for attaching custom logic to queries.
func (rq *ReferrerQuery) Modify(modifiers ...func(s *sql.Selector)) *ReferrerSelect {
rq.modifiers = append(rq.modifiers, modifiers...)
return rq.Select()
}
// ReferrerGroupBy is the group-by builder for Referrer entities.
type ReferrerGroupBy struct {
selector
build *ReferrerQuery
}
// Aggregate adds the given aggregation functions to the group-by query.
func (rgb *ReferrerGroupBy) Aggregate(fns ...AggregateFunc) *ReferrerGroupBy {
rgb.fns = append(rgb.fns, fns...)
return rgb
}
// Scan applies the selector query and scans the result into the given value.
func (rgb *ReferrerGroupBy) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, rgb.build.ctx, "GroupBy")
if err := rgb.build.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*ReferrerQuery, *ReferrerGroupBy](ctx, rgb.build, rgb, rgb.build.inters, v)
}
func (rgb *ReferrerGroupBy) sqlScan(ctx context.Context, root *ReferrerQuery, v any) error {
selector := root.sqlQuery(ctx).Select()
aggregation := make([]string, 0, len(rgb.fns))
for _, fn := range rgb.fns {
aggregation = append(aggregation, fn(selector))
}
if len(selector.SelectedColumns()) == 0 {
columns := make([]string, 0, len(*rgb.flds)+len(rgb.fns))
for _, f := range *rgb.flds {
columns = append(columns, selector.C(f))
}
columns = append(columns, aggregation...)
selector.Select(columns...)
}
selector.GroupBy(selector.Columns(*rgb.flds...)...)
if err := selector.Err(); err != nil {
return err
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := rgb.build.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// ReferrerSelect is the builder for selecting fields of Referrer entities.
type ReferrerSelect struct {
*ReferrerQuery
selector
}
// Aggregate adds the given aggregation functions to the selector query.
func (rs *ReferrerSelect) Aggregate(fns ...AggregateFunc) *ReferrerSelect {
rs.fns = append(rs.fns, fns...)
return rs
}
// Scan applies the selector query and scans the result into the given value.
func (rs *ReferrerSelect) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, rs.ctx, "Select")
if err := rs.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*ReferrerQuery, *ReferrerSelect](ctx, rs.ReferrerQuery, rs, rs.inters, v)
}
func (rs *ReferrerSelect) sqlScan(ctx context.Context, root *ReferrerQuery, v any) error {
selector := root.sqlQuery(ctx)
aggregation := make([]string, 0, len(rs.fns))
for _, fn := range rs.fns {
aggregation = append(aggregation, fn(selector))
}
switch n := len(*rs.selector.flds); {
case n == 0 && len(aggregation) > 0:
selector.Select(aggregation...)
case n != 0 && len(aggregation) > 0:
selector.AppendSelect(aggregation...)
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := rs.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// Modify adds a query modifier for attaching custom logic to queries.
func (rs *ReferrerSelect) Modify(modifiers ...func(s *sql.Selector)) *ReferrerSelect {
rs.modifiers = append(rs.modifiers, modifiers...)
return rs
}