forked from charnley/chemhelp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.py
104 lines (70 loc) · 2.21 KB
/
misc.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
import sys
import subprocess
import pickle
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
return
def save_obj(name, obj):
with open(name + '.pkl', 'wb') as f:
pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL)
def load_obj(name):
with open(name + '.pkl', 'rb') as f:
return pickle.load(f)
def readlines_reverse(filename):
with open(filename) as qfile:
qfile.seek(0, os.SEEK_END)
position = qfile.tell()
line = ''
while position >= 0:
qfile.seek(position)
next_char = qfile.read(1)
if next_char == "\n":
yield line[::-1]
line = ''
else:
line += next_char
position -= 1
yield line[::-1]
def read_line(filename, pattern):
for i, line in enumerate(readlines_reverse(filename)):
if line.find(pattern) != -1:
return line
return None
def get_index(lines, pattern, offset=None, n_lines=None):
if offset is None:
offset = 0
if n_lines is None:
n_lines = len(lines)
for i in range(offset, n_lines):
line = lines[i]
if line.find(pattern) != -1:
return i
return None
def reverse_enum(L, max_lines=None, lenl=None):
if lenl is None:
lenl = len(L)
if max_lines is None:
iterator = reversed(range(lenl))
else:
iterator = reversed(range(min(lenl, max_lines)))
for index in iterator:
yield index, L[index]
def get_rev_index(lines, pattern, max_lines=None, lenl=None):
for i, line in reverse_enum(lines, max_lines=max_lines):
if line.find(pattern) != -1:
return i
return None
def shell(cmd, shell=False):
"""
Run a sh command.
return the stdout and stderr
"""
if shell:
proc = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
else:
cmd = cmd.split()
proc = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, err = proc.communicate()
output = output.decode("utf-8")
err = err.decode("utf-8")
return output, err