-
Notifications
You must be signed in to change notification settings - Fork 4
/
servers.go
1233 lines (1031 loc) · 35.3 KB
/
servers.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"
)
// Server is an object representing the database table.
type Server struct {
Servername string `boil:"servername" json:"servername" toml:"servername" yaml:"servername"`
Httpurl null.String `boil:"httpurl" json:"httpurl,omitempty" toml:"httpurl" yaml:"httpurl,omitempty"`
Created null.Time `boil:"created" json:"created,omitempty" toml:"created" yaml:"created,omitempty"`
Updated null.Time `boil:"updated" json:"updated,omitempty" toml:"updated" yaml:"updated,omitempty"`
Lastuser null.String `boil:"lastuser" json:"lastuser,omitempty" toml:"lastuser" yaml:"lastuser,omitempty"`
Path null.String `boil:"path" json:"path,omitempty" toml:"path" yaml:"path,omitempty"`
ID int `boil:"id" json:"id" toml:"id" yaml:"id"`
R *serverR `boil:"-" json:"-" toml:"-" yaml:"-"`
L serverL `boil:"-" json:"-" toml:"-" yaml:"-"`
}
var ServerColumns = struct {
Servername string
Httpurl string
Created string
Updated string
Lastuser string
Path string
ID string
}{
Servername: "servername",
Httpurl: "httpurl",
Created: "created",
Updated: "updated",
Lastuser: "lastuser",
Path: "path",
ID: "id",
}
// serverR is where relationships are stored.
type serverR struct {
ServernameFileAssets FileAssetSlice
}
// serverL is where Load methods for each relationship are stored.
type serverL struct{}
var (
serverColumns = []string{"servername", "httpurl", "created", "updated", "lastuser", "path", "id"}
serverColumnsWithoutDefault = []string{"httpurl", "created", "updated", "lastuser", "path"}
serverColumnsWithDefault = []string{"servername", "id"}
serverPrimaryKeyColumns = []string{"id"}
)
type (
// ServerSlice is an alias for a slice of pointers to Server.
// This should generally be used opposed to []Server.
ServerSlice []*Server
serverQuery struct {
*queries.Query
}
)
// Cache for insert, update and upsert
var (
serverType = reflect.TypeOf(&Server{})
serverMapping = queries.MakeStructMapping(serverType)
serverPrimaryKeyMapping, _ = queries.BindMapping(serverType, serverMapping, serverPrimaryKeyColumns)
serverInsertCacheMut sync.RWMutex
serverInsertCache = make(map[string]insertCache)
serverUpdateCacheMut sync.RWMutex
serverUpdateCache = make(map[string]updateCache)
serverUpsertCacheMut sync.RWMutex
serverUpsertCache = 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 server record from the query, and panics on error.
func (q serverQuery) OneP() *Server {
o, err := q.One()
if err != nil {
panic(boil.WrapErr(err))
}
return o
}
// One returns a single server record from the query.
func (q serverQuery) One() (*Server, error) {
o := &Server{}
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 servers")
}
return o, nil
}
// AllP returns all Server records from the query, and panics on error.
func (q serverQuery) AllP() ServerSlice {
o, err := q.All()
if err != nil {
panic(boil.WrapErr(err))
}
return o
}
// All returns all Server records from the query.
func (q serverQuery) All() (ServerSlice, error) {
var o []*Server
err := q.Bind(&o)
if err != nil {
return nil, errors.Wrap(err, "kmodels: failed to assign all query results to Server slice")
}
return o, nil
}
// CountP returns the count of all Server records in the query, and panics on error.
func (q serverQuery) CountP() int64 {
c, err := q.Count()
if err != nil {
panic(boil.WrapErr(err))
}
return c
}
// Count returns the count of all Server records in the query.
func (q serverQuery) 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 servers rows")
}
return count, nil
}
// Exists checks if the row exists in the table, and panics on error.
func (q serverQuery) 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 serverQuery) 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 servers exists")
}
return count > 0, nil
}
// ServernameFileAssetsG retrieves all the file_asset's file assets via servername_id column.
func (o *Server) ServernameFileAssetsG(mods ...qm.QueryMod) fileAssetQuery {
return o.ServernameFileAssets(boil.GetDB(), mods...)
}
// ServernameFileAssets retrieves all the file_asset's file assets with an executor via servername_id column.
func (o *Server) ServernameFileAssets(exec boil.Executor, mods ...qm.QueryMod) fileAssetQuery {
var queryMods []qm.QueryMod
if len(mods) != 0 {
queryMods = append(queryMods, mods...)
}
queryMods = append(queryMods,
qm.Where("\"file_assets\".\"servername_id\"=?", o.Servername),
)
query := FileAssets(exec, queryMods...)
queries.SetFrom(query.Query, "\"file_assets\"")
if len(queries.GetSelect(query.Query)) == 0 {
queries.SetSelect(query.Query, []string{"\"file_assets\".*"})
}
return query
}
// LoadServernameFileAssets allows an eager lookup of values, cached into the
// loaded structs of the objects.
func (serverL) LoadServernameFileAssets(e boil.Executor, singular bool, maybeServer interface{}) error {
var slice []*Server
var object *Server
count := 1
if singular {
object = maybeServer.(*Server)
} else {
slice = *maybeServer.(*[]*Server)
count = len(slice)
}
args := make([]interface{}, count)
if singular {
if object.R == nil {
object.R = &serverR{}
}
args[0] = object.Servername
} else {
for i, obj := range slice {
if obj.R == nil {
obj.R = &serverR{}
}
args[i] = obj.Servername
}
}
query := fmt.Sprintf(
"select * from \"file_assets\" where \"servername_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 file_assets")
}
defer results.Close()
var resultSlice []*FileAsset
if err = queries.Bind(results, &resultSlice); err != nil {
return errors.Wrap(err, "failed to bind eager loaded slice file_assets")
}
if singular {
object.R.ServernameFileAssets = resultSlice
return nil
}
for _, foreign := range resultSlice {
for _, local := range slice {
if local.Servername == foreign.ServernameID.String {
local.R.ServernameFileAssets = append(local.R.ServernameFileAssets, foreign)
break
}
}
}
return nil
}
// AddServernameFileAssetsG adds the given related objects to the existing relationships
// of the server, optionally inserting them as new records.
// Appends related to o.R.ServernameFileAssets.
// Sets related.R.Servername appropriately.
// Uses the global database handle.
func (o *Server) AddServernameFileAssetsG(insert bool, related ...*FileAsset) error {
return o.AddServernameFileAssets(boil.GetDB(), insert, related...)
}
// AddServernameFileAssetsP adds the given related objects to the existing relationships
// of the server, optionally inserting them as new records.
// Appends related to o.R.ServernameFileAssets.
// Sets related.R.Servername appropriately.
// Panics on error.
func (o *Server) AddServernameFileAssetsP(exec boil.Executor, insert bool, related ...*FileAsset) {
if err := o.AddServernameFileAssets(exec, insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// AddServernameFileAssetsGP adds the given related objects to the existing relationships
// of the server, optionally inserting them as new records.
// Appends related to o.R.ServernameFileAssets.
// Sets related.R.Servername appropriately.
// Uses the global database handle and panics on error.
func (o *Server) AddServernameFileAssetsGP(insert bool, related ...*FileAsset) {
if err := o.AddServernameFileAssets(boil.GetDB(), insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// AddServernameFileAssets adds the given related objects to the existing relationships
// of the server, optionally inserting them as new records.
// Appends related to o.R.ServernameFileAssets.
// Sets related.R.Servername appropriately.
func (o *Server) AddServernameFileAssets(exec boil.Executor, insert bool, related ...*FileAsset) error {
var err error
for _, rel := range related {
if insert {
rel.ServernameID.String = o.Servername
rel.ServernameID.Valid = true
if err = rel.Insert(exec); err != nil {
return errors.Wrap(err, "failed to insert into foreign table")
}
} else {
updateQuery := fmt.Sprintf(
"UPDATE \"file_assets\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, []string{"servername_id"}),
strmangle.WhereClause("\"", "\"", 2, fileAssetPrimaryKeyColumns),
)
values := []interface{}{o.Servername, rel.ID}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, updateQuery)
fmt.Fprintln(boil.DebugWriter, values)
}
if _, err = exec.Exec(updateQuery, values...); err != nil {
return errors.Wrap(err, "failed to update foreign table")
}
rel.ServernameID.String = o.Servername
rel.ServernameID.Valid = true
}
}
if o.R == nil {
o.R = &serverR{
ServernameFileAssets: related,
}
} else {
o.R.ServernameFileAssets = append(o.R.ServernameFileAssets, related...)
}
for _, rel := range related {
if rel.R == nil {
rel.R = &fileAssetR{
Servername: o,
}
} else {
rel.R.Servername = o
}
}
return nil
}
// SetServernameFileAssetsG removes all previously related items of the
// server replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.Servername's ServernameFileAssets accordingly.
// Replaces o.R.ServernameFileAssets with related.
// Sets related.R.Servername's ServernameFileAssets accordingly.
// Uses the global database handle.
func (o *Server) SetServernameFileAssetsG(insert bool, related ...*FileAsset) error {
return o.SetServernameFileAssets(boil.GetDB(), insert, related...)
}
// SetServernameFileAssetsP removes all previously related items of the
// server replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.Servername's ServernameFileAssets accordingly.
// Replaces o.R.ServernameFileAssets with related.
// Sets related.R.Servername's ServernameFileAssets accordingly.
// Panics on error.
func (o *Server) SetServernameFileAssetsP(exec boil.Executor, insert bool, related ...*FileAsset) {
if err := o.SetServernameFileAssets(exec, insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// SetServernameFileAssetsGP removes all previously related items of the
// server replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.Servername's ServernameFileAssets accordingly.
// Replaces o.R.ServernameFileAssets with related.
// Sets related.R.Servername's ServernameFileAssets accordingly.
// Uses the global database handle and panics on error.
func (o *Server) SetServernameFileAssetsGP(insert bool, related ...*FileAsset) {
if err := o.SetServernameFileAssets(boil.GetDB(), insert, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// SetServernameFileAssets removes all previously related items of the
// server replacing them completely with the passed
// in related items, optionally inserting them as new records.
// Sets o.R.Servername's ServernameFileAssets accordingly.
// Replaces o.R.ServernameFileAssets with related.
// Sets related.R.Servername's ServernameFileAssets accordingly.
func (o *Server) SetServernameFileAssets(exec boil.Executor, insert bool, related ...*FileAsset) error {
query := "update \"file_assets\" set \"servername_id\" = null where \"servername_id\" = $1"
values := []interface{}{o.Servername}
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")
}
if o.R != nil {
for _, rel := range o.R.ServernameFileAssets {
rel.ServernameID.Valid = false
if rel.R == nil {
continue
}
rel.R.Servername = nil
}
o.R.ServernameFileAssets = nil
}
return o.AddServernameFileAssets(exec, insert, related...)
}
// RemoveServernameFileAssetsG relationships from objects passed in.
// Removes related items from R.ServernameFileAssets (uses pointer comparison, removal does not keep order)
// Sets related.R.Servername.
// Uses the global database handle.
func (o *Server) RemoveServernameFileAssetsG(related ...*FileAsset) error {
return o.RemoveServernameFileAssets(boil.GetDB(), related...)
}
// RemoveServernameFileAssetsP relationships from objects passed in.
// Removes related items from R.ServernameFileAssets (uses pointer comparison, removal does not keep order)
// Sets related.R.Servername.
// Panics on error.
func (o *Server) RemoveServernameFileAssetsP(exec boil.Executor, related ...*FileAsset) {
if err := o.RemoveServernameFileAssets(exec, related...); err != nil {
panic(boil.WrapErr(err))
}
}
// RemoveServernameFileAssetsGP relationships from objects passed in.
// Removes related items from R.ServernameFileAssets (uses pointer comparison, removal does not keep order)
// Sets related.R.Servername.
// Uses the global database handle and panics on error.
func (o *Server) RemoveServernameFileAssetsGP(related ...*FileAsset) {
if err := o.RemoveServernameFileAssets(boil.GetDB(), related...); err != nil {
panic(boil.WrapErr(err))
}
}
// RemoveServernameFileAssets relationships from objects passed in.
// Removes related items from R.ServernameFileAssets (uses pointer comparison, removal does not keep order)
// Sets related.R.Servername.
func (o *Server) RemoveServernameFileAssets(exec boil.Executor, related ...*FileAsset) error {
var err error
for _, rel := range related {
rel.ServernameID.Valid = false
if rel.R != nil {
rel.R.Servername = nil
}
if err = rel.Update(exec, "servername_id"); err != nil {
return err
}
}
if o.R == nil {
return nil
}
for _, rel := range related {
for i, ri := range o.R.ServernameFileAssets {
if rel != ri {
continue
}
ln := len(o.R.ServernameFileAssets)
if ln > 1 && i < ln-1 {
o.R.ServernameFileAssets[i] = o.R.ServernameFileAssets[ln-1]
}
o.R.ServernameFileAssets = o.R.ServernameFileAssets[:ln-1]
break
}
}
return nil
}
// ServersG retrieves all records.
func ServersG(mods ...qm.QueryMod) serverQuery {
return Servers(boil.GetDB(), mods...)
}
// Servers retrieves all the records using an executor.
func Servers(exec boil.Executor, mods ...qm.QueryMod) serverQuery {
mods = append(mods, qm.From("\"servers\""))
return serverQuery{NewQuery(exec, mods...)}
}
// FindServerG retrieves a single record by ID.
func FindServerG(id int, selectCols ...string) (*Server, error) {
return FindServer(boil.GetDB(), id, selectCols...)
}
// FindServerGP retrieves a single record by ID, and panics on error.
func FindServerGP(id int, selectCols ...string) *Server {
retobj, err := FindServer(boil.GetDB(), id, selectCols...)
if err != nil {
panic(boil.WrapErr(err))
}
return retobj
}
// FindServer retrieves a single record by ID with an executor.
// If selectCols is empty Find will return all columns.
func FindServer(exec boil.Executor, id int, selectCols ...string) (*Server, error) {
serverObj := &Server{}
sel := "*"
if len(selectCols) > 0 {
sel = strings.Join(strmangle.IdentQuoteSlice(dialect.LQ, dialect.RQ, selectCols), ",")
}
query := fmt.Sprintf(
"select %s from \"servers\" where \"id\"=$1", sel,
)
q := queries.Raw(exec, query, id)
err := q.Bind(serverObj)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "kmodels: unable to select from servers")
}
return serverObj, nil
}
// FindServerP retrieves a single record by ID with an executor, and panics on error.
func FindServerP(exec boil.Executor, id int, selectCols ...string) *Server {
retobj, err := FindServer(exec, id, selectCols...)
if err != nil {
panic(boil.WrapErr(err))
}
return retobj
}
// InsertG a single record. See Insert for whitelist behavior description.
func (o *Server) 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 *Server) 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 *Server) 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 *Server) Insert(exec boil.Executor, whitelist ...string) error {
if o == nil {
return errors.New("kmodels: no servers provided for insertion")
}
var err error
nzDefaults := queries.NonZeroDefaultSet(serverColumnsWithDefault, o)
key := makeCacheKey(whitelist, nzDefaults)
serverInsertCacheMut.RLock()
cache, cached := serverInsertCache[key]
serverInsertCacheMut.RUnlock()
if !cached {
wl, returnColumns := strmangle.InsertColumnSet(
serverColumns,
serverColumnsWithDefault,
serverColumnsWithoutDefault,
nzDefaults,
whitelist,
)
cache.valueMapping, err = queries.BindMapping(serverType, serverMapping, wl)
if err != nil {
return err
}
cache.retMapping, err = queries.BindMapping(serverType, serverMapping, returnColumns)
if err != nil {
return err
}
if len(wl) != 0 {
cache.query = fmt.Sprintf("INSERT INTO \"servers\" (\"%s\") %%sVALUES (%s)%%s", strings.Join(wl, "\",\""), strmangle.Placeholders(dialect.IndexPlaceholders, len(wl), 1, 1))
} else {
cache.query = "INSERT INTO \"servers\" 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 servers")
}
if !cached {
serverInsertCacheMut.Lock()
serverInsertCache[key] = cache
serverInsertCacheMut.Unlock()
}
return nil
}
// UpdateG a single Server record. See Update for
// whitelist behavior description.
func (o *Server) UpdateG(whitelist ...string) error {
return o.Update(boil.GetDB(), whitelist...)
}
// UpdateGP a single Server record.
// UpdateGP takes a whitelist of column names that should be updated.
// Panics on error. See Update for whitelist behavior description.
func (o *Server) UpdateGP(whitelist ...string) {
if err := o.Update(boil.GetDB(), whitelist...); err != nil {
panic(boil.WrapErr(err))
}
}
// UpdateP uses an executor to update the Server, and panics on error.
// See Update for whitelist behavior description.
func (o *Server) 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 Server.
// 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 *Server) Update(exec boil.Executor, whitelist ...string) error {
var err error
key := makeCacheKey(whitelist, nil)
serverUpdateCacheMut.RLock()
cache, cached := serverUpdateCache[key]
serverUpdateCacheMut.RUnlock()
if !cached {
wl := strmangle.UpdateColumnSet(
serverColumns,
serverPrimaryKeyColumns,
whitelist,
)
if len(whitelist) == 0 {
wl = strmangle.SetComplement(wl, []string{"created_at"})
}
if len(wl) == 0 {
return errors.New("kmodels: unable to update servers, could not build whitelist")
}
cache.query = fmt.Sprintf("UPDATE \"servers\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, wl),
strmangle.WhereClause("\"", "\"", len(wl)+1, serverPrimaryKeyColumns),
)
cache.valueMapping, err = queries.BindMapping(serverType, serverMapping, append(wl, serverPrimaryKeyColumns...))
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 servers row")
}
if !cached {
serverUpdateCacheMut.Lock()
serverUpdateCache[key] = cache
serverUpdateCacheMut.Unlock()
}
return nil
}
// UpdateAllP updates all rows with matching column names, and panics on error.
func (q serverQuery) 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 serverQuery) 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 servers")
}
return nil
}
// UpdateAllG updates all rows with the specified column values.
func (o ServerSlice) 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 ServerSlice) 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 ServerSlice) 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 ServerSlice) 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)), serverPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := fmt.Sprintf("UPDATE \"servers\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, colNames),
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), len(colNames)+1, serverPrimaryKeyColumns, 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 server slice")
}
return nil
}
// UpsertG attempts an insert, and does an update or ignore on conflict.
func (o *Server) 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 *Server) 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 *Server) 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 *Server) Upsert(exec boil.Executor, updateOnConflict bool, conflictColumns []string, updateColumns []string, whitelist ...string) error {
if o == nil {
return errors.New("kmodels: no servers provided for upsert")
}
nzDefaults := queries.NonZeroDefaultSet(serverColumnsWithDefault, 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)
serverUpsertCacheMut.RLock()
cache, cached := serverUpsertCache[key]
serverUpsertCacheMut.RUnlock()
var err error
if !cached {
insert, ret := strmangle.InsertColumnSet(
serverColumns,
serverColumnsWithDefault,
serverColumnsWithoutDefault,
nzDefaults,
whitelist,
)
update := strmangle.UpdateColumnSet(
serverColumns,
serverPrimaryKeyColumns,
updateColumns,
)
if len(update) == 0 {
return errors.New("kmodels: unable to upsert servers, could not build update column list")
}
conflict := conflictColumns
if len(conflict) == 0 {
conflict = make([]string, len(serverPrimaryKeyColumns))
copy(conflict, serverPrimaryKeyColumns)
}
cache.query = queries.BuildUpsertQueryPostgres(dialect, "\"servers\"", updateOnConflict, ret, update, conflict, insert)
cache.valueMapping, err = queries.BindMapping(serverType, serverMapping, insert)
if err != nil {
return err
}
if len(ret) != 0 {
cache.retMapping, err = queries.BindMapping(serverType, serverMapping, 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)
fmt.Fprintln(boil.DebugWriter, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRow(cache.query, vals...).Scan(returns...)
if err == sql.ErrNoRows {
err = nil // Postgres doesn't return anything when there's no update
}
} else {
_, err = exec.Exec(cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "kmodels: unable to upsert servers")
}
if !cached {
serverUpsertCacheMut.Lock()
serverUpsertCache[key] = cache
serverUpsertCacheMut.Unlock()
}
return nil
}
// DeleteP deletes a single Server record with an executor.
// DeleteP will match against the primary key column to find the record to delete.
// Panics on error.
func (o *Server) DeleteP(exec boil.Executor) {
if err := o.Delete(exec); err != nil {
panic(boil.WrapErr(err))
}
}
// DeleteG deletes a single Server record.
// DeleteG will match against the primary key column to find the record to delete.
func (o *Server) DeleteG() error {
if o == nil {
return errors.New("kmodels: no Server provided for deletion")
}
return o.Delete(boil.GetDB())
}
// DeleteGP deletes a single Server record.
// DeleteGP will match against the primary key column to find the record to delete.
// Panics on error.
func (o *Server) DeleteGP() {
if err := o.DeleteG(); err != nil {
panic(boil.WrapErr(err))
}
}
// Delete deletes a single Server record with an executor.
// Delete will match against the primary key column to find the record to delete.
func (o *Server) Delete(exec boil.Executor) error {