-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathids_defs.py
171 lines (123 loc) · 5.29 KB
/
ids_defs.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
# This file is part of IMAS-Python.
# You should have received the IMAS-Python LICENSE file with this project.
""" Load IMAS-Python libs to provide constants
.. _`Backend identifiers`:
Backend identifiers
-------------------
The following constants are identifiers for the different Access Layer backends. Please
see the Access Layer documentation for more details on the different backends.
.. data:: ASCII_BACKEND
Identifier for the ASCII backend.
.. data:: MDSPLUS_BACKEND
Identifier for the MDS+ backend.
.. data:: HDF5_BACKEND
Identifier for the HDF5 backend.
.. data:: MEMORY_BACKEND
Identifier for the memory backend.
.. data:: UDA_BACKEND
Identifier for the UDA backend.
Time modes
----------
.. data:: IDS_TIME_MODE_HOMOGENEOUS
Use homogeneous time, all time coordinates refer to the toplevel ``time`` array.
.. data:: IDS_TIME_MODE_HETEROGENEOUS
Use heterogeneous time, time coordinates refer to their local ``time`` array.
.. data:: IDS_TIME_MODE_INDEPENDENT
Indicates that this IDS does not store time-dependent data.
Interpolation modes
-------------------
.. data:: CLOSEST_INTERP
Interpolation method that returns the `closest` time slice in the original IDS (can
break causality as it can return data ahead of requested time).
.. data:: PREVIOUS_INTERP
Interpolation method that returns the `previous` time slice if the requested time
does not exactly exist in the original IDS.
.. data:: LINEAR_INTERP
Interpolation method that returns a linear interpolation between the existing slices
before and after the requested time.
Serializer protocols
--------------------
.. data:: ASCII_SERIALIZER_PROTOCOL
Identifier for the ASCII serialization protocol.
.. data:: FLEXBUFFERS_SERIALIZER_PROTOCOL
Identifier for the Flexbuffers serialization protocol. This protocol is more
performant and results in a smaller buffer size than the
:data:`ASCII_SERIALIZER_PROTOCOL`.
.. versionadded:: 1.1 Requires ``imas_core`` version 5.3 or newer.
.. data:: DEFAULT_SERIALIZER_PROTOCOL
Identifier for the default serialization protocol.
"""
import functools
import logging
from imas.backends.imas_core.imas_interface import has_imas, imasdef
logger = logging.getLogger(__name__)
if has_imas:
ASCII_BACKEND = imasdef.ASCII_BACKEND
CHAR_DATA = imasdef.CHAR_DATA
CLOSE_PULSE = imasdef.CLOSE_PULSE
CLOSEST_INTERP = imasdef.CLOSEST_INTERP
CREATE_PULSE = imasdef.CREATE_PULSE
DOUBLE_DATA = imasdef.DOUBLE_DATA
COMPLEX_DATA = imasdef.COMPLEX_DATA
EMPTY_COMPLEX = imasdef.EMPTY_COMPLEX
EMPTY_FLOAT = imasdef.EMPTY_FLOAT
EMPTY_INT = imasdef.EMPTY_INT
ERASE_PULSE = imasdef.ERASE_PULSE
FORCE_CREATE_PULSE = imasdef.FORCE_CREATE_PULSE
FORCE_OPEN_PULSE = imasdef.FORCE_OPEN_PULSE
HDF5_BACKEND = imasdef.HDF5_BACKEND
IDS_TIME_MODE_HETEROGENEOUS = imasdef.IDS_TIME_MODE_HETEROGENEOUS
IDS_TIME_MODE_HOMOGENEOUS = imasdef.IDS_TIME_MODE_HOMOGENEOUS
IDS_TIME_MODE_INDEPENDENT = imasdef.IDS_TIME_MODE_INDEPENDENT
IDS_TIME_MODE_UNKNOWN = imasdef.IDS_TIME_MODE_UNKNOWN
IDS_TIME_MODES = imasdef.IDS_TIME_MODES
INTEGER_DATA = imasdef.INTEGER_DATA
LINEAR_INTERP = imasdef.LINEAR_INTERP
MDSPLUS_BACKEND = imasdef.MDSPLUS_BACKEND
MEMORY_BACKEND = imasdef.MEMORY_BACKEND
NODE_TYPE_STRUCTURE = imasdef.NODE_TYPE_STRUCTURE
OPEN_PULSE = imasdef.OPEN_PULSE
PREVIOUS_INTERP = imasdef.PREVIOUS_INTERP
READ_OP = imasdef.READ_OP
UDA_BACKEND = imasdef.UDA_BACKEND
UNDEFINED_INTERP = imasdef.UNDEFINED_INTERP
UNDEFINED_TIME = imasdef.UNDEFINED_TIME
WRITE_OP = imasdef.WRITE_OP
ASCII_SERIALIZER_PROTOCOL = getattr(imasdef, "ASCII_SERIALIZER_PROTOCOL", 60)
FLEXBUFFERS_SERIALIZER_PROTOCOL = getattr(
imasdef, "FLEXBUFFERS_SERIALIZER_PROTOCOL", None
)
DEFAULT_SERIALIZER_PROTOCOL = getattr(imasdef, "DEFAULT_SERIALIZER_PROTOCOL", 60)
else:
# Preset some constants which are used elsewhere
# this is a bit ugly, perhaps reuse the list of imports from above?
# it seems no problem to use None, since the use of the values should not
# be allowed, they are only used in operations which use the backend,
# which we (should) gate
ASCII_BACKEND = CHAR_DATA = CLOSE_PULSE = CLOSEST_INTERP = DOUBLE_DATA = None
FORCE_OPEN_PULSE = CREATE_PULSE = ERASE_PULSE = None
COMPLEX_DATA = FORCE_CREATE_PULSE = HDF5_BACKEND = None
INTEGER_DATA = LINEAR_INTERP = MDSPLUS_BACKEND = MEMORY_BACKEND = None
NODE_TYPE_STRUCTURE = OPEN_PULSE = PREVIOUS_INTERP = READ_OP = None
UDA_BACKEND = UNDEFINED_INTERP = UNDEFINED_TIME = WRITE_OP = None
# These constants are also useful when not working with the AL
EMPTY_FLOAT = -9e40
EMPTY_INT = -999_999_999
EMPTY_COMPLEX = complex(EMPTY_FLOAT, EMPTY_FLOAT)
IDS_TIME_MODE_UNKNOWN = EMPTY_INT
IDS_TIME_MODE_HETEROGENEOUS = 0
IDS_TIME_MODE_HOMOGENEOUS = 1
IDS_TIME_MODE_INDEPENDENT = 2
IDS_TIME_MODES = [0, 1, 2]
ASCII_SERIALIZER_PROTOCOL = 60
FLEXBUFFERS_SERIALIZER_PROTOCOL = None
DEFAULT_SERIALIZER_PROTOCOL = 60
def needs_imas(func):
if has_imas:
return func
@functools.wraps(func)
def wrapper(*args, **kwargs):
raise RuntimeError(
f"Function {func.__name__} requires IMAS, but IMAS is not available."
)
return wrapper