-
Notifications
You must be signed in to change notification settings - Fork 106
/
ctestschema.go
1559 lines (1388 loc) · 61.8 KB
/
ctestschema.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Package ctestschema is a generated package which contains definitions
of structs which represent a YANG schema. The generated schema can be
compressed by a series of transformations (compression was true
in this case).
This package was generated by /usr/local/google/home/wenbli/gocode/src/github.com/openconfig/ygot/genutil/names.go
using the following YANG input files:
- ../yang/ctestschema.yang
- ../yang/ctestschema-rootmod.yang
Imported modules were sourced from:
- ...
*/
package ctestschema
import (
"encoding/json"
"fmt"
"reflect"
"github.com/openconfig/goyang/pkg/yang"
"github.com/openconfig/ygot/ygot"
"github.com/openconfig/ygot/ytypes"
)
// Binary is a type that is used for fields that have a YANG type of
// binary. It is used such that binary fields can be distinguished from
// leaf-lists of uint8s (which are mapped to []uint8, equivalent to
// []byte in reflection).
type Binary []byte
// YANGEmpty is a type that is used for fields that have a YANG type of
// empty. It is used such that empty fields can be distinguished from boolean fields
// in the generated code.
type YANGEmpty bool
// UnionInt8 is an int8 type assignable to unions of which it is a subtype.
type UnionInt8 int8
// UnionInt16 is an int16 type assignable to unions of which it is a subtype.
type UnionInt16 int16
// UnionInt32 is an int32 type assignable to unions of which it is a subtype.
type UnionInt32 int32
// UnionInt64 is an int64 type assignable to unions of which it is a subtype.
type UnionInt64 int64
// UnionUint8 is a uint8 type assignable to unions of which it is a subtype.
type UnionUint8 uint8
// UnionUint16 is a uint16 type assignable to unions of which it is a subtype.
type UnionUint16 uint16
// UnionUint32 is a uint32 type assignable to unions of which it is a subtype.
type UnionUint32 uint32
// UnionUint64 is a uint64 type assignable to unions of which it is a subtype.
type UnionUint64 uint64
// UnionFloat64 is a float64 type assignable to unions of which it is a subtype.
type UnionFloat64 float64
// UnionString is a string type assignable to unions of which it is a subtype.
type UnionString string
// UnionBool is a bool type assignable to unions of which it is a subtype.
type UnionBool bool
// UnionUnsupported is an interface{} wrapper type for unsupported types. It is
// assignable to unions of which it is a subtype.
type UnionUnsupported struct {
Value interface{}
}
var (
SchemaTree map[string]*yang.Entry
ΛEnumTypes map[string][]reflect.Type
)
func init() {
var err error
initΛEnumTypes()
if SchemaTree, err = UnzipSchema(); err != nil {
panic("schema error: " + err.Error())
}
}
// Schema returns the details of the generated schema.
func Schema() (*ytypes.Schema, error) {
uzp, err := UnzipSchema()
if err != nil {
return nil, fmt.Errorf("cannot unzip schema, %v", err)
}
return &ytypes.Schema{
Root: &Device{},
SchemaTree: uzp,
Unmarshal: Unmarshal,
}, nil
}
// UnzipSchema unzips the zipped schema and returns a map of yang.Entry nodes,
// keyed by the name of the struct that the yang.Entry describes the schema for.
func UnzipSchema() (map[string]*yang.Entry, error) {
var schemaTree map[string]*yang.Entry
var err error
if schemaTree, err = ygot.GzipToSchema(ySchema); err != nil {
return nil, fmt.Errorf("could not unzip the schema; %v", err)
}
return schemaTree, nil
}
// Unmarshal unmarshals data, which must be RFC7951 JSON format, into
// destStruct, which must be non-nil and the correct GoStruct type. It returns
// an error if the destStruct is not found in the schema or the data cannot be
// unmarshaled. The supplied options (opts) are used to control the behaviour
// of the unmarshal function - for example, determining whether errors are
// thrown for unknown fields in the input JSON.
func Unmarshal(data []byte, destStruct ygot.GoStruct, opts ...ytypes.UnmarshalOpt) error {
tn := reflect.TypeOf(destStruct).Elem().Name()
schema, ok := SchemaTree[tn]
if !ok {
return fmt.Errorf("could not find schema for type %s", tn)
}
var jsonTree interface{}
if err := json.Unmarshal([]byte(data), &jsonTree); err != nil {
return err
}
return ytypes.Unmarshal(schema, destStruct, jsonTree, opts...)
}
// Device represents the /device YANG schema element.
type Device struct {
ΛMetadata []ygot.Annotation `path:"@" ygotAnnotation:"true"`
OrderedList *OrderedList_OrderedMap `path:"ordered-lists/ordered-list" module:"ctestschema/ctestschema"`
ΛOrderedList []ygot.Annotation `path:"ordered-lists/@ordered-list" ygotAnnotation:"true"`
OrderedMultikeyedList *OrderedMultikeyedList_OrderedMap `path:"ordered-multikeyed-lists/ordered-multikeyed-list" module:"ctestschema-rootmod/ctestschema"`
ΛOrderedMultikeyedList []ygot.Annotation `path:"ordered-multikeyed-lists/@ordered-multikeyed-list" ygotAnnotation:"true"`
OtherData *OtherData `path:"other-data" module:"ctestschema"`
ΛOtherData []ygot.Annotation `path:"@other-data" ygotAnnotation:"true"`
UnorderedList map[string]*UnorderedList `path:"unordered-lists/unordered-list" module:"ctestschema/ctestschema"`
ΛUnorderedList []ygot.Annotation `path:"unordered-lists/@unordered-list" ygotAnnotation:"true"`
}
// IsYANGGoStruct ensures that Device implements the yang.GoStruct
// interface. This allows functions that need to handle this struct to
// identify it as being generated by ygen.
func (*Device) IsYANGGoStruct() {}
// OrderedMultikeyedList_Key represents the key for list OrderedMultikeyedList of element /device.
type OrderedMultikeyedList_Key struct {
Key1 string `path:"key1"`
Key2 uint64 `path:"key2"`
}
// IsYANGGoKeyStruct ensures that OrderedMultikeyedList_Key partially implements the
// yang.GoKeyStruct interface. This allows functions that need to
// handle this key struct to identify it as being generated by gogen.
func (OrderedMultikeyedList_Key) IsYANGGoKeyStruct() {}
// ΛListKeyMap returns the values of the OrderedMultikeyedList_Key key struct.
func (t OrderedMultikeyedList_Key) ΛListKeyMap() (map[string]interface{}, error) {
return map[string]interface{}{
"key1": t.Key1,
"key2": t.Key2,
}, nil
}
// NewUnorderedList creates a new entry in the UnorderedList list of the
// Device struct. The keys of the list are populated from the input
// arguments.
func (t *Device) NewUnorderedList(Key string) (*UnorderedList, error) {
// Initialise the list within the receiver struct if it has not already been
// created.
if t.UnorderedList == nil {
t.UnorderedList = make(map[string]*UnorderedList)
}
key := Key
// Ensure that this key has not already been used in the
// list. Keyed YANG lists do not allow duplicate keys to
// be created.
if _, ok := t.UnorderedList[key]; ok {
return nil, fmt.Errorf("duplicate key %v for list UnorderedList", key)
}
t.UnorderedList[key] = &UnorderedList{
Key: &Key,
}
return t.UnorderedList[key], nil
}
// RenameUnorderedList renames an entry in the list UnorderedList within
// the Device struct. The entry with key oldK is renamed to newK updating
// the key within the value.
func (t *Device) RenameUnorderedList(oldK, newK string) error {
if _, ok := t.UnorderedList[newK]; ok {
return fmt.Errorf("key %v already exists in UnorderedList", newK)
}
e, ok := t.UnorderedList[oldK]
if !ok {
return fmt.Errorf("key %v not found in UnorderedList", oldK)
}
e.Key = &newK
t.UnorderedList[newK] = e
delete(t.UnorderedList, oldK)
return nil
}
// GetOrCreateUnorderedListMap returns the list (map) from Device.
//
// It initializes the field if not already initialized.
func (t *Device) GetOrCreateUnorderedListMap() map[string]*UnorderedList {
if t.UnorderedList == nil {
t.UnorderedList = make(map[string]*UnorderedList)
}
return t.UnorderedList
}
// GetOrCreateUnorderedList retrieves the value with the specified keys from
// the receiver Device. If the entry does not exist, then it is created.
// It returns the existing or new list member.
func (t *Device) GetOrCreateUnorderedList(Key string) *UnorderedList {
key := Key
if v, ok := t.UnorderedList[key]; ok {
return v
}
// Panic if we receive an error, since we should have retrieved an existing
// list member. This allows chaining of GetOrCreate methods.
v, err := t.NewUnorderedList(Key)
if err != nil {
panic(fmt.Sprintf("GetOrCreateUnorderedList got unexpected error: %v", err))
}
return v
}
// GetUnorderedList retrieves the value with the specified key from
// the UnorderedList map field of Device. If the receiver is nil, or
// the specified key is not present in the list, nil is returned such that Get*
// methods may be safely chained.
func (t *Device) GetUnorderedList(Key string) *UnorderedList {
if t == nil {
return nil
}
key := Key
if lm, ok := t.UnorderedList[key]; ok {
return lm
}
return nil
}
// AppendUnorderedList appends the supplied UnorderedList struct to the
// list UnorderedList of Device. If the key value(s) specified in
// the supplied UnorderedList already exist in the list, an error is
// returned.
func (t *Device) AppendUnorderedList(v *UnorderedList) error {
if v.Key == nil {
return fmt.Errorf("invalid nil key received for Key")
}
key := *v.Key
// Initialise the list within the receiver struct if it has not already been
// created.
if t.UnorderedList == nil {
t.UnorderedList = make(map[string]*UnorderedList)
}
if _, ok := t.UnorderedList[key]; ok {
return fmt.Errorf("duplicate key for list UnorderedList %v", key)
}
t.UnorderedList[key] = v
return nil
}
// GetOrCreateOtherData retrieves the value of the OtherData field
// or returns the existing field if it already exists.
func (t *Device) GetOrCreateOtherData() *OtherData {
if t.OtherData != nil {
return t.OtherData
}
t.OtherData = &OtherData{}
return t.OtherData
}
// GetOtherData returns the value of the OtherData struct pointer
// from Device. If the receiver or the field OtherData is nil, nil
// is returned such that the Get* methods can be safely chained.
func (t *Device) GetOtherData() *OtherData {
if t != nil && t.OtherData != nil {
return t.OtherData
}
return nil
}
// GetOrCreateOrderedListMap returns the ordered map field
// OrderedList from Device.
//
// It initializes the field if not already initialized.
func (s *Device) GetOrCreateOrderedListMap() *OrderedList_OrderedMap {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedMap{}
}
return s.OrderedList
}
// AppendNewOrderedList creates a new entry in the OrderedList
// ordered map of the Device struct. The keys of the list are
// populated from the input arguments.
func (s *Device) AppendNewOrderedList(Key string) (*OrderedList, error) {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedMap{}
}
return s.OrderedList.AppendNew(Key)
}
// AppendOrderedList appends the supplied OrderedList struct
// to the list OrderedList of Device. If the key value(s)
// specified in the supplied OrderedList already exist in the list, an
// error is returned.
func (s *Device) AppendOrderedList(v *OrderedList) error {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedMap{}
}
return s.OrderedList.Append(v)
}
// GetOrderedList retrieves the value with the specified key from the
// OrderedList map field of Device. If the receiver
// is nil, or the specified key is not present in the list, nil is returned
// such that Get* methods may be safely chained.
func (s *Device) GetOrderedList(Key string) *OrderedList {
if s == nil {
return nil
}
key := Key
return s.OrderedList.Get(key)
}
// DeleteOrderedList deletes the value with the specified keys from
// the receiver Device. If there is no such element, the
// function is a no-op.
func (s *Device) DeleteOrderedList(Key string) bool {
key := Key
return s.OrderedList.Delete(key)
}
// OrderedList_OrderedMap is an ordered map that represents the "ordered-by user"
// list elements at /ctestschema/ordered-lists/ordered-list.
type OrderedList_OrderedMap struct {
keys []string
valueMap map[string]*OrderedList
}
// IsYANGOrderedList ensures that OrderedList_OrderedMap implements the
// ygot.GoOrderedMap interface.
func (*OrderedList_OrderedMap) IsYANGOrderedList() {}
// init initializes any uninitialized values.
func (o *OrderedList_OrderedMap) init() {
if o == nil {
return
}
if o.valueMap == nil {
o.valueMap = map[string]*OrderedList{}
}
}
// Keys returns a copy of the list's keys.
func (o *OrderedList_OrderedMap) Keys() []string {
if o == nil {
return nil
}
return append([]string{}, o.keys...)
}
// Values returns the current set of the list's values in order.
func (o *OrderedList_OrderedMap) Values() []*OrderedList {
if o == nil {
return nil
}
var values []*OrderedList
for _, key := range o.keys {
values = append(values, o.valueMap[key])
}
return values
}
// Len returns a size of OrderedList_OrderedMap
func (o *OrderedList_OrderedMap) Len() int {
if o == nil {
return 0
}
return len(o.keys)
}
// Get returns the value corresponding to the key. If the key is not found, nil
// is returned.
func (o *OrderedList_OrderedMap) Get(key string) *OrderedList {
if o == nil {
return nil
}
val, _ := o.valueMap[key]
return val
}
// Delete deletes an element.
func (o *OrderedList_OrderedMap) Delete(key string) bool {
if o == nil {
return false
}
if _, ok := o.valueMap[key]; !ok {
return false
}
for i, k := range o.keys {
if k == key {
o.keys = append(o.keys[:i], o.keys[i+1:]...)
delete(o.valueMap, key)
return true
}
}
return false
}
// Append appends a OrderedList, returning an error if the key
// already exists in the ordered list or if the key is unspecified.
func (o *OrderedList_OrderedMap) Append(v *OrderedList) error {
if o == nil {
return fmt.Errorf("nil ordered map, cannot append OrderedList")
}
if v == nil {
return fmt.Errorf("nil OrderedList")
}
if v.Key == nil {
return fmt.Errorf("invalid nil key received for Key")
}
key := *v.Key
if _, ok := o.valueMap[key]; ok {
return fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
o.init()
o.valueMap[key] = v
return nil
}
// AppendNew creates and appends a new OrderedList, returning the
// newly-initialized v. It returns an error if the v already exists.
func (o *OrderedList_OrderedMap) AppendNew(Key string) (*OrderedList, error) {
if o == nil {
return nil, fmt.Errorf("nil ordered map, cannot append OrderedList")
}
key := Key
if _, ok := o.valueMap[key]; ok {
return nil, fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
newElement := &OrderedList{
Key: &Key,
}
o.init()
o.valueMap[key] = newElement
return newElement, nil
}
// GetOrCreateOrderedMultikeyedListMap returns the ordered map field
// OrderedMultikeyedList from Device.
//
// It initializes the field if not already initialized.
func (s *Device) GetOrCreateOrderedMultikeyedListMap() *OrderedMultikeyedList_OrderedMap {
if s.OrderedMultikeyedList == nil {
s.OrderedMultikeyedList = &OrderedMultikeyedList_OrderedMap{}
}
return s.OrderedMultikeyedList
}
// AppendNewOrderedMultikeyedList creates a new entry in the OrderedMultikeyedList
// ordered map of the Device struct. The keys of the list are
// populated from the input arguments.
func (s *Device) AppendNewOrderedMultikeyedList(Key1 string, Key2 uint64) (*OrderedMultikeyedList, error) {
if s.OrderedMultikeyedList == nil {
s.OrderedMultikeyedList = &OrderedMultikeyedList_OrderedMap{}
}
return s.OrderedMultikeyedList.AppendNew(Key1, Key2)
}
// AppendOrderedMultikeyedList appends the supplied OrderedMultikeyedList struct
// to the list OrderedMultikeyedList of Device. If the key value(s)
// specified in the supplied OrderedMultikeyedList already exist in the list, an
// error is returned.
func (s *Device) AppendOrderedMultikeyedList(v *OrderedMultikeyedList) error {
if s.OrderedMultikeyedList == nil {
s.OrderedMultikeyedList = &OrderedMultikeyedList_OrderedMap{}
}
return s.OrderedMultikeyedList.Append(v)
}
// GetOrderedMultikeyedList retrieves the value with the specified key from the
// OrderedMultikeyedList map field of Device. If the receiver
// is nil, or the specified key is not present in the list, nil is returned
// such that Get* methods may be safely chained.
func (s *Device) GetOrderedMultikeyedList(Key1 string, Key2 uint64) *OrderedMultikeyedList {
if s == nil {
return nil
}
key := OrderedMultikeyedList_Key{
Key1: Key1,
Key2: Key2,
}
return s.OrderedMultikeyedList.Get(key)
}
// DeleteOrderedMultikeyedList deletes the value with the specified keys from
// the receiver Device. If there is no such element, the
// function is a no-op.
func (s *Device) DeleteOrderedMultikeyedList(Key1 string, Key2 uint64) bool {
key := OrderedMultikeyedList_Key{
Key1: Key1,
Key2: Key2,
}
return s.OrderedMultikeyedList.Delete(key)
}
// OrderedMultikeyedList_OrderedMap is an ordered map that represents the "ordered-by user"
// list elements at /ctestschema-rootmod/ordered-multikeyed-lists/ordered-multikeyed-list.
type OrderedMultikeyedList_OrderedMap struct {
keys []OrderedMultikeyedList_Key
valueMap map[OrderedMultikeyedList_Key]*OrderedMultikeyedList
}
// IsYANGOrderedList ensures that OrderedMultikeyedList_OrderedMap implements the
// ygot.GoOrderedMap interface.
func (*OrderedMultikeyedList_OrderedMap) IsYANGOrderedList() {}
// init initializes any uninitialized values.
func (o *OrderedMultikeyedList_OrderedMap) init() {
if o == nil {
return
}
if o.valueMap == nil {
o.valueMap = map[OrderedMultikeyedList_Key]*OrderedMultikeyedList{}
}
}
// Keys returns a copy of the list's keys.
func (o *OrderedMultikeyedList_OrderedMap) Keys() []OrderedMultikeyedList_Key {
if o == nil {
return nil
}
return append([]OrderedMultikeyedList_Key{}, o.keys...)
}
// Values returns the current set of the list's values in order.
func (o *OrderedMultikeyedList_OrderedMap) Values() []*OrderedMultikeyedList {
if o == nil {
return nil
}
var values []*OrderedMultikeyedList
for _, key := range o.keys {
values = append(values, o.valueMap[key])
}
return values
}
// Len returns a size of OrderedMultikeyedList_OrderedMap
func (o *OrderedMultikeyedList_OrderedMap) Len() int {
if o == nil {
return 0
}
return len(o.keys)
}
// Get returns the value corresponding to the key. If the key is not found, nil
// is returned.
func (o *OrderedMultikeyedList_OrderedMap) Get(key OrderedMultikeyedList_Key) *OrderedMultikeyedList {
if o == nil {
return nil
}
val, _ := o.valueMap[key]
return val
}
// Delete deletes an element.
func (o *OrderedMultikeyedList_OrderedMap) Delete(key OrderedMultikeyedList_Key) bool {
if o == nil {
return false
}
if _, ok := o.valueMap[key]; !ok {
return false
}
for i, k := range o.keys {
if k == key {
o.keys = append(o.keys[:i], o.keys[i+1:]...)
delete(o.valueMap, key)
return true
}
}
return false
}
// Append appends a OrderedMultikeyedList, returning an error if the key
// already exists in the ordered list or if the key is unspecified.
func (o *OrderedMultikeyedList_OrderedMap) Append(v *OrderedMultikeyedList) error {
if o == nil {
return fmt.Errorf("nil ordered map, cannot append OrderedMultikeyedList")
}
if v == nil {
return fmt.Errorf("nil OrderedMultikeyedList")
}
if v.Key1 == nil {
return fmt.Errorf("invalid nil key for Key1")
}
if v.Key2 == nil {
return fmt.Errorf("invalid nil key for Key2")
}
key := OrderedMultikeyedList_Key{
Key1: *v.Key1,
Key2: *v.Key2,
}
if _, ok := o.valueMap[key]; ok {
return fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
o.init()
o.valueMap[key] = v
return nil
}
// AppendNew creates and appends a new OrderedMultikeyedList, returning the
// newly-initialized v. It returns an error if the v already exists.
func (o *OrderedMultikeyedList_OrderedMap) AppendNew(Key1 string, Key2 uint64) (*OrderedMultikeyedList, error) {
if o == nil {
return nil, fmt.Errorf("nil ordered map, cannot append OrderedMultikeyedList")
}
key := OrderedMultikeyedList_Key{
Key1: Key1,
Key2: Key2,
}
if _, ok := o.valueMap[key]; ok {
return nil, fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
newElement := &OrderedMultikeyedList{
Key1: &Key1,
Key2: &Key2,
}
o.init()
o.valueMap[key] = newElement
return newElement, nil
}
// PopulateDefaults recursively populates unset leaf fields in the Device
// with default values as specified in the YANG schema, instantiating any nil
// container fields.
func (t *Device) PopulateDefaults() {
if t == nil {
return
}
ygot.BuildEmptyTree(t)
t.OtherData.PopulateDefaults()
for _, e := range t.UnorderedList {
e.PopulateDefaults()
}
for _, e := range t.OrderedList.Values() {
e.PopulateDefaults()
}
for _, e := range t.OrderedMultikeyedList.Values() {
e.PopulateDefaults()
}
}
// Validate validates s against the YANG schema corresponding to its type.
func (t *Device) ΛValidate(opts ...ygot.ValidationOption) error {
if err := ytypes.Validate(SchemaTree["Device"], t, opts...); err != nil {
return err
}
return nil
}
// Validate validates s against the YANG schema corresponding to its type.
func (t *Device) Validate(opts ...ygot.ValidationOption) error {
return t.ΛValidate(opts...)
}
// ΛEnumTypeMap returns a map, keyed by YANG schema path, of the enumerated types
// that are included in the generated code.
func (t *Device) ΛEnumTypeMap() map[string][]reflect.Type { return ΛEnumTypes }
// ΛBelongingModule returns the name of the module that defines the namespace
// of Device.
func (*Device) ΛBelongingModule() string {
return ""
}
// OrderedList represents the /ctestschema/ordered-lists/ordered-list YANG schema element.
type OrderedList struct {
ΛMetadata []ygot.Annotation `path:"@" ygotAnnotation:"true"`
Key *string `path:"config/key|key" module:"ctestschema/ctestschema|ctestschema" shadow-path:"state/key|key" shadow-module:"ctestschema/ctestschema|ctestschema"`
ΛKey []ygot.Annotation `path:"config/@key|@key" ygotAnnotation:"true"`
OrderedList *OrderedList_OrderedList_OrderedMap `path:"ordered-lists/ordered-list" module:"ctestschema/ctestschema"`
ΛOrderedList []ygot.Annotation `path:"ordered-lists/@ordered-list" ygotAnnotation:"true"`
ParentKey *string `path:"state/parent-key" module:"ctestschema/ctestschema"`
ΛParentKey []ygot.Annotation `path:"state/@parent-key" ygotAnnotation:"true"`
RoValue *string `path:"state/ro-value" module:"ctestschema/ctestschema"`
ΛRoValue []ygot.Annotation `path:"state/@ro-value" ygotAnnotation:"true"`
Value *string `path:"config/value" module:"ctestschema/ctestschema" shadow-path:"state/value" shadow-module:"ctestschema/ctestschema"`
ΛValue []ygot.Annotation `path:"config/@value" ygotAnnotation:"true"`
}
// IsYANGGoStruct ensures that OrderedList implements the yang.GoStruct
// interface. This allows functions that need to handle this struct to
// identify it as being generated by ygen.
func (*OrderedList) IsYANGGoStruct() {}
// GetKey retrieves the value of the leaf Key from the OrderedList
// struct. If the field is unset but has a default value in the YANG schema,
// then the default value will be returned.
// Caution should be exercised whilst using this method since when without a
// default value, it will return the Go zero value if the field is explicitly
// unset. If the caller explicitly does not care if Key is set, it can
// safely use t.GetKey() to retrieve the value. In the case that the
// caller has different actions based on whether the leaf is set or unset, it
// should use 'if t.Key == nil' before retrieving the leaf's value.
func (t *OrderedList) GetKey() string {
if t == nil || t.Key == nil {
return ""
}
return *t.Key
}
// GetParentKey retrieves the value of the leaf ParentKey from the OrderedList
// struct. If the field is unset but has a default value in the YANG schema,
// then the default value will be returned.
// Caution should be exercised whilst using this method since when without a
// default value, it will return the Go zero value if the field is explicitly
// unset. If the caller explicitly does not care if ParentKey is set, it can
// safely use t.GetParentKey() to retrieve the value. In the case that the
// caller has different actions based on whether the leaf is set or unset, it
// should use 'if t.ParentKey == nil' before retrieving the leaf's value.
func (t *OrderedList) GetParentKey() string {
if t == nil || t.ParentKey == nil {
return ""
}
return *t.ParentKey
}
// GetRoValue retrieves the value of the leaf RoValue from the OrderedList
// struct. If the field is unset but has a default value in the YANG schema,
// then the default value will be returned.
// Caution should be exercised whilst using this method since when without a
// default value, it will return the Go zero value if the field is explicitly
// unset. If the caller explicitly does not care if RoValue is set, it can
// safely use t.GetRoValue() to retrieve the value. In the case that the
// caller has different actions based on whether the leaf is set or unset, it
// should use 'if t.RoValue == nil' before retrieving the leaf's value.
func (t *OrderedList) GetRoValue() string {
if t == nil || t.RoValue == nil {
return ""
}
return *t.RoValue
}
// GetValue retrieves the value of the leaf Value from the OrderedList
// struct. If the field is unset but has a default value in the YANG schema,
// then the default value will be returned.
// Caution should be exercised whilst using this method since when without a
// default value, it will return the Go zero value if the field is explicitly
// unset. If the caller explicitly does not care if Value is set, it can
// safely use t.GetValue() to retrieve the value. In the case that the
// caller has different actions based on whether the leaf is set or unset, it
// should use 'if t.Value == nil' before retrieving the leaf's value.
func (t *OrderedList) GetValue() string {
if t == nil || t.Value == nil {
return "default-value"
}
return *t.Value
}
// GetOrCreateOrderedListMap returns the ordered map field
// OrderedList from OrderedList.
//
// It initializes the field if not already initialized.
func (s *OrderedList) GetOrCreateOrderedListMap() *OrderedList_OrderedList_OrderedMap {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedList_OrderedMap{}
}
return s.OrderedList
}
// AppendNewOrderedList creates a new entry in the OrderedList
// ordered map of the OrderedList struct. The keys of the list are
// populated from the input arguments.
func (s *OrderedList) AppendNewOrderedList(Key string) (*OrderedList_OrderedList, error) {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedList_OrderedMap{}
}
return s.OrderedList.AppendNew(Key)
}
// AppendOrderedList appends the supplied OrderedList_OrderedList struct
// to the list OrderedList of OrderedList. If the key value(s)
// specified in the supplied OrderedList_OrderedList already exist in the list, an
// error is returned.
func (s *OrderedList) AppendOrderedList(v *OrderedList_OrderedList) error {
if s.OrderedList == nil {
s.OrderedList = &OrderedList_OrderedList_OrderedMap{}
}
return s.OrderedList.Append(v)
}
// GetOrderedList retrieves the value with the specified key from the
// OrderedList map field of OrderedList. If the receiver
// is nil, or the specified key is not present in the list, nil is returned
// such that Get* methods may be safely chained.
func (s *OrderedList) GetOrderedList(Key string) *OrderedList_OrderedList {
if s == nil {
return nil
}
key := Key
return s.OrderedList.Get(key)
}
// DeleteOrderedList deletes the value with the specified keys from
// the receiver OrderedList. If there is no such element, the
// function is a no-op.
func (s *OrderedList) DeleteOrderedList(Key string) bool {
key := Key
return s.OrderedList.Delete(key)
}
// OrderedList_OrderedList_OrderedMap is an ordered map that represents the "ordered-by user"
// list elements at /ctestschema/ordered-lists/ordered-list/ordered-lists/ordered-list.
type OrderedList_OrderedList_OrderedMap struct {
keys []string
valueMap map[string]*OrderedList_OrderedList
}
// IsYANGOrderedList ensures that OrderedList_OrderedList_OrderedMap implements the
// ygot.GoOrderedMap interface.
func (*OrderedList_OrderedList_OrderedMap) IsYANGOrderedList() {}
// init initializes any uninitialized values.
func (o *OrderedList_OrderedList_OrderedMap) init() {
if o == nil {
return
}
if o.valueMap == nil {
o.valueMap = map[string]*OrderedList_OrderedList{}
}
}
// Keys returns a copy of the list's keys.
func (o *OrderedList_OrderedList_OrderedMap) Keys() []string {
if o == nil {
return nil
}
return append([]string{}, o.keys...)
}
// Values returns the current set of the list's values in order.
func (o *OrderedList_OrderedList_OrderedMap) Values() []*OrderedList_OrderedList {
if o == nil {
return nil
}
var values []*OrderedList_OrderedList
for _, key := range o.keys {
values = append(values, o.valueMap[key])
}
return values
}
// Len returns a size of OrderedList_OrderedList_OrderedMap
func (o *OrderedList_OrderedList_OrderedMap) Len() int {
if o == nil {
return 0
}
return len(o.keys)
}
// Get returns the value corresponding to the key. If the key is not found, nil
// is returned.
func (o *OrderedList_OrderedList_OrderedMap) Get(key string) *OrderedList_OrderedList {
if o == nil {
return nil
}
val, _ := o.valueMap[key]
return val
}
// Delete deletes an element.
func (o *OrderedList_OrderedList_OrderedMap) Delete(key string) bool {
if o == nil {
return false
}
if _, ok := o.valueMap[key]; !ok {
return false
}
for i, k := range o.keys {
if k == key {
o.keys = append(o.keys[:i], o.keys[i+1:]...)
delete(o.valueMap, key)
return true
}
}
return false
}
// Append appends a OrderedList_OrderedList, returning an error if the key
// already exists in the ordered list or if the key is unspecified.
func (o *OrderedList_OrderedList_OrderedMap) Append(v *OrderedList_OrderedList) error {
if o == nil {
return fmt.Errorf("nil ordered map, cannot append OrderedList_OrderedList")
}
if v == nil {
return fmt.Errorf("nil OrderedList_OrderedList")
}
if v.Key == nil {
return fmt.Errorf("invalid nil key received for Key")
}
key := *v.Key
if _, ok := o.valueMap[key]; ok {
return fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
o.init()
o.valueMap[key] = v
return nil
}
// AppendNew creates and appends a new OrderedList_OrderedList, returning the
// newly-initialized v. It returns an error if the v already exists.
func (o *OrderedList_OrderedList_OrderedMap) AppendNew(Key string) (*OrderedList_OrderedList, error) {
if o == nil {
return nil, fmt.Errorf("nil ordered map, cannot append OrderedList_OrderedList")
}
key := Key
if _, ok := o.valueMap[key]; ok {
return nil, fmt.Errorf("duplicate key for list Statement %v", key)
}
o.keys = append(o.keys, key)
newElement := &OrderedList_OrderedList{
Key: &Key,
}
o.init()
o.valueMap[key] = newElement
return newElement, nil
}
// PopulateDefaults recursively populates unset leaf fields in the OrderedList
// with default values as specified in the YANG schema, instantiating any nil
// container fields.
func (t *OrderedList) PopulateDefaults() {
if t == nil {
return
}
ygot.BuildEmptyTree(t)
if t.Value == nil {
var v string = "default-value"
t.Value = &v
}
for _, e := range t.OrderedList.Values() {
e.PopulateDefaults()
}
}
// ΛListKeyMap returns the keys of the OrderedList struct, which is a YANG list entry.
func (t *OrderedList) ΛListKeyMap() (map[string]interface{}, error) {
if t.Key == nil {
return nil, fmt.Errorf("nil value for key Key")
}
return map[string]interface{}{
"key": *t.Key,
}, nil
}
// Validate validates s against the YANG schema corresponding to its type.
func (t *OrderedList) ΛValidate(opts ...ygot.ValidationOption) error {
if err := ytypes.Validate(SchemaTree["OrderedList"], t, opts...); err != nil {