-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathdata.py
More file actions
1464 lines (1276 loc) · 46.9 KB
/
data.py
File metadata and controls
1464 lines (1276 loc) · 46.9 KB
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
# Copyright (c) 2020 6WIND S.A.
# Copyright (c) 2021 RACOM s.r.o.
# SPDX-License-Identifier: MIT
import logging
from typing import IO, Any, Dict, Iterator, Optional, Tuple, Union
from _libyang import ffi, lib
from .keyed_list import KeyedList
from .schema import (
Module,
SContainer,
SLeaf,
SLeafList,
SList,
SNode,
SNotif,
SRpc,
Type,
)
from .util import DataType, IOType, LibyangError, c2str, ly_array_iter, str2c
LOG = logging.getLogger(__name__)
# -------------------------------------------------------------------------------------
def implicit_flags(
no_config: bool = False,
no_defaults: bool = False,
no_state: bool = False,
output: bool = False,
) -> int:
flags = 0
if no_config:
flags |= lib.LYD_IMPLICIT_NO_CONFIG
if no_state:
flags |= lib.LYD_IMPLICIT_NO_STATE
if no_defaults:
flags |= lib.LYD_IMPLICIT_NO_DEFAULTS
if output:
flags |= lib.LYD_IMPLICIT_OUTPUT
return flags
# -------------------------------------------------------------------------------------
def printer_flags(
with_siblings: bool = False,
pretty: bool = True,
keep_empty_containers: bool = False,
trim_default_values: bool = False,
include_implicit_defaults: bool = False,
) -> int:
flags = 0
if with_siblings:
flags |= lib.LYD_PRINT_SIBLINGS
if not pretty:
flags |= lib.LYD_PRINT_SHRINK
if keep_empty_containers:
flags |= lib.LYD_PRINT_EMPTY_CONT
if trim_default_values:
flags |= lib.LYD_PRINT_WD_TRIM
if include_implicit_defaults:
flags |= lib.LYD_PRINT_WD_ALL
return flags
# -------------------------------------------------------------------------------------
def data_format(fmt_string: str) -> int:
if fmt_string == "json":
return lib.LYD_JSON
if fmt_string == "xml":
return lib.LYD_XML
if fmt_string == "lyb":
return lib.LYD_LYB
raise ValueError("unknown data format: %r" % fmt_string)
# -------------------------------------------------------------------------------------
def newval_flags(
rpc_output: bool = False,
store_only: bool = False,
bin_value: bool = False,
canon_value: bool = False,
meta_clear_default: bool = False,
update: bool = False,
opaq: bool = False,
) -> int:
"""
Translate from booleans to newvaloptions flags.
"""
flags = 0
if rpc_output:
flags |= lib.LYD_NEW_VAL_OUTPUT
if store_only:
flags |= lib.LYD_NEW_VAL_STORE_ONLY
if bin_value:
flags |= lib.LYD_NEW_VAL_BIN
if canon_value:
flags |= lib.LYD_NEW_VAL_CANON
if meta_clear_default:
flags |= lib.LYD_NEW_META_CLEAR_DFLT
if update:
flags |= lib.LYD_NEW_PATH_UPDATE
if opaq:
flags |= lib.LYD_NEW_PATH_OPAQ
return flags
# -------------------------------------------------------------------------------------
def parser_flags(
no_state: bool = False,
parse_only: bool = False,
opaq: bool = False,
ordered: bool = False,
strict: bool = False,
store_only: bool = False,
json_null: bool = False,
json_string_datatypes: bool = False,
) -> int:
flags = 0
if no_state:
flags |= lib.LYD_PARSE_NO_STATE
if parse_only:
flags |= lib.LYD_PARSE_ONLY
if opaq:
flags |= lib.LYD_PARSE_OPAQ
if ordered:
flags |= lib.LYD_PARSE_ORDERED
if strict:
flags |= lib.LYD_PARSE_STRICT
if store_only:
flags |= lib.LYD_PARSE_STORE_ONLY
if json_null:
flags |= lib.LYD_PARSE_JSON_NULL
if json_string_datatypes:
flags |= lib.LYD_PARSE_JSON_STRING_DATATYPES
return flags
# -------------------------------------------------------------------------------------
def merge_flags(
defaults: bool = False,
destruct: bool = False,
with_flags: bool = False,
) -> int:
flags = 0
if defaults:
flags |= lib.LYD_MERGE_DEFAULTS
if destruct:
flags |= lib.LYD_MERGE_DESTRUCT
if with_flags:
flags |= lib.LYD_MERGE_WITH_FLAGS
return flags
# -------------------------------------------------------------------------------------
def dup_flags(
no_meta: bool = False,
recursive: bool = False,
with_flags: bool = False,
with_parents: bool = False,
) -> int:
flags = 0
if no_meta:
flags |= lib.LYD_DUP_NO_META
if recursive:
flags |= lib.LYD_DUP_RECURSIVE
if with_flags:
flags |= lib.LYD_DUP_WITH_FLAGS
if with_parents:
flags |= lib.LYD_DUP_WITH_PARENTS
return flags
# -------------------------------------------------------------------------------------
def data_type(dtype: DataType) -> int:
if not isinstance(dtype, DataType):
dtype = DataType(dtype)
return dtype.value
# -------------------------------------------------------------------------------------
def validation_flags(
no_state: bool = False,
validate_present: bool = False,
validate_multi_error: bool = False,
) -> int:
flags = 0
if no_state:
flags |= lib.LYD_VALIDATE_NO_STATE
if validate_present:
flags |= lib.LYD_VALIDATE_PRESENT
if validate_multi_error:
flags |= lib.LYD_VALIDATE_MULTI_ERROR
return flags
def diff_flags(with_defaults: bool = False) -> int:
flags = 0
if with_defaults:
flags |= lib.LYD_DIFF_DEFAULTS
return flags
# -------------------------------------------------------------------------------------
class DNodeAttrs:
__slots__ = ("context", "parent", "cdata", "__dict__")
def __init__(self, context: "libyang.Context", parent: "libyang.DNode"):
self.context = context
self.parent = parent
self.cdata = [] # C type: "struct lyd_attr *"
def get(self, name: str) -> Optional[str]:
for attr_name, attr_value in self:
if attr_name == name:
return attr_value
return None
def set(self, name: str, value: str):
attrs = ffi.new("struct lyd_attr **")
ret = lib.lyd_new_attr(
self.parent.cdata,
ffi.NULL,
str2c(name),
str2c(value),
attrs,
)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot create attr")
self.cdata.append(attrs[0])
def remove(self, name: str):
for attr in self.cdata:
if self._get_attr_name(attr) == name:
lib.lyd_free_attr_single(self.context.cdata, attr)
self.cdata.remove(attr)
break
def __contains__(self, name: str) -> bool:
for attr_name, _ in self:
if attr_name == name:
return True
return False
def __iter__(self) -> Iterator[Tuple[str, str]]:
for attr in self.cdata:
name = self._get_attr_name(attr)
yield (name, c2str(attr.value))
def __len__(self) -> int:
return len(self.cdata)
@staticmethod
def _get_attr_name(cdata) -> str:
if cdata.name.prefix != ffi.NULL:
return f"{c2str(cdata.name.prefix)}:{c2str(cdata.name.name)}"
return c2str(cdata.name.name)
# -------------------------------------------------------------------------------------
class DNode:
"""
Data tree node.
"""
__slots__ = ("context", "cdata", "attributes", "free_func", "__dict__")
def __init__(self, context: "libyang.Context", cdata):
"""
:arg context:
The libyang.Context python object.
:arg cdata:
The pointer to the C structure allocated by libyang.so.
"""
self.context = context
self.cdata = cdata # C type: "struct lyd_node *"
self.attributes = None
self.free_func = None # type: Callable[DNode]
def meta(self) -> Dict[str, str]:
ret = {}
item = self.cdata.meta
while item != ffi.NULL:
ret[c2str(item.name)] = c2str(
lib.lyd_value_get_canonical(
self.context.cdata, ffi.addressof(item.value)
)
)
item = item.next
return ret
def get_meta(self, name: str) -> Optional[str]:
item = self.cdata.meta
while item != ffi.NULL:
if c2str(item.name) == name:
return c2str(
lib.lyd_value_get_canonical(
self.context.cdata, ffi.addressof(item.value)
)
)
item = item.next
return None
def meta_free(self, name: str):
item = self.cdata.meta
while item != ffi.NULL:
if c2str(item.name) == name:
lib.lyd_free_meta_single(item)
break
item = item.next
def new_meta(
self, name: str, value: str, clear_dflt: bool = False, store_only: bool = False
):
flags = newval_flags(meta_clear_default=clear_dflt, store_only=store_only)
ret = lib.lyd_new_meta(
ffi.NULL,
self.cdata,
ffi.NULL,
str2c(name),
str2c(value),
flags,
ffi.NULL,
)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot create meta")
def attrs(self) -> DNodeAttrs:
if not self.attributes:
self.attributes = DNodeAttrs(self.context, self)
return self.attributes
def add_defaults(
self,
no_config: bool = False,
no_defaults: bool = False,
no_state: bool = False,
output: bool = False,
only_node: bool = False,
only_module: Optional[Module] = None,
):
flags = implicit_flags(
no_config=no_config,
no_defaults=no_defaults,
no_state=no_state,
output=output,
)
if only_node:
node_p = ffi.cast("struct lyd_node *", self.cdata)
ret = lib.lyd_new_implicit_tree(node_p, flags, ffi.NULL)
else:
node_p = ffi.new("struct lyd_node **")
node_p[0] = self.cdata
if only_module is not None:
ret = lib.lyd_new_implicit_module(
node_p, only_module.cdata, flags, ffi.NULL
)
else:
ret = lib.lyd_new_implicit_all(
node_p, self.context.cdata, flags, ffi.NULL
)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot get module")
def flags(self):
ret = {"default": False, "when_true": False, "new": False}
if self.cdata.flags & lib.LYD_DEFAULT:
ret["default"] = True
if self.cdata.flags & lib.LYD_WHEN_TRUE:
ret["when_true"] = True
if self.cdata.flags & lib.LYD_NEW:
ret["new"] = True
return ret
def is_default(self) -> bool:
return lib.lyd_is_default(self.cdata)
def set_when(self, value: bool):
if value:
self.cdata.flags |= lib.LYD_WHEN_TRUE
else:
self.cdata.flags &= ~lib.LYD_WHEN_TRUE
def new_path(
self,
path: str,
value: str,
opt_update: bool = False,
opt_output: bool = False,
opt_opaq: bool = False,
opt_bin_value: bool = False,
opt_canon_value: bool = False,
opt_store_only: bool = False,
):
flags = newval_flags(
update=opt_update,
rpc_output=opt_output,
opaq=opt_opaq,
bin_value=opt_bin_value,
canon_value=opt_canon_value,
store_only=opt_store_only,
)
ret = lib.lyd_new_path(
self.cdata, ffi.NULL, str2c(path), str2c(value), flags, ffi.NULL
)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot get module")
def insert_child(self, node):
ret = lib.lyd_insert_child(self.cdata, node.cdata)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot insert node")
def insert_sibling(self, node):
ret = lib.lyd_insert_sibling(self.cdata, node.cdata, ffi.NULL)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot insert sibling")
def insert_after(self, node):
ret = lib.lyd_insert_after(self.cdata, node.cdata)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot insert sibling after")
def insert_before(self, node):
ret = lib.lyd_insert_before(self.cdata, node.cdata)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot insert sibling before")
def name(self) -> str:
return c2str(self.cdata.schema.name)
def module(self) -> Module:
if not self.cdata.schema:
raise self.context.error("cannot get module")
return Module(self.context, self.cdata.schema.module)
def schema(self) -> SNode:
return SNode.new(self.context, self.cdata.schema)
def parent(self) -> Optional["DNode"]:
if not self.cdata.parent:
return None
return self.new(self.context, self.cdata.parent)
def next(self) -> Optional["DNode"]:
if not self.cdata.next:
return None
return self.new(self.context, self.cdata.next)
def prev(self) -> Optional["DNode"]:
if not self.cdata.prev:
return None
return self.new(self.context, self.cdata.prev)
def root(self) -> "DNode":
node = self
while node.parent() is not None:
node = node.parent()
return node
def first_sibling(self) -> "DNode":
n = lib.lyd_first_sibling(self.cdata)
if n == self.cdata:
return self
return self.new(self.context, n)
def siblings(self, include_self: bool = True) -> Iterator["DNode"]:
n = lib.lyd_first_sibling(self.cdata)
while n:
if n == self.cdata:
if include_self:
yield self
else:
yield self.new(self.context, n)
n = n.next
def find_path(self, path: str, output: bool = False):
node = ffi.new("struct lyd_node **")
ret = lib.lyd_find_path(self.cdata, str2c(path), output, node)
if ret == lib.LY_SUCCESS:
return DNode.new(self.context, node[0])
return None
def find_one(self, xpath: str) -> Optional["DNode"]:
try:
return next(self.find_all(xpath))
except StopIteration:
return None
def find_all(self, xpath: str) -> Iterator["DNode"]:
node_set = ffi.new("struct ly_set **")
ret = lib.lyd_find_xpath(self.cdata, str2c(xpath), node_set)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot find path: %s", xpath)
node_set = node_set[0]
try:
for i in range(node_set.count):
n = DNode.new(self.context, node_set.dnodes[i])
yield n
finally:
lib.ly_set_free(node_set, ffi.NULL)
def eval_xpath(self, xpath: str):
lbool = ffi.new("ly_bool *")
ret = lib.lyd_eval_xpath(self.cdata, str2c(xpath), lbool)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot eva xpath: %s", xpath)
if lbool[0]:
return True
return False
def path(self) -> str:
return self._get_path(self.cdata)
def validate(
self,
no_state: bool = False,
validate_present: bool = False,
rpc: bool = False,
rpcreply: bool = False,
notification: bool = False,
dep_tree: Optional["DNode"] = None,
) -> None:
dtype = None
if rpc:
dtype = DataType.RPC_YANG
elif rpcreply:
dtype = DataType.REPLY_YANG
elif notification:
dtype = DataType.NOTIF_YANG
if dtype is None:
self.validate_all(no_state, validate_present)
else:
self.validate_op(dtype, dep_tree)
def validate_all(
self,
no_state: bool = False,
validate_present: bool = False,
) -> None:
if self.cdata.parent:
raise self.context.error("validation is only supported on top-level nodes")
flags = validation_flags(
no_state=no_state,
validate_present=validate_present,
)
node_p = ffi.new("struct lyd_node **")
node_p[0] = self.cdata
ret = lib.lyd_validate_all(node_p, self.context.cdata, flags, ffi.NULL)
if ret != lib.LY_SUCCESS:
raise self.context.error("validation failed")
def validate_op(
self,
dtype: DataType,
dep_tree: Optional["DNode"] = None,
) -> None:
dtype = data_type(dtype)
ret = lib.lyd_validate_op(
self.cdata,
ffi.NULL if dep_tree is None else dep_tree.cdata,
dtype,
ffi.NULL,
)
if ret != lib.LY_SUCCESS:
raise self.context.error("validation failed")
def diff(
self,
other: "DNode",
no_siblings: bool = False,
with_defaults: bool = False,
) -> "DNode":
flags = diff_flags(with_defaults=with_defaults)
node_p = ffi.new("struct lyd_node **")
if no_siblings:
ret = lib.lyd_diff_tree(self.cdata, other.cdata, flags, node_p)
else:
ret = lib.lyd_diff_siblings(self.cdata, other.cdata, flags, node_p)
if ret != lib.LY_SUCCESS:
raise self.context.error("diff error")
if node_p[0] == ffi.NULL:
return None
return self.new(self.context, node_p[0])
def diff_apply(self, diff_node: "DNode") -> None:
node_p = ffi.new("struct lyd_node **")
node_p[0] = self.cdata
ret = lib.lyd_diff_apply_all(node_p, diff_node.cdata)
if ret != lib.LY_SUCCESS:
raise self.context.error("apply diff error")
def duplicate(
self,
with_siblings: bool = False,
no_meta: bool = False,
recursive: bool = False,
with_flags: bool = False,
with_parents: bool = False,
parent: Optional["DNode"] = None,
) -> "DNode":
flags = dup_flags(
no_meta=no_meta,
recursive=recursive,
with_flags=with_flags,
with_parents=with_parents,
)
if parent is not None:
parent = parent.cdata
else:
parent = ffi.NULL
node = ffi.new("struct lyd_node **")
if with_siblings:
lib.lyd_dup_siblings(self.cdata, parent, flags, node)
else:
lib.lyd_dup_single(self.cdata, parent, flags, node)
return DNode.new(self.context, node[0])
def merge_module(
self,
source: "DNode",
defaults: bool = False,
destruct: bool = False,
with_flags: bool = False,
) -> None:
flags = merge_flags(defaults=defaults, destruct=destruct, with_flags=with_flags)
node_p = ffi.new("struct lyd_node **")
node_p[0] = self.cdata
ret = lib.lyd_merge_module(
node_p, source.cdata, ffi.NULL, ffi.NULL, ffi.NULL, flags
)
if ret != lib.LY_SUCCESS:
raise self.context.error("merge failed")
def merge(
self,
source: "DNode",
with_siblings: bool = False,
defaults: bool = False,
destruct: bool = False,
with_flags: bool = False,
) -> None:
flags = merge_flags(defaults=defaults, destruct=destruct, with_flags=with_flags)
node_p = ffi.new("struct lyd_node **")
node_p[0] = self.cdata
if with_siblings:
ret = lib.lyd_merge_siblings(node_p, source.cdata, flags)
else:
ret = lib.lyd_merge_tree(node_p, source.cdata, flags)
if ret != lib.LY_SUCCESS:
raise self.context.error("merge failed")
self.cdata = node_p[0]
def iter_tree(self) -> Iterator["DNode"]:
n = next_n = self.cdata
while n != ffi.NULL:
yield self.new(self.context, n)
next_n = lib.lyd_child(n)
if next_n == ffi.NULL:
if n == self.cdata:
break
next_n = n.next
while next_n == ffi.NULL:
n = n.parent
if n.parent == self.cdata.parent:
break
next_n = n.next
n = next_n
def print(
self,
fmt: str,
out_type: IOType,
out_target: Union[IO, str, None] = None,
with_siblings: bool = False,
pretty: bool = True,
keep_empty_containers: bool = False,
trim_default_values: bool = False,
include_implicit_defaults: bool = False,
) -> Union[str, bytes]:
flags = printer_flags(
pretty=pretty,
keep_empty_containers=keep_empty_containers,
trim_default_values=trim_default_values,
include_implicit_defaults=include_implicit_defaults,
)
fmt = data_format(fmt)
out_data = ffi.new("struct ly_out **")
if out_type == IOType.FD:
raise NotImplementedError
if out_type == IOType.FILE:
raise NotImplementedError
if out_type == IOType.FILEPATH:
raise NotImplementedError
if out_type != IOType.MEMORY:
raise ValueError("no input specified")
buf = ffi.new("char **")
ret = lib.ly_out_new_memory(buf, 0, out_data)
if ret != lib.LY_SUCCESS:
raise self.context.error("failed to initialize output target")
if with_siblings:
ret = lib.lyd_print_all(out_data[0], self.cdata, fmt, flags)
else:
ret = lib.lyd_print_tree(out_data[0], self.cdata, fmt, flags)
lib.ly_out_free(out_data[0], ffi.NULL, 0)
if ret != lib.LY_SUCCESS:
raise self.context.error("failed to write data")
return c2str(buf[0], decode=True)
def print_mem(
self,
fmt: str,
with_siblings: bool = False,
pretty: bool = True,
keep_empty_containers: bool = False,
trim_default_values: bool = False,
include_implicit_defaults: bool = False,
) -> Union[str, bytes]:
flags = printer_flags(
with_siblings=with_siblings,
pretty=pretty,
keep_empty_containers=keep_empty_containers,
trim_default_values=trim_default_values,
include_implicit_defaults=include_implicit_defaults,
)
buf = ffi.new("char **")
fmt = data_format(fmt)
ret = lib.lyd_print_mem(buf, self.cdata, fmt, flags)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot print node")
try:
if fmt == lib.LYD_LYB:
# binary format, do not convert to unicode
return c2str(buf[0], decode=False)
return c2str(buf[0], decode=True)
finally:
lib.free(buf[0])
def print_file(
self,
fileobj: IO,
fmt: str,
with_siblings: bool = False,
pretty: bool = True,
keep_empty_containers: bool = False,
trim_default_values: bool = False,
include_implicit_defaults: bool = False,
) -> None:
flags = printer_flags(
with_siblings=with_siblings,
pretty=pretty,
keep_empty_containers=keep_empty_containers,
trim_default_values=trim_default_values,
include_implicit_defaults=include_implicit_defaults,
)
fmt = data_format(fmt)
out = ffi.new("struct ly_out **")
ret = lib.ly_out_new_fd(fileobj.fileno(), out)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot allocate output data")
if with_siblings:
ret = lib.lyd_print_all(out[0], self.cdata, fmt, flags)
else:
ret = lib.lyd_print_tree(out[0], self.cdata, fmt, flags)
if ret != lib.LY_SUCCESS:
raise self.context.error("cannot print node")
def should_print(
self,
include_implicit_defaults: bool = False,
trim_default_values: bool = False,
keep_empty_containers: bool = False,
) -> bool:
"""
Check if a node should be "printed".
:arg bool include_implicit_defaults:
Include implicit default nodes.
:arg bool trim_default_values:
Exclude nodes with the value equal to their default value.
:arg bool keep_empty_containers:
Preserve empty non-presence containers.
"""
flags = printer_flags(
include_implicit_defaults=include_implicit_defaults,
trim_default_values=trim_default_values,
keep_empty_containers=keep_empty_containers,
)
return bool(lib.lyd_node_should_print(self.cdata, flags))
def print_dict(
self,
strip_prefixes: bool = True,
absolute: bool = True,
with_siblings: bool = False,
include_implicit_defaults: bool = False,
trim_default_values: bool = False,
keep_empty_containers: bool = False,
) -> Dict[str, Any]:
"""
Convert a DNode object to a python dictionary.
The format is inspired by the YANG JSON format described in :rfc:`7951` but has
some differences:
* ``int64`` and ``uint64`` values are represented by python ``int`` values
instead of string values.
* ``decimal64`` values are represented by python ``float`` values instead of
string values.
* ``empty`` values are represented by python ``None`` values instead of
``[None]`` list instances. To check if an ``empty`` leaf is set in a
container, you should use the idiomatic ``if "foo" in container:`` construct.
:arg bool strip_prefixes:
If True (the default), module prefixes are stripped from dictionary keys. If
False, dictionary keys are in the form ``<module>:<name>``.
:arg bool absolute:
If True (the default), always return a dictionary containing the complete
tree starting from the root.
:arg bool with_siblings:
If True, include the node's siblings.
:arg bool include_implicit_defaults:
Include implicit default nodes.
:arg bool trim_default_values:
Exclude nodes with the value equal to their default value.
:arg bool keep_empty_containers:
Preserve empty non-presence containers.
"""
flags = printer_flags(
include_implicit_defaults=include_implicit_defaults,
trim_default_values=trim_default_values,
keep_empty_containers=keep_empty_containers,
)
name_cache = {}
def _node_name(node):
name = name_cache.get(node.schema)
if name is None:
if strip_prefixes:
name = c2str(node.schema.name)
else:
mod = node.schema.module
name = "%s:%s" % (c2str(mod.name), c2str(node.schema.name))
name_cache[node.schema] = name
return name
list_keys_cache = {}
def _init_yang_list(snode):
if snode.flags & lib.LYS_ORDBY_USER:
return [] # ordered list, return an empty builtin list
# unordered lists
if snode.nodetype == SNode.LEAFLIST:
return KeyedList(key_name=None)
if snode not in list_keys_cache:
keys = []
child = lib.lysc_node_child(snode)
while child:
if child.flags & lib.LYS_KEY:
if strip_prefixes:
keys.append(c2str(child.name))
else:
keys.append(
"%s:%s" % (c2str(child.module.name), c2str(child.name))
)
child = child.next
if len(keys) == 1:
list_keys_cache[snode] = keys[0]
else:
list_keys_cache[snode] = tuple(keys)
return KeyedList(key_name=list_keys_cache[snode])
def _to_dict(node, parent_dic):
if not lib.lyd_node_should_print(node, flags):
return
name = _node_name(node)
if node.schema.nodetype == SNode.LIST:
list_element = {}
child = lib.lyd_child(node)
while child:
_to_dict(child, list_element)
child = child.next
if name not in parent_dic:
parent_dic[name] = _init_yang_list(node.schema)
parent_dic[name].append(list_element)
elif node.schema.nodetype & (
SNode.CONTAINER | SNode.RPC | SNode.ACTION | SNode.NOTIF
):
container = {}
child = lib.lyd_child(node)
while child:
_to_dict(child, container)
child = child.next
parent_dic[name] = container
elif node.schema.nodetype == SNode.LEAFLIST:
if name not in parent_dic:
parent_dic[name] = _init_yang_list(node.schema)
parent_dic[name].append(DLeaf.cdata_leaf_value(node, self.context))
elif node.schema.nodetype == SNode.LEAF:
parent_dic[name] = DLeaf.cdata_leaf_value(node, self.context)
dic = {}
dnode = self
if absolute:
dnode = dnode.root()
if with_siblings:
for sib in dnode.siblings():
_to_dict(sib.cdata, dic)
else:
_to_dict(dnode.cdata, dic)
return dic
def merge_data_dict(
self,
dic: Dict[str, Any],
no_state: bool = False,
validate_present: bool = False,
validate: bool = True,
strict: bool = False,
rpc: bool = False,
rpcreply: bool = False,
) -> Optional["DNode"]:
"""
Merge a python dictionary into this node. The returned value is the first
created node.
:arg dic:
The python dictionary to convert.
:arg no_state:
Consider state data not allowed and raise an error during validation if they are found.
:arg validate_present:
Validate result of the operation against schema.
:arg validate:
Run validation on result of the operation.
:arg strict:
Instead of ignoring data without schema definition, raise an error.
:arg rpc:
Data represents RPC or action input parameters.
:arg rpcreply:
Data represents RPC or action output parameters.
"""
return dict_to_dnode(
dic,
self.module(),
parent=self,
no_state=no_state,
validate_present=validate_present,
validate=validate,
strict=strict,
rpc=rpc,
rpcreply=rpcreply,
)
def unlink(self, with_siblings: bool = False) -> None:
if with_siblings:
lib.lyd_unlink_siblings(self.cdata)
else:
lib.lyd_unlink_tree(self.cdata)
def free_internal(self, with_siblings: bool = True) -> None:
if with_siblings:
lib.lyd_free_all(self.cdata)
else:
lib.lyd_free_tree(self.cdata)
def free(self, with_siblings: bool = True) -> None:
try:
if self.free_func:
self.free_func(self) # pylint: disable=not-callable
else:
self.free_internal(with_siblings)
finally: