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
|
#!/usr/bin/env python3
import functools
import logging
import os
import pdb
import sys
import traceback
# This module is commonly used by others in here and should avoid
# taking any unnecessary dependencies back on them.
from argparse_utils import ActionNoYes
import config
import logging_utils
logger = logging.getLogger(__name__)
args = config.add_commandline_args(
f'Bootstrap ({__file__})',
'Args related to python program bootstrapper and Swiss army knife')
args.add_argument(
'--debug_unhandled_exceptions',
action=ActionNoYes,
default=False,
help='Break into pdb on top level unhandled exceptions.'
)
def handle_uncaught_exception(
exc_type,
exc_value,
exc_traceback):
if issubclass(exc_type, KeyboardInterrupt):
sys.__excepthook__(exc_type, exc_value, exc_traceback)
return
logger.exception(f'Unhandled top level {exc_type}',
exc_info=(exc_type, exc_value, exc_traceback))
traceback.print_exception(exc_type, exc_value, exc_traceback)
if config.config['debug_unhandled_exceptions']:
logger.info("Invoking the debugger...")
pdb.pm()
def initialize(entry_point):
"""Remember to initialize config and logging before running main."""
@functools.wraps(entry_point)
def initialize_wrapper(*args, **kwargs):
sys.excepthook = handle_uncaught_exception
if (
'__globals__' in entry_point.__dict__ and
'__file__' in entry_point.__globals__
):
config.parse(entry_point.__globals__['__file__'])
else:
config.parse(None)
logging_utils.initialize_logging(logging.getLogger())
config.late_logging()
logger.debug(f'Starting {entry_point.__name__} (program entry point)')
ret = None
import stopwatch
with stopwatch.Timer() as t:
ret = entry_point(*args, **kwargs)
logger.debug(
f'{entry_point.__name__} (program entry point) returned {ret}.'
)
walltime = t()
(utime, stime, cutime, cstime, elapsed_time) = os.times()
logger.debug('\n'
f'user: {utime}s\n'
f'system: {stime}s\n'
f'child user: {cutime}s\n'
f'child system: {cstime}s\n'
f'machine uptime: {elapsed_time}s\n'
f'walltime: {walltime}s')
if ret != 0:
logger.info(f'Exit {ret}')
else:
logger.debug(f'Exit {ret}')
sys.exit(ret)
return initialize_wrapper
|