blob: f1cfbd5e670db7b8f144c3f1606112cf6aecc533 [file] [log] [blame]
Michael Walsh4cae87d2017-01-12 14:46:05 -06001#!/usr/bin/env python
2
3r"""
4python_pgm_template: Copy this template as a base to get a start on a python
5program. You may remove any generic comments (like this one).
6"""
7
8import sys
9
Michael Walsh4cae87d2017-01-12 14:46:05 -060010save_path_0 = sys.path[0]
11del sys.path[0]
12
13from gen_arg import *
14from gen_print import *
15from gen_valid import *
16
17# Restore sys.path[0].
18sys.path.insert(0, save_path_0)
19
Michael Walsh4cae87d2017-01-12 14:46:05 -060020parser = argparse.ArgumentParser(
21 usage='%(prog)s [OPTIONS]',
22 description="%(prog)s will...",
Michael Walshd0741f82017-12-21 14:04:21 -060023 formatter_class=argparse.ArgumentDefaultsHelpFormatter,
Michael Walsh4cae87d2017-01-12 14:46:05 -060024 prefix_chars='-+')
25
Michael Walsh4cae87d2017-01-12 14:46:05 -060026parser.add_argument(
27 '--whatever',
28 help='bla, bla.')
29
Michael Walsh41dda1b2017-09-14 11:42:29 -050030# Populate stock_list with options we want.
Michael Walsh4cae87d2017-01-12 14:46:05 -060031stock_list = [("test_mode", 0), ("quiet", 0), ("debug", 0)]
Michael Walsh4cae87d2017-01-12 14:46:05 -060032
33
Michael Walsh4cae87d2017-01-12 14:46:05 -060034def exit_function(signal_number=0,
35 frame=None):
Michael Walsh4cae87d2017-01-12 14:46:05 -060036 r"""
37 Execute whenever the program ends normally or with the signals that we
38 catch (i.e. TERM, INT).
39 """
40
41 dprint_executing()
42 dprint_var(signal_number)
43
44 # Your cleanup code here.
45
46 qprint_pgm_footer()
47
Michael Walsh4cae87d2017-01-12 14:46:05 -060048
Michael Walsh4cae87d2017-01-12 14:46:05 -060049def signal_handler(signal_number,
50 frame):
Michael Walsh4cae87d2017-01-12 14:46:05 -060051 r"""
52 Handle signals. Without a function to catch a SIGTERM or SIGINT, our
53 program would terminate immediately with return code 143 and without
54 calling our exit_function.
55 """
56
57 # Our convention is to set up exit_function with atexit.register() so
58 # there is no need to explicitly call exit_function from here.
59
60 dprint_executing()
61
62 # Calling exit prevents us from returning to the code that was running
63 # when we received the signal.
64 exit(0)
65
Michael Walsh4cae87d2017-01-12 14:46:05 -060066
Michael Walsh4cae87d2017-01-12 14:46:05 -060067def validate_parms():
Michael Walsh4cae87d2017-01-12 14:46:05 -060068 r"""
69 Validate program parameters, etc. Return True or False (i.e. pass/fail)
70 accordingly.
71 """
72
73 # Your validation code here.
74
75 gen_post_validation(exit_function, signal_handler)
76
77 return True
78
Michael Walsh4cae87d2017-01-12 14:46:05 -060079
Michael Walsh4cae87d2017-01-12 14:46:05 -060080def main():
81
Michael Walsh4cae87d2017-01-12 14:46:05 -060082 if not gen_get_options(parser, stock_list):
83 return False
84
85 if not validate_parms():
86 return False
87
88 qprint_pgm_header()
89
90 # Your code here.
91
92 return True
93
Michael Walsh4cae87d2017-01-12 14:46:05 -060094
Michael Walsh4cae87d2017-01-12 14:46:05 -060095# Main
96
97if not main():
98 exit(1)