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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
# osmo_gsm_tester: language snippets
#
# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
#
# Author: Neels Hofmeyr <neels@hofmeyr.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import time
import fcntl
import hashlib
import tempfile
import shutil
import atexit
import threading
import importlib.util
import fcntl
import tty
import termios
class listdict:
'a dict of lists { "a": [1, 2, 3], "b": [1, 2] }'
def __getattr__(ld, name):
if name == 'add':
return ld.__getattribute__(name)
return ld.__dict__.__getattribute__(name)
def add(ld, name, item):
l = ld.__dict__.get(name)
if not l:
l = []
ld.__dict__[name] = l
l.append(item)
return l
def add_dict(ld, d):
for k,v in d.items():
ld.add(k, v)
def __setitem__(ld, name, val):
return ld.__dict__.__setitem__(name, val)
def __getitem__(ld, name):
return ld.__dict__.__getitem__(name)
def __str__(ld):
return ld.__dict__.__str__()
class DictProxy:
'''
allow accessing dict entries like object members
syntactical sugar, adapted from http://stackoverflow.com/a/31569634
so that e.g. templates can do ${bts.member} instead of ${bts['member']}
'''
def __init__(self, obj):
self.obj = obj
def __getitem__(self, key):
return dict2obj(self.obj[key])
def __getattr__(self, key):
try:
return dict2obj(getattr(self.obj, key))
except AttributeError:
try:
return self[key]
except KeyError:
raise AttributeError(key)
class ListProxy:
'allow nesting for DictProxy'
def __init__(self, obj):
self.obj = obj
def __getitem__(self, key):
return dict2obj(self.obj[key])
def dict2obj(value):
if isinstance(value, dict):
return DictProxy(value)
if isinstance(value, (tuple, list)):
return ListProxy(value)
return value
class FileLock:
def __init__(self, path, owner):
self.path = path
self.owner = owner
self.f = None
def __enter__(self):
if self.f is not None:
return
self.fd = os.open(self.path, os.O_CREAT | os.O_WRONLY | os.O_TRUNC)
fcntl.flock(self.fd, fcntl.LOCK_EX)
os.truncate(self.fd, 0)
os.write(self.fd, str(self.owner).encode('utf-8'))
os.fsync(self.fd)
def __exit__(self, *exc_info):
#fcntl.flock(self.fd, fcntl.LOCK_UN)
os.truncate(self.fd, 0)
os.fsync(self.fd)
os.close(self.fd)
self.fd = -1
def lock(self):
self.__enter__()
def unlock(self):
self.__exit__()
class Dir():
LOCK_FILE = 'lock'
def __init__(self, path):
self.path = path
self.lock_path = os.path.join(self.path, Dir.LOCK_FILE)
def lock(self, origin_id):
'''
return lock context, usage:
with my_dir.lock(origin):
read_from(my_dir.child('foo.txt'))
write_to(my_dir.child('bar.txt'))
'''
self.mkdir()
return FileLock(self.lock_path, origin_id)
@staticmethod
def ensure_abs_dir_exists(*path_elements):
l = len(path_elements)
if l < 1:
raise RuntimeError('Cannot create empty path')
if l == 1:
path = path_elements[0]
else:
path = os.path.join(*path_elements)
if not os.path.isdir(path):
os.makedirs(path)
def child(self, *rel_path):
if not rel_path:
return self.path
return os.path.join(self.path, *rel_path)
def mk_parentdir(self, *rel_path):
child = self.child(*rel_path)
child_parent = os.path.dirname(child)
Dir.ensure_abs_dir_exists(child_parent)
return child
def mkdir(self, *rel_path):
child = self.child(*rel_path)
Dir.ensure_abs_dir_exists(child)
return child
def children(self):
return os.listdir(self.path)
def exists(self, *rel_path):
return os.path.exists(self.child(*rel_path))
def isdir(self, *rel_path):
return os.path.isdir(self.child(*rel_path))
def isfile(self, *rel_path):
return os.path.isfile(self.child(*rel_path))
def new_child(self, *rel_path):
attempt = 1
prefix, suffix = os.path.splitext(self.child(*rel_path))
rel_path_fmt = '%s%%s%s' % (prefix, suffix)
while True:
path = rel_path_fmt % (('_%d'%attempt) if attempt > 1 else '')
if not os.path.exists(path):
break
attempt += 1
continue
Dir.ensure_abs_dir_exists(os.path.dirname(path))
return path
def rel_path(self, path):
return os.path.relpath(path, self.path)
def touch(self, *rel_path):
touch_file(self.child(*rel_path))
def new_file(self, *rel_path):
path = self.new_child(*rel_path)
touch_file(path)
return path
def new_dir(self, *rel_path):
path = self.new_child(*rel_path)
Dir.ensure_abs_dir_exists(path)
return path
def __str__(self):
return self.path
def __repr__(self):
return self.path
def touch_file(path):
with open(path, 'a') as f:
f.close()
def is_dict(l):
return isinstance(l, dict)
def is_list(l):
return isinstance(l, (list, tuple))
def dict_add(a, *b, **c):
for bb in b:
a.update(bb)
a.update(c)
return a
def _hash_recurse(acc, obj, ignore_keys):
if is_dict(obj):
for key, val in sorted(obj.items()):
if key in ignore_keys:
continue
_hash_recurse(acc, val, ignore_keys)
return
if is_list(obj):
for item in obj:
_hash_recurse(acc, item, ignore_keys)
return
acc.update(str(obj).encode('utf-8'))
def hash_obj(obj, *ignore_keys):
acc = hashlib.sha1()
_hash_recurse(acc, obj, ignore_keys)
return acc.hexdigest()
def md5(of_content):
if isinstance(of_content, str):
of_content = of_content.encode('utf-8')
return hashlib.md5(of_content).hexdigest()
def md5_of_file(path):
with open(path, 'rb') as f:
return md5(f.read())
_tempdir = None
def get_tempdir(remove_on_exit=True):
global _tempdir
if _tempdir is not None:
return _tempdir
_tempdir = tempfile.mkdtemp()
if remove_on_exit:
atexit.register(lambda: shutil.rmtree(_tempdir))
return _tempdir
if hasattr(importlib.util, 'module_from_spec'):
def run_python_file(module_name, path):
spec = importlib.util.spec_from_file_location(module_name, path)
spec.loader.exec_module( importlib.util.module_from_spec(spec) )
else:
from importlib.machinery import SourceFileLoader
def run_python_file(module_name, path):
SourceFileLoader(module_name, path).load_module()
def msisdn_inc(msisdn_str):
'add 1 and preserve leading zeros'
return ('%%0%dd' % len(msisdn_str)) % (int(msisdn_str) + 1)
class polling_stdin:
def __init__(self, stream):
self.stream = stream
self.fd = self.stream.fileno()
def __enter__(self):
self.original_stty = termios.tcgetattr(self.stream)
tty.setcbreak(self.stream)
self.orig_fl = fcntl.fcntl(self.fd, fcntl.F_GETFL)
fcntl.fcntl(self.fd, fcntl.F_SETFL, self.orig_fl | os.O_NONBLOCK)
def __exit__(self, *args):
fcntl.fcntl(self.fd, fcntl.F_SETFL, self.orig_fl)
termios.tcsetattr(self.stream, termios.TCSANOW, self.original_stty)
def input_polling(poll_func, stream=None):
if stream is None:
stream = sys.stdin
unbuffered_stdin = os.fdopen(stream.fileno(), 'rb', buffering=0)
try:
with polling_stdin(unbuffered_stdin):
acc = []
while True:
poll_func()
got = unbuffered_stdin.read(1)
if got and len(got):
try:
# this is hacky: can't deal with multibyte sequences
got_str = got.decode('utf-8')
except:
got_str = '?'
acc.append(got_str)
sys.__stdout__.write(got_str)
sys.__stdout__.flush()
if '\n' in got_str:
return ''.join(acc)
time.sleep(.1)
finally:
unbuffered_stdin.close()
# vim: expandtab tabstop=4 shiftwidth=4
|