-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path_util.py
260 lines (215 loc) · 9.26 KB
/
_util.py
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
# This file is part of IMAS-Python.
# You should have received the IMAS-Python LICENSE file with this project.
"""This file contains the implementation of all utility functions that need external
modules. Implementation has been removed from util.py to improve the performance of
``import imas``.
"""
import copy
import logging
from difflib import Match, SequenceMatcher
from typing import Union
import numpy
import rich
import scipy.interpolate
from rich.columns import Columns
from rich.console import Group
from rich.panel import Panel
from rich.pretty import Pretty
from rich.table import Table
from rich.text import Text
from rich.tree import Tree
from imas.ids_base import IDSBase
from imas.ids_data_type import IDSDataType
from imas.ids_defs import IDS_TIME_MODE_HOMOGENEOUS
from imas.ids_metadata import IDSMetadata
from imas.ids_primitive import IDSPrimitive
from imas.ids_struct_array import IDSStructArray
from imas.ids_structure import IDSStructure
from imas.ids_toplevel import IDSToplevel
from imas.util import idsdiffgen, visit_children
logger = logging.getLogger(__name__)
def resample_impl(node, old_time, new_time, homogeneousTime, inplace, **kwargs):
if homogeneousTime is None:
homogeneousTime = node._time_mode
if homogeneousTime is None:
raise ValueError(
"homogeneous_time is not specified in ids_properties nor given"
" as keyword argument"
)
if homogeneousTime != IDS_TIME_MODE_HOMOGENEOUS:
# TODO: implement also for IDS_TIME_MODE_INDEPENDENT
# (and what about converting between time modes? this gets tricky fast)
raise NotImplementedError(
"resample is only implemented for IDS_TIME_MODE_HOMOGENEOUS"
)
def visitor(el):
if not el.has_value:
return
if el.metadata.type.is_dynamic and el.metadata.name != "time":
# effectively a guard to get only idsPrimitive
# TODO: also support time axes as dimension of IDSStructArray
time_axis = None
if hasattr(el, "coordinates"):
time_axis = el.coordinates.time_index
if time_axis is None:
logger.warning(
"No time axis found for dynamic structure %s", node._path
)
interpolator = scipy.interpolate.interp1d(
old_time.value, el.value, axis=time_axis, **kwargs
)
el.value = interpolator(new_time)
if not inplace:
el = copy.deepcopy(node)
else:
el = node
visit_children(visitor, el)
if isinstance(el, IDSToplevel):
el.time = new_time
else:
logger.warning(
"Performing resampling on non-toplevel. "
"Be careful to adjust your time base manually"
)
return el
def print_tree_impl(structure, hide_empty_nodes):
with numpy.printoptions(threshold=5, linewidth=1024, precision=4):
rich.print(_make_tree(structure, hide_empty_nodes))
def _make_tree(structure, hide_empty_nodes=True, *, tree=None):
"""Build the ``rich.tree.Tree`` for display in :py:meth:`print_tree`.
Args:
structure: IDS structure to add to the tree
hide_empty_nodes: Show or hide nodes without value.
Keyword Args:
tree: If provided, child items will be added to this Tree object. Otherwise a
new Tree is constructed.
"""
if tree is None:
tree = Tree(f"[magenta]{structure.metadata.name}")
if not isinstance(structure, (IDSStructure, IDSStructArray)):
raise TypeError()
iterator = structure
if hide_empty_nodes and isinstance(structure, IDSStructure):
iterator = structure.iter_nonempty_(accept_lazy=True)
for child in iterator:
if isinstance(child, IDSPrimitive):
if not child.has_value:
value = "[bright_black]-"
else:
value = Pretty(child.value)
txt = f"[yellow]{child.metadata.name}[/]:"
group = Columns([txt, value])
tree.add(group)
else:
if isinstance(child, IDSStructure):
txt = f"[magenta]{child._path}[/]"
ntree = tree.add(txt)
elif isinstance(child, IDSStructArray):
ntree = tree
if not child.has_value:
tree.add(f"[magenta]{child._path}[][/]")
_make_tree(child, hide_empty_nodes, tree=ntree)
return tree
def print_metadata_tree_impl(
structure: Union[IDSMetadata, IDSBase], maxdepth: int
) -> None:
def _make_tree(tree: Tree, metadata: IDSMetadata, depth: int):
for child in metadata._children.values():
if child.data_type in (IDSDataType.STRUCTURE, IDSDataType.STRUCT_ARRAY):
newtree = tree.add(f"[magenta]{child.path_doc}[/]")
if maxdepth == 0 or depth < maxdepth:
_make_tree(newtree, child, depth + 1)
else:
newtree.add("[bright_black]<hidden>[/]")
else:
tree.add(f"[yellow]{child.path_doc}")
metadata = structure if isinstance(structure, IDSMetadata) else structure.metadata
tree = Tree(f"[magenta]{metadata.name}")
_make_tree(tree, metadata, 1)
rich.print(tree)
def inspect_impl(ids_node, hide_empty_nodes):
if not isinstance(ids_node, IDSBase):
return rich.inspect(ids_node)
# Title
if isinstance(ids_node, IDSToplevel):
title = f"IDS: [green]{ids_node.metadata.name}"
elif isinstance(ids_node, IDSStructure):
title = f"IDS structure: [green]{ids_node._path}"
elif isinstance(ids_node, IDSStructArray):
title = f"IDS array of structures: [green]{ids_node._path}"
else:
title = f"IDS value: [green]{ids_node._path}"
if ids_node._version:
title += f" [/](DD version [bold cyan]{ids_node._version}[/])"
renderables = []
# Documentation
renderables.append(Text(ids_node.metadata.documentation, style="inspect.help"))
# Value
if isinstance(ids_node, (IDSStructArray, IDSPrimitive)):
val = Pretty(ids_node.value, indent_guides=True, max_length=10, max_string=60)
value_text = Text.assemble(("value", "inspect.attr"), (" =", "inspect.equals"))
table = Table.grid(padding=(0, 1), expand=False)
table.add_column(justify="right")
table.add_row(value_text, val)
renderables.append(Panel(table, border_style="inspect.value.border"))
attrs = set(name for name in dir(ids_node) if not name.startswith("_"))
child_nodes = set()
if isinstance(ids_node, IDSStructure):
child_nodes = set(ids_node._children)
attrs -= child_nodes
attrs -= {"value"}
# Properties
if attrs:
attrs_table = Table.grid(padding=(0, 1), expand=False)
attrs_table.add_column(justify="right")
for attr in sorted(attrs):
try:
value = getattr(ids_node, attr)
except Exception:
continue
if callable(value):
continue
key_text = Text.assemble((attr, "inspect.attr"), (" =", "inspect.equals"))
attrs_table.add_row(key_text, Pretty(value))
renderables.append(Panel(attrs_table, title="Attributes"))
if child_nodes:
child_table = Table.grid(padding=(0, 1), expand=False)
child_table.add_column(justify="right")
for child in sorted(child_nodes):
value = getattr(ids_node, child)
if hide_empty_nodes and not value.has_value:
continue
key_text = Text.assemble((child, "inspect.attr"), (" =", "inspect.equals"))
child_table.add_row(key_text, Pretty(value))
renderables.append(Panel(child_table, title="Child nodes", style="cyan"))
rich.print(Panel.fit(Group(*renderables), title=title, border_style="scope.border"))
def idsdiff_impl(struct1: IDSStructure, struct2: IDSStructure) -> None:
diff_table = Table("Value in structure 1", "Value in structure 2")
for description, child1, child2 in idsdiffgen(struct1, struct2):
if not isinstance(child1, IDSBase) and not isinstance(child2, IDSBase):
txt1 = f"{description}: {child1}"
txt2 = f"{description}: {child2}"
else:
txt1 = "-" if child1 is None else repr(child1)
txt2 = "-" if child2 is None else repr(child2)
seqmat = SequenceMatcher()
seqmat.set_seqs(txt1, txt2)
out1 = Text()
out2 = Text()
prevmatch = Match(0, 0, 0)
for match in seqmat.get_matching_blocks():
if match.a > prevmatch.a + prevmatch.size:
out1.append(txt1[prevmatch.a + prevmatch.size : match.a], "bold red")
if match.b > prevmatch.b + prevmatch.size:
out2.append(txt2[prevmatch.b + prevmatch.size : match.b], "bold green")
out1.append(txt1[match.a : match.a + match.size])
out2.append(txt2[match.b : match.b + match.size])
prevmatch = match
out1.append(txt1[match.a + match.size :], style="bold red")
out2.append(txt2[match.b + match.size :], style="bold green")
diff_table.add_row(out1, out2)
diff_table.add_section()
if diff_table.row_count:
rich.print(diff_table)
else:
rich.print("Structures", struct1, "and", struct2, "are identical")