-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.py
More file actions
289 lines (217 loc) · 5.24 KB
/
Copy pathtypes.py
File metadata and controls
289 lines (217 loc) · 5.24 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
"""Summary
"""
#
# Wrappers for Types in NVL
#
#
from ctypes import *
class WeldType(object):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "type"
def __hash__(self):
"""Summary
Returns:
TYPE: Description
"""
return hash(str(self))
def __eq__(self, other):
"""Summary
Args:
other (TYPE): Description
Returns:
TYPE: Description
"""
return hash(other) == hash(self)
@property
def ctype_class(self):
"""
Returns a class representing this type's ctype representation.
Raises:
NotImplementedError: Description
"""
raise NotImplementedError
class WeldChar(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "i8"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
return c_wchar_p
class WeldBit(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "bool"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
return c_bool
class WeldInt(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "i32"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
return c_int
class WeldLong(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "i64"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
return c_long
class WeldFloat(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "f32"
@property
def ctype_class(self):
return c_float
class WeldDouble(WeldType):
"""Summary
"""
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "f64"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
return c_double
class WeldVec(WeldType):
"""Summary
Attributes:
elemType (TYPE): Description
"""
# Kind of a hack, but ctypes requires that the class instance returned is
# the same object. Every time we create a new Vec instance (templatized by
# type), we cache it here.
_singletons = {}
def __init__(self, elemType):
"""Summary
Args:
elemType (TYPE): Description
"""
self.elemType = elemType
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "vec[%s]" % str(self.elemType)
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
def vec_factory(elemType):
"""Summary
Args:
elemType (TYPE): Description
Returns:
TYPE: Description
"""
class Vec(Structure):
"""Summary
"""
_fields_ = [
("ptr", POINTER(elemType.ctype_class)),
("size", c_long),
]
return Vec
if self.elemType not in WeldVec._singletons:
WeldVec._singletons[self.elemType] = vec_factory(self.elemType)
return WeldVec._singletons[self.elemType]
class WeldStruct(WeldType):
"""Summary
Attributes:
field_types (TYPE): Description
"""
_singletons = {}
def __init__(self, field_types):
"""Summary
Args:
field_types (TYPE): Description
"""
assert False not in [isinstance(e, WeldType) for e in field_types]
self.field_types = field_types
def __str__(self):
"""Summary
Returns:
TYPE: Description
"""
return "{" + ",".join([str(f) for f in self.field_types]) + "}"
@property
def ctype_class(self):
"""Summary
Returns:
TYPE: Description
"""
def struct_factory(field_types):
"""Summary
Args:
field_types (TYPE): Description
Returns:
TYPE: Description
"""
class Struct(Structure):
"""Summary
"""
_fields_ = [(str(i), t.ctype_class)
for i, t in enumerate(field_types)]
return Struct
if frozenset(self.field_types) not in WeldVec._singletons:
WeldStruct._singletons[
frozenset(self.field_types)] = struct_factory(self.field_types)
return WeldStruct._singletons[frozenset(self.field_types)]