An error occurred while loading the file. Please try again.
-
Pierre-Antoine Rouby authoredd158c8ad
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# tools.py -- Pamhyr tools function collection
# Copyright (C) 2023-2024 INRAE
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# -*- coding: utf-8 -*-
import os
import time
import logging
import traceback
from datetime import datetime, timedelta
from pathlib import Path
from colorama import Fore
from colorama import Back
from colorama import Style
from functools import (
reduce, partial, wraps
)
try:
import pwd
with_pwd = True
except Exception as e:
print("Module 'pwd' is not available")
with_pwd = False
###########
# LOGGING #
###########
logger = logging.getLogger()
posix = os.name == "posix"
def logger_color_blue():
if posix:
return f"{Style.BRIGHT}{Fore.BLUE}"
return ""
def logger_color_red():
if posix:
return f"{Style.BRIGHT}{Fore.RED}"
return ""
def logger_color_green():
if posix:
return f"{Style.BRIGHT}{Fore.GREEN}"
return ""
def logger_color_reset():
if posix:
return f"{Style.RESET_ALL}"
return ""
def logger_exception(exception):
logger.error(
f"[{logger_color_red()}ERROR{logger_color_reset()}] " +
f"{logger_color_red()}{exception}{logger_color_reset()}"
)
logger.debug(
f"{logger_color_blue()}{exception}{logger_color_reset()}\n" +
f"{logger_color_red()}{traceback.format_exc()}{logger_color_reset()}"
)
##########
# TIMERS #
##########
_timers = {}
_calls = {}
def reset_timers():
global _timers
global _calls
_timers = {}
_calls = {}
def display_timers():
global _timers
global _calls
fmax = max(
map(
lambda f: len(f.__qualname__) + len(f.__module__),
_timers
)
)
head = " +--"
head += f"{logger_color_blue()}Timers{logger_color_reset()}"
for t in range(fmax + 26):
head += "-"
head += "+"
logger.debug(head)
lst = sorted(
map(
lambda f: (f, _timers[f], _calls[f]),
_timers
),
key=lambda f: f[1],
reverse=True
)
for func, time, calls in lst:
name = (f"{logger_color_blue()}{func.__module__}" +
f"{logger_color_reset()}" +
f".{logger_color_green()}" +
f"{func.__qualname__:<{fmax - len(func.__module__)}}" +
f"{logger_color_reset()}")
logger.debug(f" | {name} | {time:>10.6f} sec | {calls:>5} calls |")
tail = " +--"
for t in range(fmax + 32):
tail += "-"
tail += "+"
logger.debug(tail)
def timer(func):
"""Function wrapper to register function runtime"""
@wraps(func)
def wrapper(*args, **kwargs):
start_time = time.perf_counter()
value = None
try:
value = func(*args, **kwargs)
except Exception as e:
logger.error(
f"[{logger_color_red()}ERROR{logger_color_reset()}] " +
f"{logger_color_red()}{e}{logger_color_reset()}"
)
logger.debug(
f"[{func.__module__}.{logger_color_green()}" +
f"{func.__qualname__}" +
f"{logger_color_reset()}]: " +
f"{logger_color_red()}{e}{logger_color_reset()}"
)
logger.debug(
f"{logger_color_blue()}{e}{logger_color_reset()}\n" +
f"{logger_color_red()}{traceback.format_exc()}" +
f"{logger_color_reset()}"
)
end_time = time.perf_counter()
run_time = end_time - start_time
_timers[func] += run_time
_calls[func] += 1
return value
_timers[func] = 0
_calls[func] = 0
return wrapper
#########
# DEBUG #
#########
def trace(func):
@wraps(func)
def wrapper(*args, **kwargs):
t = time.ctime()
head = f"[{logger_color_blue()}TRACE{logger_color_reset()}]"
c = (
f"{head}[{t}] Call {func.__module__}.{logger_color_green()}" +
f"{func.__qualname__}{logger_color_reset()}({args}, {kwargs})"
)
logger.debug(c)
value = func(*args, **kwargs)
t = time.ctime()
r = (
f"{head}[{t}] Return {func.__module__}.{logger_color_green()}" +
f"{func.__qualname__}{logger_color_reset()}: {value}"
)
logger.debug(r)
return value
return wrapper
################
# OTHERS TOOLS #
################
@timer
def flatten(lst):
"""Flatten list of list
Args:
lst: A list of list
Returns:
returns a list of element
"""
return reduce(list.__add__, lst, [])
def timestamp(dt: datetime):
# Fix timestamp for some windows version.
# - Issue : (https://bugs.python.org/issue29097)
if os.name == 'nt':
return (dt - datetime(1970, 1, 1)).total_seconds()
return dt.timestamp()
def old_pamhyr_date_to_timestamp(date: str):
v = date.split(":")
if len(v) != 4:
return 0
m = [
(24 * 60 * 60), # Day to sec
(60 * 60), # Hour to sec
60, # Minute to sec
1 # Sec
]
ts = reduce(
lambda acc, x: acc + x,
map(
lambda v, m: int(v) * int(m),
v, m
)
)
return ts
def timestamp_to_old_pamhyr_date(time: int):
t0 = datetime.fromtimestamp(0)
# HACK: Windows do not accept negative timestamps
if time < 0:
t = t0 + timedelta(seconds=int(time))
else:
t = datetime.fromtimestamp(int(time))
dt = t - t0
hours = dt.seconds // 3600
minutes = (dt.seconds % 3600) // 60
seconds = dt.seconds % 60
s = f"{dt.days:>3}:{hours:>2}:{minutes:>2}:{seconds:>2}"
s = s.replace(" ", "0")
return s
def get_user_name():
if with_pwd:
return pwd.getpwuid(os.getuid()).pw_gecos
else:
return "Me"
def get_version():
with open(os.path.abspath(
os.path.join(
os.path.dirname(__file__),
"VERSION"
)
), "r") as f:
return f.readline().strip()
#######################
# COMMAND LINE PARSER #
#######################
parser_special_char = ["\"", "\'"]
@timer
def parse_command_line(cmd):
"""Parse command line string and return list of string arguments
Parse command line string and returns the list of separate
arguments as string, this function take in consideration space
separator and quoted expression
Args:
cmd: The command line to parce
Returns:
List of arguments as string
"""
words = []
rest = cmd
try:
while True:
if len(rest) == 0:
break
word, rest = _parse_next_word(rest)
words.append(word)
except Exception as e:
logger.error(
f"{parse_command_line}: " +
f"Failed to parse command line '{cmd}'"
)
logger.error(f" exception raise {e}")
return []
return words
def _parse_next_word(words):
"""Parse the next word in words string
Args:
words: The words string
Returns:
the next word and rests of words
"""
if len(words) == 1:
return words, ""
# Remove useless space
words = words.strip()
# Parse
if words[0] == "\"":
word, rest = _parse_word_up_to_next_sep(words, sep="\"")
elif words[0] == "\'":
word, rest = _parse_word_up_to_next_sep(words, sep="\'")
else:
word, rest = _parse_word_up_to_next_sep(words, sep=" ")
return word, rest
def _parse_word_up_to_next_sep(words, sep=" "):
word = ""
i = 0 if sep == " " else 1
cur = words[i]
skip_next = False
while True:
# Exit conditions
if cur == "":
break
if cur == sep:
if not skip_next:
break
# Take in consideration escape char in case of \<sep>
if cur == "\\":
# If previous char is a escape char, cancel next char
# skiping:
# \<sep> -> skip <sep> as separator
# \\<sep> -> do not skip <sep>
skip_next = not skip_next
else:
skip_next = False
word += cur
# Current word contain a word with different separator,
# typicaly, the string '-c="foo bar"' with ' ' seperator must
# be parse as one word.
#
# Correct: '-c="foo bar" baz' -> '-c="foo bar"', 'baz'
# Not correct: '-c="foo bar" baz' -> '-c="foo', 'bar" baz'
if cur in parser_special_char:
# Recursive call to parse this word
sub_word, rest = _parse_word_up_to_next_sep(words[i:], sep=cur)
i += len(sub_word) + 1
word += sub_word + cur
# Get next token
i += 1
if i >= len(words):
cur = ""
else:
cur = words[i]
rest = words[i+1:]
return word, rest