-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmisc.py
222 lines (139 loc) · 4.2 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
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
import numpy as np
from io import StringIO
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 load_array(txt):
s = StringIO(txt)
arr = np.loadtxt(s)
return arr
def save_array(arr):
s = StringIO()
np.savetxt(s, arr)
return s.getvalue()
def fix_dir_name(name):
if not name.endswith("/"):
name += "/"
return name
# search
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, stoppattern=False):
for i, line in reverse_enum(lines, max_lines=max_lines):
if line.find(pattern) != -1:
return i
if stoppattern and stoppattern in line:
return None
return None
def get_indexes(lines, pattern):
idxs = []
for i, line in enumerate(lines):
if pattern in line:
idxs.append(i)
return idxs
def get_indexes_with_stop(lines, pattern, stoppattern):
idxs = []
for i, line in enumerate(lines):
# if line.find(pattern) != -1:
if pattern in line:
idxs.append(i)
continue
# if line.find(stoppattern) != -1:
if stoppattern in line:
break
return idxs
def get_index(lines, pattern):
for i, line in enumerate(lines):
if line.find(pattern) != -1:
return i
return None
def reverse_enum(L):
for index in reversed(range(len(L))):
yield index, L[index]
def get_indexes_patterns(lines, patterns):
n_patterns = len(patterns)
i_patterns = list(range(n_patterns))
idxs = [None]*n_patterns
for i, line in enumerate(lines):
for ip in i_patterns:
pattern = patterns[ip]
if pattern in line:
idxs[ip] = i
i_patterns.remove(ip)
return idxs
def get_rev_indexes(lines, patterns):
n_patterns = len(patterns)
i_patterns = list(range(n_patterns))
idxs = [None]*n_patterns
for i, line in reverse_enum(lines):
for ip in i_patterns:
pattern = patterns[ip]
if pattern in line:
idxs[ip] = i
i_patterns.remove(ip)
return idxs
def get_rev_index(lines, pattern):
for i, line in reverse_enum(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