forked from CESNET/libyang-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_schema.hpp
735 lines (613 loc) · 12.9 KB
/
example_schema.hpp
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
/*
* Copyright (C) 2021 CESNET, https://photonics.cesnet.cz/
*
* Written by Václav Kubernát <[email protected]>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <string>
using namespace std::literals;
const auto example_schema = R"(
module example-schema {
yang-version 1.1;
namespace "http://example.com/coze";
prefix coze;
leaf dummy {
type string;
}
leaf leafInt8 {
description "A 8-bit integer leaf.";
type int8;
}
leaf leafInt16 {
description "A 16-bit integer leaf.";
type int16;
}
leaf leafInt32 {
description "A 32-bit integer leaf.";
type int32;
}
leaf leafInt64 {
description "A 64-bit integer leaf.";
type int64;
}
leaf leafUInt8 {
description "A 8-bit unsigned integer leaf.";
type uint8;
}
leaf leafUInt16 {
description "A 16-bit unsigned integer leaf.";
type uint16;
}
leaf leafUInt32 {
description "A 32-bit unsigned integer leaf.";
type uint32;
}
leaf leafUInt64 {
description "A 64-bit unsigned integer leaf.";
type uint64;
}
leaf leafBool {
description "A boolean.";
type boolean;
}
leaf leafString {
description "A string.";
type string;
}
leaf leafEmpty {
description "An `empty` leaf.";
type empty;
}
leaf leafDecimal {
description "A decimal value.";
type decimal64 {
fraction-digits 5;
}
}
leaf leafBinary {
description "A binary value.";
type binary;
}
leaf intOrString {
description "An int or a string.";
type union {
type int32;
type string;
}
}
list person {
key 'name';
leaf name {
type string;
}
notification event {
leaf description {
type string;
}
}
action poke { }
}
leaf bossPerson {
type leafref {
path '../person/name';
}
}
leaf targetInstance {
type instance-identifier;
}
leaf NOtargetInstance {
type instance-identifier {
require-instance false;
}
}
leaf active {
type boolean;
}
leaf flagBits {
type bits {
bit carry;
bit sign;
bit overflow;
}
}
leaf pizzaSize {
type enumeration {
enum large;
enum medium;
enum small;
}
}
identity food {
}
identity fruit {
base "food";
}
identity pizza {
base "food";
}
identity hawaii {
base "pizza";
}
typedef foodTypedef {
type identityref {
base food;
}
}
leaf leafFoodTypedef {
type foodTypedef;
}
leaf pwnedUnion {
type union {
type decimal64 {
fraction-digits 1;
}
type leafref {
path '../person/name';
}
type union {
type instance-identifier;
type identityref {
base food;
}
type union {
type binary {
length 1;
}
type decimal64 {
fraction-digits 3;
}
}
}
}
}
container first {
container second {
container third {
container fourth {
leaf fifth {
type string;
}
}
}
}
}
container presenceContainer {
presence true;
}
container bigTree {
container one {
leaf myLeaf {
type string;
}
}
container two {
list myList {
key 'thekey';
leaf thekey {
type int32;
}
}
}
}
typedef myTypeInt {
type int32;
description "An int32 typedef.";
}
leaf typedefedLeafInt {
type myTypeInt;
}
rpc myRpc {
input {
leaf inputLeaf {
type string;
}
}
output {
leaf outputLeaf {
type string;
}
leaf another {
type string;
}
}
}
anydata myData {
}
anyxml ax {
}
notification event {
description "Example notification event.";
leaf event-class {
type string;
description "Event class identifier.";
}
}
})"s;
const auto example_schema2 = R"(
module example-schema2 {
yang-version 1.1;
namespace "http://example2.com/";
prefix lol;
container contWithTwoNodes {
presence true;
leaf one {
type int32;
}
leaf two {
type int32;
}
}
}
)"s;
const auto example_schema3 = R"(
module example-schema3 {
yang-version 1.1;
namespace "http://example3.com/";
prefix rofl;
leaf-list values {
ordered-by user;
type int32;
}
leaf-list valuesOrderedBySystem {
type int32;
}
list person {
key 'name';
leaf name {
type string;
}
}
leaf leafWithDefault {
type string;
default "AHOJ";
}
}
)"s;
const auto example_schema4 = R"(
module example-schema4 {
yang-version 1.1;
namespace "http://example3.com/";
prefix yay;
import example-schema {
prefix "coze";
}
identity pizza {
base "coze:pizza";
}
identity carpaccio {
base "coze:pizza";
}
identity another-carpaccio {
base "coze:pizza";
base "pizza";
}
}
)"s;
const auto example_schema5 = R"(
module example-schema5 {
yang-version 1.1;
namespace "http://example.com/5";
prefix e5;
container x {
leaf x_a {
type int32;
}
container x_b {
leaf x_b_leaf {
type int32;
}
container x_b_cont1 {
leaf aaa {
type int32;
}
}
}
}
}
)"s;
const auto type_module = R"(
module type_module {
yang-version 1.1;
namespace "http://example.com/custom-prefix";
prefix custom-prefix;
anydata anydataBasic {
}
anydata anydataWithMandatoryChild {
mandatory true;
}
anyxml anyxmlBasic {
}
anyxml anyxmlWithMandatoryChild {
mandatory true;
}
leaf leafBinary {
type binary;
}
leaf leafBits {
type bits {
bit one;
bit two;
bit three;
}
}
leaf leafEnum {
type enumeration {
enum A {
value 2;
}
enum B {
value 5;
}
}
}
leaf leafEnum2 {
type enumeration {
enum A;
enum B;
}
}
leaf leafNumber {
type int32;
}
leaf leafRef {
type leafref {
path "/custom-prefix:listAdvancedWithOneKey/lol";
}
}
leaf leafRefRelaxed {
type leafref {
path "/custom-prefix:listAdvancedWithOneKey/lol";
require-instance false;
}
}
leaf leafString {
type string;
}
leaf leafUnion {
type union {
type string;
type int32;
type boolean;
}
}
identity food;
identity fruit {
base food;
}
identity apple {
base fruit;
}
identity meat {
base food;
}
identity fruit-and-meat-mix {
base fruit;
base meat;
}
leaf meal {
type identityref {
base food;
}
}
leaf leafWithConfigFalse {
config false;
type string;
}
leaf leafWithDefaultValue {
type string;
default "custom-prefix";
}
leaf leafWithDescription {
type string;
description "This is a description.";
}
leaf leafWithMandatoryTrue {
mandatory true;
type string;
}
leaf leafWithStatusDeprecated {
status deprecated;
type string;
}
leaf leafWithStatusObsolete {
status obsolete;
type string;
}
leaf leafWithUnits {
type int32;
units "s";
}
leaf iid-valid {
type instance-identifier;
}
leaf iid-relaxed {
type instance-identifier {
require-instance false;
}
}
leaf-list leafListBasic {
type string;
ordered-by user;
}
leaf-list leafListWithMinMaxElements {
type int32;
min-elements 1;
max-elements 5;
}
leaf-list leafListWithUnits {
type int32;
units "s";
}
list listBasic {
key 'primary-key';
ordered-by user;
leaf primary-key {
type string;
}
}
list listAdvancedWithOneKey {
key 'lol';
leaf lol {
type string;
}
leaf notKey1 {
type string {
length "10 .. 20 | 50 .. 100 | 255";
pattern "fo+";
pattern "XXX" {
description "yay";
error-app-tag "x-XXX-failed";
error-message "hard to fail this one";
modifier invert-match;
}
}
}
leaf notKey2 {
type string {
length "min .. max" {
description "yay";
error-app-tag "x-XXX-failed";
error-message "hard to fail this one";
}
}
}
leaf notKey3 {
type binary {
length "10 .. 20 | 50 .. 100 | 255";
}
}
leaf notKey4 {
type binary {
length "min .. max" {
description "yay";
error-app-tag "x-XXX-failed";
error-message "hard to fail this one";
}
}
}
}
list listAdvancedWithTwoKey {
key 'first second';
leaf first {
type string;
}
leaf second {
type string;
}
}
list listWithMinMaxElements {
key 'primary-key';
min-elements 1;
max-elements 5;
leaf primary-key {
type string;
}
}
container numeric {
leaf i8 {
type int8 {
range "-20..-10 | -5 | 10..100" {
description "yay";
error-app-tag "this-is-a-nasty-limit";
error-message "flip a coin next time";
}
}
}
leaf i16 {
type int16 {
range "253..254";
}
}
leaf i32 {
type int32 {
range "253..254";
}
}
leaf i64 {
type int64 {
range "253..254";
}
}
leaf deci {
type decimal64 {
fraction-digits 6;
range "-123.456..666.042";
}
}
leaf deci1 {
type decimal64 {
fraction-digits 1;
}
}
leaf u8 {
type uint8 {
range "253..254";
}
}
leaf u16 {
type uint16 {
range "253..254";
}
}
leaf u32 {
type uint32 {
range "253..254";
}
}
leaf u64 {
type uint64 {
range "253..254";
}
}
}
grouping grp-with-when {
leaf x2 {
when "666";
type string;
}
action aaa {
}
}
container container {
when "1" {
description "always on";
}
container x {
when "2";
leaf x1 {
type string;
}
uses grp-with-when {
when "3";
}
}
container y {
}
container z {
leaf z1 {
type string;
}
}
}
container containerWithMandatoryChild {
leaf leafWithMandatoryTrue {
mandatory true;
type string;
}
}
}
)"s;
const auto with_inet_types_module = R"(
module with-inet-types {
yang-version 1.1;
prefix "wit";
namespace "wit";
import ietf-inet-types {
prefix "inet";
}
leaf hostname {
type inet:host;
}
}
)"s;