X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=inline;f=bootstrap.py;h=3c886efc94f583e7b13a7bbc19d63a174890d120;hb=0e451d3b3bf899b3d9ac0c38e3c3cd9d9be170ba;hp=d1233e9344f54be3f84555a9b392faf1d5fe2054;hpb=497fb9e21f45ec08e1486abaee6dfa7b20b8a691;p=python_utils.git diff --git a/bootstrap.py b/bootstrap.py index d1233e9..3c886ef 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -3,13 +3,15 @@ import functools import logging import os +import pdb import sys -import time import traceback -import argparse_utils +# 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__) @@ -19,9 +21,9 @@ args = config.add_commandline_args( 'Args related to python program bootstrapper and Swiss army knife') args.add_argument( '--debug_unhandled_exceptions', - action=argparse_utils.ActionNoYes, + action=ActionNoYes, default=False, - help='Break into debugger on top level unhandled exceptions for interactive debugging' + help='Break into pdb on top level unhandled exceptions.' ) @@ -37,28 +39,44 @@ def handle_uncaught_exception( traceback.print_exception(exc_type, exc_value, exc_traceback) if config.config['debug_unhandled_exceptions']: logger.info("Invoking the debugger...") - breakpoint() + pdb.pm() + +def initialize(entry_point): -def initialize(funct): """Remember to initialize config and logging before running main.""" - @functools.wraps(funct) + @functools.wraps(entry_point) def initialize_wrapper(*args, **kwargs): sys.excepthook = handle_uncaught_exception - config.parse() + config.parse(entry_point.__globals__['__file__']) + + import logging_utils logging_utils.initialize_logging(logging.getLogger()) - logger.debug(f"About to invoke {funct}...") - start = time.perf_counter() - ret = funct(*args, **kwargs) - end = time.perf_counter() - logger.debug(f'{funct} returned {ret}.') + + config.late_logging() + + logger.debug(f'Starting {entry_point.__name__} (program entry point)') + + ret = None + import timer + with timer.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(f'\nuser: {utime}s\n' + logger.debug(f'\n' + f'user: {utime}s\n' f'system: {stime}s\n' f'child user: {cutime}s\n' f'child system: {cstime}s\n' f'elapsed: {elapsed_time}s\n' - f'walltime: {end - start}s\n') - logger.info(f'Exit {ret}') + f'walltime: {walltime}s\n') + if ret != 0: + logger.info(f'Exit {ret}') + else: + logger.debug(f'Exit {ret}') sys.exit(ret) return initialize_wrapper