-
Notifications
You must be signed in to change notification settings - Fork 4
/
container_description_patterns.go
1288 lines (1077 loc) · 42.4 KB
/
container_description_patterns.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
// Code generated by SQLBoiler (https://github.com/volatiletech/sqlboiler). DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package kmodels
import (
"bytes"
"database/sql"
"fmt"
"reflect"
"strings"
"sync"
"time"
"github.com/pkg/errors"
"github.com/volatiletech/sqlboiler/boil"
"github.com/volatiletech/sqlboiler/queries"
"github.com/volatiletech/sqlboiler/queries/qm"
"github.com/volatiletech/sqlboiler/strmangle"
"gopkg.in/volatiletech/null.v6"
)
// ContainerDescriptionPattern is an object representing the database table.
type ContainerDescriptionPattern struct {
ID int `boil:"id" json:"id" toml:"id" yaml:"id"`
Pattern null.String `boil:"pattern" json:"pattern,omitempty" toml:"pattern" yaml:"pattern,omitempty"`
Description null.String `boil:"description" json:"description,omitempty" toml:"description" yaml:"description,omitempty"`
Lang null.String `boil:"lang" json:"lang,omitempty" toml:"lang" yaml:"lang,omitempty"`
CreatedAt null.Time `boil:"created_at" json:"created_at,omitempty" toml:"created_at" yaml:"created_at,omitempty"`
UpdatedAt null.Time `boil:"updated_at" json:"updated_at,omitempty" toml:"updated_at" yaml:"updated_at,omitempty"`
UserID null.Int `boil:"user_id" json:"user_id,omitempty" toml:"user_id" yaml:"user_id,omitempty"`
R *containerDescriptionPatternR `boil:"-" json:"-" toml:"-" yaml:"-"`
L containerDescriptionPatternL `boil:"-" json:"-" toml:"-" yaml:"-"`
}
var ContainerDescriptionPatternColumns = struct {
ID string
Pattern string
Description string
Lang string
CreatedAt string
UpdatedAt string
UserID string
}{
ID: "id",
Pattern: "pattern",
Description: "description",
Lang: "lang",
CreatedAt: "created_at",
UpdatedAt: "updated_at",
UserID: "user_id",
}
// containerDescriptionPatternR is where relationships are stored.
type containerDescriptionPatternR struct {
Catalogs CatalogSlice
}
// containerDescriptionPatternL is where Load methods for each relationship are stored.
type containerDescriptionPatternL struct{}
var (
containerDescriptionPatternColumns = []string{"id", "pattern", "description", "lang", "created_at", "updated_at", "user_id"}
containerDescriptionPatternColumnsWithoutDefault = []string{"pattern", "description", "lang", "created_at", "updated_at", "user_id"}
containerDescriptionPatternColumnsWithDefault = []string{"id"}
containerDescriptionPatternPrimaryKeyColumns = []string{"id"}
)
type (
// ContainerDescriptionPatternSlice is an alias for a slice of pointers to ContainerDescriptionPattern.
// This should generally be used opposed to []ContainerDescriptionPattern.
ContainerDescriptionPatternSlice []*ContainerDescriptionPattern
containerDescriptionPatternQuery struct {
*queries.Query
}
)
// Cache for insert, update and upsert
var (
containerDescriptionPatternType = reflect.TypeOf(&ContainerDescriptionPattern{})
containerDescriptionPatternMapping = queries.MakeStructMapping(containerDescriptionPatternType)
containerDescriptionPatternPrimaryKeyMapping, _ = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, containerDescriptionPatternPrimaryKeyColumns)
containerDescriptionPatternInsertCacheMut sync.RWMutex
containerDescriptionPatternInsertCache = make(map[string]insertCache)
containerDescriptionPatternUpdateCacheMut sync.RWMutex
containerDescriptionPatternUpdateCache = make(map[string]updateCache)
containerDescriptionPatternUpsertCacheMut sync.RWMutex
containerDescriptionPatternUpsertCache = make(map[string]insertCache)
)
var (
// Force time package dependency for automated UpdatedAt/CreatedAt.
_ = time.Second
// Force bytes in case of primary key column that uses []byte (for relationship compares)
_ = bytes.MinRead
)
// OneP returns a single containerDescriptionPattern record from the query, and panics on error.
func (q containerDescriptionPatternQuery) OneP() *ContainerDescriptionPattern {
o, err := q.One()
if err != nil {
panic(boil.WrapErr(err))
}
return o
}
// One returns a single containerDescriptionPattern record from the query.
func (q containerDescriptionPatternQuery) One() (*ContainerDescriptionPattern, error) {
o := &ContainerDescriptionPattern{}
queries.SetLimit(q.Query, 1)
err := q.Bind(o)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "kmodels: failed to execute a one query for container_description_patterns")
}
return o, nil
}
// AllP returns all ContainerDescriptionPattern records from the query, and panics on error.
func (q containerDescriptionPatternQuery) AllP() ContainerDescriptionPatternSlice {
o, err := q.All()
if err != nil {
panic(boil.WrapErr(err))
}
return o
}
// All returns all ContainerDescriptionPattern records from the query.
func (q containerDescriptionPatternQuery) All() (ContainerDescriptionPatternSlice, error) {
var o []*ContainerDescriptionPattern
err := q.Bind(&o)
if err != nil {
return nil, errors.Wrap(err, "kmodels: failed to assign all query results to ContainerDescriptionPattern slice")
}
return o, nil
}
// CountP returns the count of all ContainerDescriptionPattern records in the query, and panics on error.
func (q containerDescriptionPatternQuery) CountP() int64 {
c, err := q.Count()
if err != nil {
panic(boil.WrapErr(err))
}
return c
}
// Count returns the count of all ContainerDescriptionPattern records in the query.
func (q containerDescriptionPatternQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "kmodels: failed to count container_description_patterns rows")
}
return count, nil
}
// Exists checks if the row exists in the table, and panics on error.
func (q containerDescriptionPatternQuery) ExistsP() bool {
e, err := q.Exists()
if err != nil {
panic(boil.WrapErr(err))
}
return e
}
// Exists checks if the row exists in the table.
func (q containerDescriptionPatternQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "kmodels: failed to check if container_description_patterns exists")
}
return count > 0, nil
}
// CatalogsG retrieves all the catalog's catalogs.
func (o *ContainerDescriptionPattern) CatalogsG(mods ...qm.QueryMod) catalogQuery {
return o.Catalogs(boil.GetDB(), mods...)
}
// Catalogs retrieves all the catalog's catalogs with an executor.
func (o *ContainerDescriptionPattern) Catalogs(exec boil.Executor, mods ...qm.QueryMod) catalogQuery {
var queryMods []qm.QueryMod
if len(mods) != 0 {
queryMods = append(queryMods, mods...)
}
queryMods = append(queryMods,
qm.InnerJoin("\"catalogs_container_description_patterns\" on \"catalogs\".\"id\" = \"catalogs_container_description_patterns\".\"catalog_id\""),
qm.Where("\"catalogs_container_description_patterns\".\"container_description_pattern_id\"=?", o.ID),
)
query := Catalogs(exec, queryMods...)
queries.SetFrom(query.Query, "\"catalogs\"")
if len(queries.GetSelect(query.Query)) == 0 {
queries.SetSelect(query.Query, []string{"\"catalogs\".*"})
}
return query
}
// LoadCatalogs allows an eager lookup of values, cached into the
// loaded structs of the objects.
func (containerDescriptionPatternL) LoadCatalogs(e boil.Executor, singular bool, maybeContainerDescriptionPattern interface{}) error {
var slice []*ContainerDescriptionPattern
var object *ContainerDescriptionPattern
count := 1
if singular {
object = maybeContainerDescriptionPattern.(*ContainerDescriptionPattern)
} else {
slice = *maybeContainerDescriptionPattern.(*[]*ContainerDescriptionPattern)
count = len(slice)
}
args := make([]interface{}, count)
if singular {
if object.R == nil {
object.R = &containerDescriptionPatternR{}
}
args[0] = object.ID
} else {
for i, obj := range slice {
if obj.R == nil {
obj.R = &containerDescriptionPatternR{}
}
args[i] = obj.ID
}
}
query := fmt.Sprintf(
"select \"a\".*, \"b\".\"container_description_pattern_id\" from \"catalogs\" as \"a\" inner join \"catalogs_container_description_patterns\" as \"b\" on \"a\".\"id\" = \"b\".\"catalog_id\" where \"b\".\"container_description_pattern_id\" in (%s)",
strmangle.Placeholders(dialect.IndexPlaceholders, count, 1, 1),
)
if boil.DebugMode {
fmt.Fprintf(boil.DebugWriter, "%s\n%v\n", query, args)
}
results, err := e.Query(query, args...)
if err != nil {
return errors.Wrap(err, "failed to eager load catalogs")
}
defer results.Close()
var resultSlice []*Catalog
var localJoinCols []int
for results.Next() {
one := new(Catalog)
var localJoinCol int
err = results.Scan(&one.ID, &one.Name, &one.ParentID, &one.CreatedAt, &one.UpdatedAt, &one.Catorder, &one.Secure, &one.Visible, &one.Open, &one.Label, &one.SelectedCatalog, &one.UserID, &one.BooksCatalog, &localJoinCol)
if err = results.Err(); err != nil {
return errors.Wrap(err, "failed to plebian-bind eager loaded slice catalogs")
}
resultSlice = append(resultSlice, one)
localJoinCols = append(localJoinCols, localJoinCol)
}
if err = results.Err(); err != nil {
return errors.Wrap(err, "failed to plebian-bind eager loaded slice catalogs")
}
if singular {
object.R.Catalogs = resultSlice
return nil
}
for i, foreign := range resultSlice {
localJoinCol := localJoinCols[i]
for _, local := range slice {
if local.ID == localJoinCol {
local.R.Catalogs = append(local.R.Catalogs, foreign)
break
}
}
}
return nil
}
// AddCatalogsG adds the given related objects to the existing relationships
// of the container_description_pattern, optionally inserting them as new records.
// Appends related to o.R.Catalogs.
// Sets related.R.ContainerDescriptionPatterns appropriately.
// Uses the global database handle.
func (o *ContainerDescriptionPattern) AddCatalogsG(insert bool, related ...*Catalog) error {
return o.AddCatalogs(boil.GetDB(), insert, related...)
}
// AddCatalogsP adds the given related objects to the existing relationships
// of the container_description_pattern, optionally inserting them as new records.
// Appends related to o.R.Catalogs.
// Sets related.R.ContainerDescriptionPatterns appropriately.
// Panics on error.
func (o *ContainerDescriptionPattern) AddCatalogsP(exec boil.Executor, insert bool, related ...*Catalog) {
if err := o.AddCatalogs(exec, insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// AddCatalogsGP adds the given related objects to the existing relationships
// of the container_description_pattern, optionally inserting them as new records.
// Appends related to o.R.Catalogs.
// Sets related.R.ContainerDescriptionPatterns appropriately.
// Uses the global database handle and panics on error.
func (o *ContainerDescriptionPattern) AddCatalogsGP(insert bool, related ...*Catalog) {
if err := o.AddCatalogs(boil.GetDB(), insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// AddCatalogs adds the given related objects to the existing relationships
// of the container_description_pattern, optionally inserting them as new records.
// Appends related to o.R.Catalogs.
// Sets related.R.ContainerDescriptionPatterns appropriately.
func (o *ContainerDescriptionPattern) AddCatalogs(exec boil.Executor, insert bool, related ...*Catalog) error {
var err error
for _, rel := range related {
if insert {
if err = rel.Insert(exec); err != nil {
return errors.Wrap(err, "failed to insert into foreign table")
}
}
}
for _, rel := range related {
query := "insert into \"catalogs_container_description_patterns\" (\"container_description_pattern_id\", \"catalog_id\") values ($1, $2)"
values := []interface{}{o.ID, rel.ID}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, query)
fmt.Fprintln(boil.DebugWriter, values)
}
_, err = exec.Exec(query, values...)
if err != nil {
return errors.Wrap(err, "failed to insert into join table")
}
}
if o.R == nil {
o.R = &containerDescriptionPatternR{
Catalogs: related,
}
} else {
o.R.Catalogs = append(o.R.Catalogs, related...)
}
for _, rel := range related {
if rel.R == nil {
rel.R = &catalogR{
ContainerDescriptionPatterns: ContainerDescriptionPatternSlice{o},
}
} else {
rel.R.ContainerDescriptionPatterns = append(rel.R.ContainerDescriptionPatterns, o)
}
}
return nil
}
// SetCatalogsG removes all previously related items of the
// container_description_pattern replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Replaces o.R.Catalogs with related.
// Sets related.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Uses the global database handle.
func (o *ContainerDescriptionPattern) SetCatalogsG(insert bool, related ...*Catalog) error {
return o.SetCatalogs(boil.GetDB(), insert, related...)
}
// SetCatalogsP removes all previously related items of the
// container_description_pattern replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Replaces o.R.Catalogs with related.
// Sets related.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Panics on error.
func (o *ContainerDescriptionPattern) SetCatalogsP(exec boil.Executor, insert bool, related ...*Catalog) {
if err := o.SetCatalogs(exec, insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// SetCatalogsGP removes all previously related items of the
// container_description_pattern replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Replaces o.R.Catalogs with related.
// Sets related.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Uses the global database handle and panics on error.
func (o *ContainerDescriptionPattern) SetCatalogsGP(insert bool, related ...*Catalog) {
if err := o.SetCatalogs(boil.GetDB(), insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// SetCatalogs removes all previously related items of the
// container_description_pattern replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.ContainerDescriptionPatterns's Catalogs accordingly.
// Replaces o.R.Catalogs with related.
// Sets related.R.ContainerDescriptionPatterns's Catalogs accordingly.
func (o *ContainerDescriptionPattern) SetCatalogs(exec boil.Executor, insert bool, related ...*Catalog) error {
query := "delete from \"catalogs_container_description_patterns\" where \"container_description_pattern_id\" = $1"
values := []interface{}{o.ID}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, query)
fmt.Fprintln(boil.DebugWriter, values)
}
_, err := exec.Exec(query, values...)
if err != nil {
return errors.Wrap(err, "failed to remove relationships before set")
}
removeCatalogsFromContainerDescriptionPatternsSlice(o, related)
if o.R != nil {
o.R.Catalogs = nil
}
return o.AddCatalogs(exec, insert, related...)
}
// RemoveCatalogsG relationships from objects passed in.
// Removes related items from R.Catalogs (uses pointer comparison, removal does not keep order)
// Sets related.R.ContainerDescriptionPatterns.
// Uses the global database handle.
func (o *ContainerDescriptionPattern) RemoveCatalogsG(related ...*Catalog) error {
return o.RemoveCatalogs(boil.GetDB(), related...)
}
// RemoveCatalogsP relationships from objects passed in.
// Removes related items from R.Catalogs (uses pointer comparison, removal does not keep order)
// Sets related.R.ContainerDescriptionPatterns.
// Panics on error.
func (o *ContainerDescriptionPattern) RemoveCatalogsP(exec boil.Executor, related ...*Catalog) {
if err := o.RemoveCatalogs(exec, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// RemoveCatalogsGP relationships from objects passed in.
// Removes related items from R.Catalogs (uses pointer comparison, removal does not keep order)
// Sets related.R.ContainerDescriptionPatterns.
// Uses the global database handle and panics on error.
func (o *ContainerDescriptionPattern) RemoveCatalogsGP(related ...*Catalog) {
if err := o.RemoveCatalogs(boil.GetDB(), related...); err != nil {
panic(boil.WrapErr(err))
}
}
// RemoveCatalogs relationships from objects passed in.
// Removes related items from R.Catalogs (uses pointer comparison, removal does not keep order)
// Sets related.R.ContainerDescriptionPatterns.
func (o *ContainerDescriptionPattern) RemoveCatalogs(exec boil.Executor, related ...*Catalog) error {
var err error
query := fmt.Sprintf(
"delete from \"catalogs_container_description_patterns\" where \"container_description_pattern_id\" = $1 and \"catalog_id\" in (%s)",
strmangle.Placeholders(dialect.IndexPlaceholders, len(related), 2, 1),
)
values := []interface{}{o.ID}
for _, rel := range related {
values = append(values, rel.ID)
}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, query)
fmt.Fprintln(boil.DebugWriter, values)
}
_, err = exec.Exec(query, values...)
if err != nil {
return errors.Wrap(err, "failed to remove relationships before set")
}
removeCatalogsFromContainerDescriptionPatternsSlice(o, related)
if o.R == nil {
return nil
}
for _, rel := range related {
for i, ri := range o.R.Catalogs {
if rel != ri {
continue
}
ln := len(o.R.Catalogs)
if ln > 1 && i < ln-1 {
o.R.Catalogs[i] = o.R.Catalogs[ln-1]
}
o.R.Catalogs = o.R.Catalogs[:ln-1]
break
}
}
return nil
}
func removeCatalogsFromContainerDescriptionPatternsSlice(o *ContainerDescriptionPattern, related []*Catalog) {
for _, rel := range related {
if rel.R == nil {
continue
}
for i, ri := range rel.R.ContainerDescriptionPatterns {
if o.ID != ri.ID {
continue
}
ln := len(rel.R.ContainerDescriptionPatterns)
if ln > 1 && i < ln-1 {
rel.R.ContainerDescriptionPatterns[i] = rel.R.ContainerDescriptionPatterns[ln-1]
}
rel.R.ContainerDescriptionPatterns = rel.R.ContainerDescriptionPatterns[:ln-1]
break
}
}
}
// ContainerDescriptionPatternsG retrieves all records.
func ContainerDescriptionPatternsG(mods ...qm.QueryMod) containerDescriptionPatternQuery {
return ContainerDescriptionPatterns(boil.GetDB(), mods...)
}
// ContainerDescriptionPatterns retrieves all the records using an executor.
func ContainerDescriptionPatterns(exec boil.Executor, mods ...qm.QueryMod) containerDescriptionPatternQuery {
mods = append(mods, qm.From("\"container_description_patterns\""))
return containerDescriptionPatternQuery{NewQuery(exec, mods...)}
}
// FindContainerDescriptionPatternG retrieves a single record by ID.
func FindContainerDescriptionPatternG(id int, selectCols ...string) (*ContainerDescriptionPattern, error) {
return FindContainerDescriptionPattern(boil.GetDB(), id, selectCols...)
}
// FindContainerDescriptionPatternGP retrieves a single record by ID, and panics on error.
func FindContainerDescriptionPatternGP(id int, selectCols ...string) *ContainerDescriptionPattern {
retobj, err := FindContainerDescriptionPattern(boil.GetDB(), id, selectCols...)
if err != nil {
panic(boil.WrapErr(err))
}
return retobj
}
// FindContainerDescriptionPattern retrieves a single record by ID with an executor.
// If selectCols is empty Find will return all columns.
func FindContainerDescriptionPattern(exec boil.Executor, id int, selectCols ...string) (*ContainerDescriptionPattern, error) {
containerDescriptionPatternObj := &ContainerDescriptionPattern{}
sel := "*"
if len(selectCols) > 0 {
sel = strings.Join(strmangle.IdentQuoteSlice(dialect.LQ, dialect.RQ, selectCols), ",")
}
query := fmt.Sprintf(
"select %s from \"container_description_patterns\" where \"id\"=$1", sel,
)
q := queries.Raw(exec, query, id)
err := q.Bind(containerDescriptionPatternObj)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "kmodels: unable to select from container_description_patterns")
}
return containerDescriptionPatternObj, nil
}
// FindContainerDescriptionPatternP retrieves a single record by ID with an executor, and panics on error.
func FindContainerDescriptionPatternP(exec boil.Executor, id int, selectCols ...string) *ContainerDescriptionPattern {
retobj, err := FindContainerDescriptionPattern(exec, id, selectCols...)
if err != nil {
panic(boil.WrapErr(err))
}
return retobj
}
// InsertG a single record. See Insert for whitelist behavior description.
func (o *ContainerDescriptionPattern) InsertG(whitelist ...string) error {
return o.Insert(boil.GetDB(), whitelist...)
}
// InsertGP a single record, and panics on error. See Insert for whitelist
// behavior description.
func (o *ContainerDescriptionPattern) InsertGP(whitelist ...string) {
if err := o.Insert(boil.GetDB(), whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// InsertP a single record using an executor, and panics on error. See Insert
// for whitelist behavior description.
func (o *ContainerDescriptionPattern) InsertP(exec boil.Executor, whitelist ...string) {
if err := o.Insert(exec, whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// Insert a single record using an executor.
// Whitelist behavior: If a whitelist is provided, only those columns supplied are inserted
// No whitelist behavior: Without a whitelist, columns are inferred by the following rules:
// - All columns without a default value are included (i.e. name, age)
// - All columns with a default, but non-zero are included (i.e. health = 75)
func (o *ContainerDescriptionPattern) Insert(exec boil.Executor, whitelist ...string) error {
if o == nil {
return errors.New("kmodels: no container_description_patterns provided for insertion")
}
var err error
currTime := time.Now().In(boil.GetLocation())
if o.CreatedAt.Time.IsZero() {
o.CreatedAt.Time = currTime
o.CreatedAt.Valid = true
}
if o.UpdatedAt.Time.IsZero() {
o.UpdatedAt.Time = currTime
o.UpdatedAt.Valid = true
}
nzDefaults := queries.NonZeroDefaultSet(containerDescriptionPatternColumnsWithDefault, o)
key := makeCacheKey(whitelist, nzDefaults)
containerDescriptionPatternInsertCacheMut.RLock()
cache, cached := containerDescriptionPatternInsertCache[key]
containerDescriptionPatternInsertCacheMut.RUnlock()
if !cached {
wl, returnColumns := strmangle.InsertColumnSet(
containerDescriptionPatternColumns,
containerDescriptionPatternColumnsWithDefault,
containerDescriptionPatternColumnsWithoutDefault,
nzDefaults,
whitelist,
)
cache.valueMapping, err = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, wl)
if err != nil {
return err
}
cache.retMapping, err = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, returnColumns)
if err != nil {
return err
}
if len(wl) != 0 {
cache.query = fmt.Sprintf("INSERT INTO \"container_description_patterns\" (\"%s\") %%sVALUES (%s)%%s", strings.Join(wl, "\",\""), strmangle.Placeholders(dialect.IndexPlaceholders, len(wl), 1, 1))
} else {
cache.query = "INSERT INTO \"container_description_patterns\" DEFAULT VALUES"
}
var queryOutput, queryReturning string
if len(cache.retMapping) != 0 {
queryReturning = fmt.Sprintf(" RETURNING \"%s\"", strings.Join(returnColumns, "\",\""))
}
if len(wl) != 0 {
cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning)
}
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)
fmt.Fprintln(boil.DebugWriter, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRow(cache.query, vals...).Scan(queries.PtrsFromMapping(value, cache.retMapping)...)
} else {
_, err = exec.Exec(cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "kmodels: unable to insert into container_description_patterns")
}
if !cached {
containerDescriptionPatternInsertCacheMut.Lock()
containerDescriptionPatternInsertCache[key] = cache
containerDescriptionPatternInsertCacheMut.Unlock()
}
return nil
}
// UpdateG a single ContainerDescriptionPattern record. See Update for
// whitelist behavior description.
func (o *ContainerDescriptionPattern) UpdateG(whitelist ...string) error {
return o.Update(boil.GetDB(), whitelist...)
}
// UpdateGP a single ContainerDescriptionPattern record.
// UpdateGP takes a whitelist of column names that should be updated.
// Panics on error. See Update for whitelist behavior description.
func (o *ContainerDescriptionPattern) UpdateGP(whitelist ...string) {
if err := o.Update(boil.GetDB(), whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// UpdateP uses an executor to update the ContainerDescriptionPattern, and panics on error.
// See Update for whitelist behavior description.
func (o *ContainerDescriptionPattern) UpdateP(exec boil.Executor, whitelist ...string) {
err := o.Update(exec, whitelist...)
if err != nil {
panic(boil.WrapErr(err))
}
}
// Update uses an executor to update the ContainerDescriptionPattern.
// Whitelist behavior: If a whitelist is provided, only the columns given are updated.
// No whitelist behavior: Without a whitelist, columns are inferred by the following rules:
// - All columns are inferred to start with
// - All primary keys are subtracted from this set
// Update does not automatically update the record in case of default values. Use .Reload()
// to refresh the records.
func (o *ContainerDescriptionPattern) Update(exec boil.Executor, whitelist ...string) error {
currTime := time.Now().In(boil.GetLocation())
o.UpdatedAt.Time = currTime
o.UpdatedAt.Valid = true
var err error
key := makeCacheKey(whitelist, nil)
containerDescriptionPatternUpdateCacheMut.RLock()
cache, cached := containerDescriptionPatternUpdateCache[key]
containerDescriptionPatternUpdateCacheMut.RUnlock()
if !cached {
wl := strmangle.UpdateColumnSet(
containerDescriptionPatternColumns,
containerDescriptionPatternPrimaryKeyColumns,
whitelist,
)
if len(whitelist) == 0 {
wl = strmangle.SetComplement(wl, []string{"created_at"})
}
if len(wl) == 0 {
return errors.New("kmodels: unable to update container_description_patterns, could not build whitelist")
}
cache.query = fmt.Sprintf("UPDATE \"container_description_patterns\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, wl),
strmangle.WhereClause("\"", "\"", len(wl)+1, containerDescriptionPatternPrimaryKeyColumns),
)
cache.valueMapping, err = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, append(wl, containerDescriptionPatternPrimaryKeyColumns...))
if err != nil {
return err
}
}
values := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), cache.valueMapping)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)
fmt.Fprintln(boil.DebugWriter, values)
}
_, err = exec.Exec(cache.query, values...)
if err != nil {
return errors.Wrap(err, "kmodels: unable to update container_description_patterns row")
}
if !cached {
containerDescriptionPatternUpdateCacheMut.Lock()
containerDescriptionPatternUpdateCache[key] = cache
containerDescriptionPatternUpdateCacheMut.Unlock()
}
return nil
}
// UpdateAllP updates all rows with matching column names, and panics on error.
func (q containerDescriptionPatternQuery) UpdateAllP(cols M) {
if err := q.UpdateAll(cols); err != nil {
panic(boil.WrapErr(err))
}
}
// UpdateAll updates all rows with the specified column values.
func (q containerDescriptionPatternQuery) UpdateAll(cols M) error {
queries.SetUpdate(q.Query, cols)
_, err := q.Query.Exec()
if err != nil {
return errors.Wrap(err, "kmodels: unable to update all for container_description_patterns")
}
return nil
}
// UpdateAllG updates all rows with the specified column values.
func (o ContainerDescriptionPatternSlice) UpdateAllG(cols M) error {
return o.UpdateAll(boil.GetDB(), cols)
}
// UpdateAllGP updates all rows with the specified column values, and panics on error.
func (o ContainerDescriptionPatternSlice) UpdateAllGP(cols M) {
if err := o.UpdateAll(boil.GetDB(), cols); err != nil {
panic(boil.WrapErr(err))
}
}
// UpdateAllP updates all rows with the specified column values, and panics on error.
func (o ContainerDescriptionPatternSlice) UpdateAllP(exec boil.Executor, cols M) {
if err := o.UpdateAll(exec, cols); err != nil {
panic(boil.WrapErr(err))
}
}
// UpdateAll updates all rows with the specified column values, using an executor.
func (o ContainerDescriptionPatternSlice) UpdateAll(exec boil.Executor, cols M) error {
ln := int64(len(o))
if ln == 0 {
return nil
}
if len(cols) == 0 {
return errors.New("kmodels: update all requires at least one column argument")
}
colNames := make([]string, len(cols))
args := make([]interface{}, len(cols))
i := 0
for name, value := range cols {
colNames[i] = name
args[i] = value
i++
}
// Append all of the primary key values for each column
for _, obj := range o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), containerDescriptionPatternPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := fmt.Sprintf("UPDATE \"container_description_patterns\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, colNames),
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), len(colNames)+1, containerDescriptionPatternPrimaryKeyColumns, len(o)))
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, sql)
fmt.Fprintln(boil.DebugWriter, args...)
}
_, err := exec.Exec(sql, args...)
if err != nil {
return errors.Wrap(err, "kmodels: unable to update all in containerDescriptionPattern slice")
}
return nil
}
// UpsertG attempts an insert, and does an update or ignore on conflict.
func (o *ContainerDescriptionPattern) UpsertG(updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
return o.Upsert(boil.GetDB(), updateOnConflict, conflictColumns, updateColumns, whitelist...)
}
// UpsertGP attempts an insert, and does an update or ignore on conflict. Panics on error.
func (o *ContainerDescriptionPattern) UpsertGP(updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) {
if err := o.Upsert(boil.GetDB(), updateOnConflict, conflictColumns, updateColumns, whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// UpsertP attempts an insert using an executor, and does an update or ignore on conflict.
// UpsertP panics on error.
func (o *ContainerDescriptionPattern) UpsertP(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) {
if err := o.Upsert(exec, updateOnConflict, conflictColumns, updateColumns, whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// Upsert attempts an insert using an executor, and does an update or ignore on conflict.
func (o *ContainerDescriptionPattern) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
if o == nil {
return errors.New("kmodels: no container_description_patterns provided for upsert")
}
currTime := time.Now().In(boil.GetLocation())
if o.CreatedAt.Time.IsZero() {
o.CreatedAt.Time = currTime
o.CreatedAt.Valid = true
}
o.UpdatedAt.Time = currTime
o.UpdatedAt.Valid = true
nzDefaults := queries.NonZeroDefaultSet(containerDescriptionPatternColumnsWithDefault, o)
// Build cache key in-line uglily - mysql vs postgres problems
buf := strmangle.GetBuffer()
if updateOnConflict {
buf.WriteByte('t')
} else {
buf.WriteByte('f')
}
buf.WriteByte('.')
for _, c := range conflictColumns {
buf.WriteString(c)
}
buf.WriteByte('.')
for _, c := range updateColumns {
buf.WriteString(c)
}
buf.WriteByte('.')
for _, c := range whitelist {
buf.WriteString(c)
}
buf.WriteByte('.')
for _, c := range nzDefaults {
buf.WriteString(c)
}
key := buf.String()
strmangle.PutBuffer(buf)
containerDescriptionPatternUpsertCacheMut.RLock()
cache, cached := containerDescriptionPatternUpsertCache[key]
containerDescriptionPatternUpsertCacheMut.RUnlock()
var err error
if !cached {
insert, ret := strmangle.InsertColumnSet(
containerDescriptionPatternColumns,
containerDescriptionPatternColumnsWithDefault,
containerDescriptionPatternColumnsWithoutDefault,
nzDefaults,
whitelist,
)
update := strmangle.UpdateColumnSet(
containerDescriptionPatternColumns,
containerDescriptionPatternPrimaryKeyColumns,
updateColumns,
)
if len(update) == 0 {
return errors.New("kmodels: unable to upsert container_description_patterns, could not build update column list")
}
conflict := conflictColumns
if len(conflict) == 0 {
conflict = make([]string, len(containerDescriptionPatternPrimaryKeyColumns))
copy(conflict, containerDescriptionPatternPrimaryKeyColumns)
}
cache.query = queries.BuildUpsertQueryPostgres(dialect, "\"container_description_patterns\"", updateOnConflict, ret, update, conflict, insert)
cache.valueMapping, err = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, insert)
if err != nil {
return err
}
if len(ret) != 0 {
cache.retMapping, err = queries.BindMapping(containerDescriptionPatternType, containerDescriptionPatternMapping, ret)
if err != nil {
return err
}
}
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
var returns []interface{}
if len(cache.retMapping) != 0 {
returns = queries.PtrsFromMapping(value, cache.retMapping)
}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)