-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils.py
54 lines (44 loc) · 1.88 KB
/
utils.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
"""
Utilities
"""
import ctypes, sys
###############################################################################
def expect(condition, error_msg, exc_type=SystemExit, error_prefix="ERROR:"):
###############################################################################
"""
Similar to assert except doesn't generate an ugly stacktrace. Useful for
checking user error, not programming error.
>>> expect(True, "error1")
>>> expect(False, "error2")
Traceback (most recent call last):
...
SystemExit: ERROR: error2
"""
if not condition:
msg = error_prefix + " " + error_msg
raise exc_type(msg)
###############################################################################
def to_cstr(item):
###############################################################################
return bytes(item, "utf-8")
###############################################################################
def to_cstr_list(items):
###############################################################################
arr = (ctypes.c_char_p * len(items))()
arr[:] = [to_cstr(item) for item in items]
return arr
###############################################################################
def cstr_to_str(cstr, size):
###############################################################################
return cstr[0:size].decode("utf-8")
###############################################################################
def cstr_to_ints(cstr, size):
###############################################################################
ints = []
for i in range(size):
ints.append(int.from_bytes(cstr[i], byteorder=sys.byteorder))
return ints
###############################################################################
def tyn(arg_bool):
###############################################################################
return "y" if arg_bool else "n"