| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python | 
|  | 2 |  | 
|  | 3 | r""" | 
|  | 4 | python_pgm_template: Copy this template as a base to get a start on a python | 
|  | 5 | program.  You may remove any generic comments (like this one). | 
|  | 6 | """ | 
|  | 7 |  | 
|  | 8 | import sys | 
|  | 9 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 10 | save_path_0 = sys.path[0] | 
|  | 11 | del sys.path[0] | 
|  | 12 |  | 
|  | 13 | from gen_arg import * | 
|  | 14 | from gen_print import * | 
|  | 15 | from gen_valid import * | 
|  | 16 |  | 
|  | 17 | # Restore sys.path[0]. | 
|  | 18 | sys.path.insert(0, save_path_0) | 
|  | 19 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 20 | parser = argparse.ArgumentParser( | 
|  | 21 | usage='%(prog)s [OPTIONS]', | 
|  | 22 | description="%(prog)s will...", | 
|  | 23 | formatter_class=argparse.RawTextHelpFormatter, | 
|  | 24 | prefix_chars='-+') | 
|  | 25 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 26 | parser.add_argument( | 
|  | 27 | '--whatever', | 
|  | 28 | help='bla, bla.') | 
|  | 29 |  | 
| Michael Walsh | 41dda1b | 2017-09-14 11:42:29 -0500 | [diff] [blame^] | 30 | # Populate stock_list with options we want. | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 31 | stock_list = [("test_mode", 0), ("quiet", 0), ("debug", 0)] | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 32 |  | 
|  | 33 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 34 | def exit_function(signal_number=0, | 
|  | 35 | frame=None): | 
|  | 36 |  | 
|  | 37 | r""" | 
|  | 38 | Execute whenever the program ends normally or with the signals that we | 
|  | 39 | catch (i.e. TERM, INT). | 
|  | 40 | """ | 
|  | 41 |  | 
|  | 42 | dprint_executing() | 
|  | 43 | dprint_var(signal_number) | 
|  | 44 |  | 
|  | 45 | # Your cleanup code here. | 
|  | 46 |  | 
|  | 47 | qprint_pgm_footer() | 
|  | 48 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 49 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 50 | def signal_handler(signal_number, | 
|  | 51 | frame): | 
|  | 52 |  | 
|  | 53 | r""" | 
|  | 54 | Handle signals.  Without a function to catch a SIGTERM or SIGINT, our | 
|  | 55 | program would terminate immediately with return code 143 and without | 
|  | 56 | calling our exit_function. | 
|  | 57 | """ | 
|  | 58 |  | 
|  | 59 | # Our convention is to set up exit_function with atexit.register() so | 
|  | 60 | # there is no need to explicitly call exit_function from here. | 
|  | 61 |  | 
|  | 62 | dprint_executing() | 
|  | 63 |  | 
|  | 64 | # Calling exit prevents us from returning to the code that was running | 
|  | 65 | # when we received the signal. | 
|  | 66 | exit(0) | 
|  | 67 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 68 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 69 | def validate_parms(): | 
|  | 70 |  | 
|  | 71 | r""" | 
|  | 72 | Validate program parameters, etc.  Return True or False (i.e. pass/fail) | 
|  | 73 | accordingly. | 
|  | 74 | """ | 
|  | 75 |  | 
|  | 76 | # Your validation code here. | 
|  | 77 |  | 
|  | 78 | gen_post_validation(exit_function, signal_handler) | 
|  | 79 |  | 
|  | 80 | return True | 
|  | 81 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 82 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 83 | def main(): | 
|  | 84 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 85 | if not gen_get_options(parser, stock_list): | 
|  | 86 | return False | 
|  | 87 |  | 
|  | 88 | if not validate_parms(): | 
|  | 89 | return False | 
|  | 90 |  | 
|  | 91 | qprint_pgm_header() | 
|  | 92 |  | 
|  | 93 | # Your code here. | 
|  | 94 |  | 
|  | 95 | return True | 
|  | 96 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 97 |  | 
| Michael Walsh | 4cae87d | 2017-01-12 14:46:05 -0600 | [diff] [blame] | 98 | # Main | 
|  | 99 |  | 
|  | 100 | if not main(): | 
|  | 101 | exit(1) |