-
Notifications
You must be signed in to change notification settings - Fork 0
/
mutation.go
5373 lines (4828 loc) · 160 KB
/
mutation.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 entc, DO NOT EDIT.
package ent
import (
"context"
"fmt"
"sync"
"github.com/mrzack99s/netcoco/ent/administrator"
"github.com/mrzack99s/netcoco/ent/deletedvlanlog"
"github.com/mrzack99s/netcoco/ent/device"
"github.com/mrzack99s/netcoco/ent/deviceplatform"
"github.com/mrzack99s/netcoco/ent/devicetype"
"github.com/mrzack99s/netcoco/ent/netinterface"
"github.com/mrzack99s/netcoco/ent/netinterfacemode"
"github.com/mrzack99s/netcoco/ent/nettopology"
"github.com/mrzack99s/netcoco/ent/nettopologydevicemap"
"github.com/mrzack99s/netcoco/ent/predicate"
"github.com/mrzack99s/netcoco/ent/vlan"
"entgo.io/ent"
)
const (
// Operation types.
OpCreate = ent.OpCreate
OpDelete = ent.OpDelete
OpDeleteOne = ent.OpDeleteOne
OpUpdate = ent.OpUpdate
OpUpdateOne = ent.OpUpdateOne
// Node types.
TypeAdministrator = "Administrator"
TypeDeletedVlanLog = "DeletedVlanLog"
TypeDevice = "Device"
TypeDevicePlatform = "DevicePlatform"
TypeDeviceType = "DeviceType"
TypeNetInterface = "NetInterface"
TypeNetInterfaceMode = "NetInterfaceMode"
TypeNetTopology = "NetTopology"
TypeNetTopologyDeviceMap = "NetTopologyDeviceMap"
TypeVlan = "Vlan"
)
// AdministratorMutation represents an operation that mutates the Administrator nodes in the graph.
type AdministratorMutation struct {
config
op Op
typ string
id *int
username *string
password *string
clearedFields map[string]struct{}
done bool
oldValue func(context.Context) (*Administrator, error)
predicates []predicate.Administrator
}
var _ ent.Mutation = (*AdministratorMutation)(nil)
// administratorOption allows management of the mutation configuration using functional options.
type administratorOption func(*AdministratorMutation)
// newAdministratorMutation creates new mutation for the Administrator entity.
func newAdministratorMutation(c config, op Op, opts ...administratorOption) *AdministratorMutation {
m := &AdministratorMutation{
config: c,
op: op,
typ: TypeAdministrator,
clearedFields: make(map[string]struct{}),
}
for _, opt := range opts {
opt(m)
}
return m
}
// withAdministratorID sets the ID field of the mutation.
func withAdministratorID(id int) administratorOption {
return func(m *AdministratorMutation) {
var (
err error
once sync.Once
value *Administrator
)
m.oldValue = func(ctx context.Context) (*Administrator, error) {
once.Do(func() {
if m.done {
err = fmt.Errorf("querying old values post mutation is not allowed")
} else {
value, err = m.Client().Administrator.Get(ctx, id)
}
})
return value, err
}
m.id = &id
}
}
// withAdministrator sets the old Administrator of the mutation.
func withAdministrator(node *Administrator) administratorOption {
return func(m *AdministratorMutation) {
m.oldValue = func(context.Context) (*Administrator, error) {
return node, nil
}
m.id = &node.ID
}
}
// Client returns a new `ent.Client` from the mutation. If the mutation was
// executed in a transaction (ent.Tx), a transactional client is returned.
func (m AdministratorMutation) Client() *Client {
client := &Client{config: m.config}
client.init()
return client
}
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
// it returns an error otherwise.
func (m AdministratorMutation) Tx() (*Tx, error) {
if _, ok := m.driver.(*txDriver); !ok {
return nil, fmt.Errorf("ent: mutation is not running in a transaction")
}
tx := &Tx{config: m.config}
tx.init()
return tx, nil
}
// ID returns the ID value in the mutation. Note that the ID
// is only available if it was provided to the builder.
func (m *AdministratorMutation) ID() (id int, exists bool) {
if m.id == nil {
return
}
return *m.id, true
}
// SetUsername sets the "username" field.
func (m *AdministratorMutation) SetUsername(s string) {
m.username = &s
}
// Username returns the value of the "username" field in the mutation.
func (m *AdministratorMutation) Username() (r string, exists bool) {
v := m.username
if v == nil {
return
}
return *v, true
}
// OldUsername returns the old "username" field's value of the Administrator entity.
// If the Administrator object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *AdministratorMutation) OldUsername(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, fmt.Errorf("OldUsername is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, fmt.Errorf("OldUsername requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldUsername: %w", err)
}
return oldValue.Username, nil
}
// ResetUsername resets all changes to the "username" field.
func (m *AdministratorMutation) ResetUsername() {
m.username = nil
}
// SetPassword sets the "password" field.
func (m *AdministratorMutation) SetPassword(s string) {
m.password = &s
}
// Password returns the value of the "password" field in the mutation.
func (m *AdministratorMutation) Password() (r string, exists bool) {
v := m.password
if v == nil {
return
}
return *v, true
}
// OldPassword returns the old "password" field's value of the Administrator entity.
// If the Administrator object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *AdministratorMutation) OldPassword(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, fmt.Errorf("OldPassword is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, fmt.Errorf("OldPassword requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldPassword: %w", err)
}
return oldValue.Password, nil
}
// ResetPassword resets all changes to the "password" field.
func (m *AdministratorMutation) ResetPassword() {
m.password = nil
}
// Op returns the operation name.
func (m *AdministratorMutation) Op() Op {
return m.op
}
// Type returns the node type of this mutation (Administrator).
func (m *AdministratorMutation) Type() string {
return m.typ
}
// Fields returns all fields that were changed during this mutation. Note that in
// order to get all numeric fields that were incremented/decremented, call
// AddedFields().
func (m *AdministratorMutation) Fields() []string {
fields := make([]string, 0, 2)
if m.username != nil {
fields = append(fields, administrator.FieldUsername)
}
if m.password != nil {
fields = append(fields, administrator.FieldPassword)
}
return fields
}
// Field returns the value of a field with the given name. The second boolean
// return value indicates that this field was not set, or was not defined in the
// schema.
func (m *AdministratorMutation) Field(name string) (ent.Value, bool) {
switch name {
case administrator.FieldUsername:
return m.Username()
case administrator.FieldPassword:
return m.Password()
}
return nil, false
}
// OldField returns the old value of the field from the database. An error is
// returned if the mutation operation is not UpdateOne, or the query to the
// database failed.
func (m *AdministratorMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
switch name {
case administrator.FieldUsername:
return m.OldUsername(ctx)
case administrator.FieldPassword:
return m.OldPassword(ctx)
}
return nil, fmt.Errorf("unknown Administrator field %s", name)
}
// SetField sets the value of a field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *AdministratorMutation) SetField(name string, value ent.Value) error {
switch name {
case administrator.FieldUsername:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetUsername(v)
return nil
case administrator.FieldPassword:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetPassword(v)
return nil
}
return fmt.Errorf("unknown Administrator field %s", name)
}
// AddedFields returns all numeric fields that were incremented/decremented during
// this mutation.
func (m *AdministratorMutation) AddedFields() []string {
return nil
}
// AddedField returns the numeric value that was incremented/decremented on a field
// with the given name. The second boolean return value indicates that this field
// was not set, or was not defined in the schema.
func (m *AdministratorMutation) AddedField(name string) (ent.Value, bool) {
return nil, false
}
// AddField adds the value to the field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *AdministratorMutation) AddField(name string, value ent.Value) error {
switch name {
}
return fmt.Errorf("unknown Administrator numeric field %s", name)
}
// ClearedFields returns all nullable fields that were cleared during this
// mutation.
func (m *AdministratorMutation) ClearedFields() []string {
return nil
}
// FieldCleared returns a boolean indicating if a field with the given name was
// cleared in this mutation.
func (m *AdministratorMutation) FieldCleared(name string) bool {
_, ok := m.clearedFields[name]
return ok
}
// ClearField clears the value of the field with the given name. It returns an
// error if the field is not defined in the schema.
func (m *AdministratorMutation) ClearField(name string) error {
return fmt.Errorf("unknown Administrator nullable field %s", name)
}
// ResetField resets all changes in the mutation for the field with the given name.
// It returns an error if the field is not defined in the schema.
func (m *AdministratorMutation) ResetField(name string) error {
switch name {
case administrator.FieldUsername:
m.ResetUsername()
return nil
case administrator.FieldPassword:
m.ResetPassword()
return nil
}
return fmt.Errorf("unknown Administrator field %s", name)
}
// AddedEdges returns all edge names that were set/added in this mutation.
func (m *AdministratorMutation) AddedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
// name in this mutation.
func (m *AdministratorMutation) AddedIDs(name string) []ent.Value {
return nil
}
// RemovedEdges returns all edge names that were removed in this mutation.
func (m *AdministratorMutation) RemovedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
// the given name in this mutation.
func (m *AdministratorMutation) RemovedIDs(name string) []ent.Value {
return nil
}
// ClearedEdges returns all edge names that were cleared in this mutation.
func (m *AdministratorMutation) ClearedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// EdgeCleared returns a boolean which indicates if the edge with the given name
// was cleared in this mutation.
func (m *AdministratorMutation) EdgeCleared(name string) bool {
return false
}
// ClearEdge clears the value of the edge with the given name. It returns an error
// if that edge is not defined in the schema.
func (m *AdministratorMutation) ClearEdge(name string) error {
return fmt.Errorf("unknown Administrator unique edge %s", name)
}
// ResetEdge resets all changes to the edge with the given name in this mutation.
// It returns an error if the edge is not defined in the schema.
func (m *AdministratorMutation) ResetEdge(name string) error {
return fmt.Errorf("unknown Administrator edge %s", name)
}
// DeletedVlanLogMutation represents an operation that mutates the DeletedVlanLog nodes in the graph.
type DeletedVlanLogMutation struct {
config
op Op
typ string
id *int
vlan_id *int
addvlan_id *int
deleted *bool
clearedFields map[string]struct{}
on_device *int
clearedon_device bool
done bool
oldValue func(context.Context) (*DeletedVlanLog, error)
predicates []predicate.DeletedVlanLog
}
var _ ent.Mutation = (*DeletedVlanLogMutation)(nil)
// deletedvlanlogOption allows management of the mutation configuration using functional options.
type deletedvlanlogOption func(*DeletedVlanLogMutation)
// newDeletedVlanLogMutation creates new mutation for the DeletedVlanLog entity.
func newDeletedVlanLogMutation(c config, op Op, opts ...deletedvlanlogOption) *DeletedVlanLogMutation {
m := &DeletedVlanLogMutation{
config: c,
op: op,
typ: TypeDeletedVlanLog,
clearedFields: make(map[string]struct{}),
}
for _, opt := range opts {
opt(m)
}
return m
}
// withDeletedVlanLogID sets the ID field of the mutation.
func withDeletedVlanLogID(id int) deletedvlanlogOption {
return func(m *DeletedVlanLogMutation) {
var (
err error
once sync.Once
value *DeletedVlanLog
)
m.oldValue = func(ctx context.Context) (*DeletedVlanLog, error) {
once.Do(func() {
if m.done {
err = fmt.Errorf("querying old values post mutation is not allowed")
} else {
value, err = m.Client().DeletedVlanLog.Get(ctx, id)
}
})
return value, err
}
m.id = &id
}
}
// withDeletedVlanLog sets the old DeletedVlanLog of the mutation.
func withDeletedVlanLog(node *DeletedVlanLog) deletedvlanlogOption {
return func(m *DeletedVlanLogMutation) {
m.oldValue = func(context.Context) (*DeletedVlanLog, error) {
return node, nil
}
m.id = &node.ID
}
}
// Client returns a new `ent.Client` from the mutation. If the mutation was
// executed in a transaction (ent.Tx), a transactional client is returned.
func (m DeletedVlanLogMutation) Client() *Client {
client := &Client{config: m.config}
client.init()
return client
}
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
// it returns an error otherwise.
func (m DeletedVlanLogMutation) Tx() (*Tx, error) {
if _, ok := m.driver.(*txDriver); !ok {
return nil, fmt.Errorf("ent: mutation is not running in a transaction")
}
tx := &Tx{config: m.config}
tx.init()
return tx, nil
}
// ID returns the ID value in the mutation. Note that the ID
// is only available if it was provided to the builder.
func (m *DeletedVlanLogMutation) ID() (id int, exists bool) {
if m.id == nil {
return
}
return *m.id, true
}
// SetVlanID sets the "vlan_id" field.
func (m *DeletedVlanLogMutation) SetVlanID(i int) {
m.vlan_id = &i
m.addvlan_id = nil
}
// VlanID returns the value of the "vlan_id" field in the mutation.
func (m *DeletedVlanLogMutation) VlanID() (r int, exists bool) {
v := m.vlan_id
if v == nil {
return
}
return *v, true
}
// OldVlanID returns the old "vlan_id" field's value of the DeletedVlanLog entity.
// If the DeletedVlanLog object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *DeletedVlanLogMutation) OldVlanID(ctx context.Context) (v int, err error) {
if !m.op.Is(OpUpdateOne) {
return v, fmt.Errorf("OldVlanID is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, fmt.Errorf("OldVlanID requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldVlanID: %w", err)
}
return oldValue.VlanID, nil
}
// AddVlanID adds i to the "vlan_id" field.
func (m *DeletedVlanLogMutation) AddVlanID(i int) {
if m.addvlan_id != nil {
*m.addvlan_id += i
} else {
m.addvlan_id = &i
}
}
// AddedVlanID returns the value that was added to the "vlan_id" field in this mutation.
func (m *DeletedVlanLogMutation) AddedVlanID() (r int, exists bool) {
v := m.addvlan_id
if v == nil {
return
}
return *v, true
}
// ResetVlanID resets all changes to the "vlan_id" field.
func (m *DeletedVlanLogMutation) ResetVlanID() {
m.vlan_id = nil
m.addvlan_id = nil
}
// SetDeleted sets the "deleted" field.
func (m *DeletedVlanLogMutation) SetDeleted(b bool) {
m.deleted = &b
}
// Deleted returns the value of the "deleted" field in the mutation.
func (m *DeletedVlanLogMutation) Deleted() (r bool, exists bool) {
v := m.deleted
if v == nil {
return
}
return *v, true
}
// OldDeleted returns the old "deleted" field's value of the DeletedVlanLog entity.
// If the DeletedVlanLog object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *DeletedVlanLogMutation) OldDeleted(ctx context.Context) (v bool, err error) {
if !m.op.Is(OpUpdateOne) {
return v, fmt.Errorf("OldDeleted is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, fmt.Errorf("OldDeleted requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldDeleted: %w", err)
}
return oldValue.Deleted, nil
}
// ResetDeleted resets all changes to the "deleted" field.
func (m *DeletedVlanLogMutation) ResetDeleted() {
m.deleted = nil
}
// SetOnDeviceID sets the "on_device" edge to the Device entity by id.
func (m *DeletedVlanLogMutation) SetOnDeviceID(id int) {
m.on_device = &id
}
// ClearOnDevice clears the "on_device" edge to the Device entity.
func (m *DeletedVlanLogMutation) ClearOnDevice() {
m.clearedon_device = true
}
// OnDeviceCleared reports if the "on_device" edge to the Device entity was cleared.
func (m *DeletedVlanLogMutation) OnDeviceCleared() bool {
return m.clearedon_device
}
// OnDeviceID returns the "on_device" edge ID in the mutation.
func (m *DeletedVlanLogMutation) OnDeviceID() (id int, exists bool) {
if m.on_device != nil {
return *m.on_device, true
}
return
}
// OnDeviceIDs returns the "on_device" edge IDs in the mutation.
// Note that IDs always returns len(IDs) <= 1 for unique edges, and you should use
// OnDeviceID instead. It exists only for internal usage by the builders.
func (m *DeletedVlanLogMutation) OnDeviceIDs() (ids []int) {
if id := m.on_device; id != nil {
ids = append(ids, *id)
}
return
}
// ResetOnDevice resets all changes to the "on_device" edge.
func (m *DeletedVlanLogMutation) ResetOnDevice() {
m.on_device = nil
m.clearedon_device = false
}
// Op returns the operation name.
func (m *DeletedVlanLogMutation) Op() Op {
return m.op
}
// Type returns the node type of this mutation (DeletedVlanLog).
func (m *DeletedVlanLogMutation) Type() string {
return m.typ
}
// Fields returns all fields that were changed during this mutation. Note that in
// order to get all numeric fields that were incremented/decremented, call
// AddedFields().
func (m *DeletedVlanLogMutation) Fields() []string {
fields := make([]string, 0, 2)
if m.vlan_id != nil {
fields = append(fields, deletedvlanlog.FieldVlanID)
}
if m.deleted != nil {
fields = append(fields, deletedvlanlog.FieldDeleted)
}
return fields
}
// Field returns the value of a field with the given name. The second boolean
// return value indicates that this field was not set, or was not defined in the
// schema.
func (m *DeletedVlanLogMutation) Field(name string) (ent.Value, bool) {
switch name {
case deletedvlanlog.FieldVlanID:
return m.VlanID()
case deletedvlanlog.FieldDeleted:
return m.Deleted()
}
return nil, false
}
// OldField returns the old value of the field from the database. An error is
// returned if the mutation operation is not UpdateOne, or the query to the
// database failed.
func (m *DeletedVlanLogMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
switch name {
case deletedvlanlog.FieldVlanID:
return m.OldVlanID(ctx)
case deletedvlanlog.FieldDeleted:
return m.OldDeleted(ctx)
}
return nil, fmt.Errorf("unknown DeletedVlanLog field %s", name)
}
// SetField sets the value of a field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *DeletedVlanLogMutation) SetField(name string, value ent.Value) error {
switch name {
case deletedvlanlog.FieldVlanID:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetVlanID(v)
return nil
case deletedvlanlog.FieldDeleted:
v, ok := value.(bool)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetDeleted(v)
return nil
}
return fmt.Errorf("unknown DeletedVlanLog field %s", name)
}
// AddedFields returns all numeric fields that were incremented/decremented during
// this mutation.
func (m *DeletedVlanLogMutation) AddedFields() []string {
var fields []string
if m.addvlan_id != nil {
fields = append(fields, deletedvlanlog.FieldVlanID)
}
return fields
}
// AddedField returns the numeric value that was incremented/decremented on a field
// with the given name. The second boolean return value indicates that this field
// was not set, or was not defined in the schema.
func (m *DeletedVlanLogMutation) AddedField(name string) (ent.Value, bool) {
switch name {
case deletedvlanlog.FieldVlanID:
return m.AddedVlanID()
}
return nil, false
}
// AddField adds the value to the field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *DeletedVlanLogMutation) AddField(name string, value ent.Value) error {
switch name {
case deletedvlanlog.FieldVlanID:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.AddVlanID(v)
return nil
}
return fmt.Errorf("unknown DeletedVlanLog numeric field %s", name)
}
// ClearedFields returns all nullable fields that were cleared during this
// mutation.
func (m *DeletedVlanLogMutation) ClearedFields() []string {
return nil
}
// FieldCleared returns a boolean indicating if a field with the given name was
// cleared in this mutation.
func (m *DeletedVlanLogMutation) FieldCleared(name string) bool {
_, ok := m.clearedFields[name]
return ok
}
// ClearField clears the value of the field with the given name. It returns an
// error if the field is not defined in the schema.
func (m *DeletedVlanLogMutation) ClearField(name string) error {
return fmt.Errorf("unknown DeletedVlanLog nullable field %s", name)
}
// ResetField resets all changes in the mutation for the field with the given name.
// It returns an error if the field is not defined in the schema.
func (m *DeletedVlanLogMutation) ResetField(name string) error {
switch name {
case deletedvlanlog.FieldVlanID:
m.ResetVlanID()
return nil
case deletedvlanlog.FieldDeleted:
m.ResetDeleted()
return nil
}
return fmt.Errorf("unknown DeletedVlanLog field %s", name)
}
// AddedEdges returns all edge names that were set/added in this mutation.
func (m *DeletedVlanLogMutation) AddedEdges() []string {
edges := make([]string, 0, 1)
if m.on_device != nil {
edges = append(edges, deletedvlanlog.EdgeOnDevice)
}
return edges
}
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
// name in this mutation.
func (m *DeletedVlanLogMutation) AddedIDs(name string) []ent.Value {
switch name {
case deletedvlanlog.EdgeOnDevice:
if id := m.on_device; id != nil {
return []ent.Value{*id}
}
}
return nil
}
// RemovedEdges returns all edge names that were removed in this mutation.
func (m *DeletedVlanLogMutation) RemovedEdges() []string {
edges := make([]string, 0, 1)
return edges
}
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
// the given name in this mutation.
func (m *DeletedVlanLogMutation) RemovedIDs(name string) []ent.Value {
switch name {
}
return nil
}
// ClearedEdges returns all edge names that were cleared in this mutation.
func (m *DeletedVlanLogMutation) ClearedEdges() []string {
edges := make([]string, 0, 1)
if m.clearedon_device {
edges = append(edges, deletedvlanlog.EdgeOnDevice)
}
return edges
}
// EdgeCleared returns a boolean which indicates if the edge with the given name
// was cleared in this mutation.
func (m *DeletedVlanLogMutation) EdgeCleared(name string) bool {
switch name {
case deletedvlanlog.EdgeOnDevice:
return m.clearedon_device
}
return false
}
// ClearEdge clears the value of the edge with the given name. It returns an error
// if that edge is not defined in the schema.
func (m *DeletedVlanLogMutation) ClearEdge(name string) error {
switch name {
case deletedvlanlog.EdgeOnDevice:
m.ClearOnDevice()
return nil
}
return fmt.Errorf("unknown DeletedVlanLog unique edge %s", name)
}
// ResetEdge resets all changes to the edge with the given name in this mutation.
// It returns an error if the edge is not defined in the schema.
func (m *DeletedVlanLogMutation) ResetEdge(name string) error {
switch name {
case deletedvlanlog.EdgeOnDevice:
m.ResetOnDevice()
return nil
}
return fmt.Errorf("unknown DeletedVlanLog edge %s", name)
}
// DeviceMutation represents an operation that mutates the Device nodes in the graph.
type DeviceMutation struct {
config
op Op
typ string
id *int
device_name *string
device_hostname *string
device_username *string
device_password *string
device_secret *string
device_ssh_port *int
adddevice_ssh_port *int
device_commit_config *bool
clearedFields map[string]struct{}
in_type *int
clearedin_type bool
in_platform *int
clearedin_platform bool
interfaces map[int]struct{}
removedinterfaces map[int]struct{}
clearedinterfaces bool
in_topology map[int]struct{}
removedin_topology map[int]struct{}
clearedin_topology bool
store_vlans map[int]struct{}
removedstore_vlans map[int]struct{}
clearedstore_vlans bool
deleted_vlans map[int]struct{}
removeddeleted_vlans map[int]struct{}
cleareddeleted_vlans bool
done bool
oldValue func(context.Context) (*Device, error)
predicates []predicate.Device
}
var _ ent.Mutation = (*DeviceMutation)(nil)
// deviceOption allows management of the mutation configuration using functional options.
type deviceOption func(*DeviceMutation)
// newDeviceMutation creates new mutation for the Device entity.
func newDeviceMutation(c config, op Op, opts ...deviceOption) *DeviceMutation {
m := &DeviceMutation{
config: c,
op: op,
typ: TypeDevice,
clearedFields: make(map[string]struct{}),
}
for _, opt := range opts {
opt(m)
}
return m
}
// withDeviceID sets the ID field of the mutation.
func withDeviceID(id int) deviceOption {
return func(m *DeviceMutation) {
var (
err error
once sync.Once
value *Device
)
m.oldValue = func(ctx context.Context) (*Device, error) {
once.Do(func() {
if m.done {
err = fmt.Errorf("querying old values post mutation is not allowed")
} else {
value, err = m.Client().Device.Get(ctx, id)
}
})
return value, err
}
m.id = &id
}
}
// withDevice sets the old Device of the mutation.
func withDevice(node *Device) deviceOption {
return func(m *DeviceMutation) {
m.oldValue = func(context.Context) (*Device, error) {
return node, nil
}
m.id = &node.ID
}
}
// Client returns a new `ent.Client` from the mutation. If the mutation was
// executed in a transaction (ent.Tx), a transactional client is returned.
func (m DeviceMutation) Client() *Client {
client := &Client{config: m.config}
client.init()
return client
}
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
// it returns an error otherwise.
func (m DeviceMutation) Tx() (*Tx, error) {
if _, ok := m.driver.(*txDriver); !ok {
return nil, fmt.Errorf("ent: mutation is not running in a transaction")
}
tx := &Tx{config: m.config}
tx.init()
return tx, nil
}
// ID returns the ID value in the mutation. Note that the ID
// is only available if it was provided to the builder.
func (m *DeviceMutation) ID() (id int, exists bool) {
if m.id == nil {
return
}
return *m.id, true
}
// SetDeviceName sets the "device_name" field.
func (m *DeviceMutation) SetDeviceName(s string) {
m.device_name = &s
}
// DeviceName returns the value of the "device_name" field in the mutation.
func (m *DeviceMutation) DeviceName() (r string, exists bool) {
v := m.device_name
if v == nil {
return
}
return *v, true
}
// OldDeviceName returns the old "device_name" field's value of the Device entity.
// If the Device object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *DeviceMutation) OldDeviceName(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, fmt.Errorf("OldDeviceName is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, fmt.Errorf("OldDeviceName requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldDeviceName: %w", err)
}
return oldValue.DeviceName, nil
}
// ResetDeviceName resets all changes to the "device_name" field.
func (m *DeviceMutation) ResetDeviceName() {
m.device_name = nil
}
// SetDeviceHostname sets the "device_hostname" field.
func (m *DeviceMutation) SetDeviceHostname(s string) {
m.device_hostname = &s
}
// DeviceHostname returns the value of the "device_hostname" field in the mutation.
func (m *DeviceMutation) DeviceHostname() (r string, exists bool) {
v := m.device_hostname
if v == nil {
return
}
return *v, true
}
// OldDeviceHostname returns the old "device_hostname" field's value of the Device entity.
// If the Device object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.