George Keishing | e7e9171 | 2021-09-03 11:28:44 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 2 | |
| 3 | r""" |
| 4 | See help text for details (--help or -h option).. |
| 5 | |
| 6 | Example properties file content: |
| 7 | quiet=n |
| 8 | test_mode=y |
| 9 | pos=file1 file2 file3 |
| 10 | |
| 11 | Example call: |
| 12 | |
| 13 | prop_call.py --prop_file_name=prop_file my_program |
| 14 | |
| 15 | The result is that the following command will be run: |
| 16 | my_program --test_mode=y --quiet=n file1 file2 file3 |
| 17 | """ |
| 18 | |
George Keishing | e635ddc | 2022-12-08 07:38:02 -0600 | [diff] [blame] | 19 | import os |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 20 | import sys |
Sridevi Ramesh | 47375aa | 2022-12-08 05:05:31 -0600 | [diff] [blame] | 21 | |
| 22 | save_path_0 = sys.path[0] |
| 23 | del sys.path[0] |
| 24 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 25 | from gen_arg import * # NOQA |
| 26 | from gen_cmd import * # NOQA |
| 27 | from gen_misc import * # NOQA |
| 28 | from gen_print import * # NOQA |
| 29 | from gen_valid import * # NOQA |
George Keishing | 37c58c8 | 2022-12-08 07:42:54 -0600 | [diff] [blame] | 30 | |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 31 | # Restore sys.path[0]. |
| 32 | sys.path.insert(0, save_path_0) |
| 33 | |
| 34 | |
| 35 | parser = argparse.ArgumentParser( |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 36 | usage="%(prog)s [OPTIONS]", |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 37 | description="%(prog)s will call a program using parameters retrieved" |
| 38 | + " from the given properties file.", |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 39 | formatter_class=argparse.ArgumentDefaultsHelpFormatter, |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 40 | prefix_chars="-+", |
| 41 | ) |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 42 | |
| 43 | parser.add_argument( |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 44 | "--prop_dir_path", |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 45 | default=os.environ.get("PROP_DIR_PATH", os.getcwd()), |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 46 | help="The path to the directory that contains the properties file." |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 47 | + ' The default value is environment variable "PROP_DIR_PATH", if' |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 48 | + " set. Otherwise, it is the current working directory.", |
| 49 | ) |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 50 | |
| 51 | parser.add_argument( |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 52 | "--prop_file_name", |
| 53 | help="The path to a properties file that contains the parameters to" |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 54 | + ' pass to the program. If the properties file has a ".properties"' |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 55 | + " extension, the caller need not specify the extension. The format" |
| 56 | + " of each line in the properties file should be as follows:" |
| 57 | + " <parm_name=parm_value>. Do not quote the parm value. To specify" |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 58 | + ' positional parms, use a parm name of "pos". For example: pos=this' |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 59 | " value", |
| 60 | ) |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 61 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 62 | parser.add_argument("program_name", help="The name of the program to be run.") |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 63 | |
| 64 | # Populate stock_list with options we want. |
| 65 | stock_list = [("test_mode", 0), ("quiet", 1), ("debug", 0)] |
| 66 | |
| 67 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 68 | def exit_function(signal_number=0, frame=None): |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 69 | r""" |
Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 70 | Execute whenever the program ends normally or with the signals that we catch (i.e. TERM, INT). |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 71 | """ |
| 72 | |
| 73 | dprint_executing() |
| 74 | dprint_var(signal_number) |
| 75 | |
| 76 | qprint_pgm_footer() |
| 77 | |
| 78 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 79 | def signal_handler(signal_number, frame): |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 80 | r""" |
Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 81 | Handle signals. Without a function to catch a SIGTERM or SIGINT, our program would terminate immediately |
| 82 | with return code 143 and without calling our exit_function. |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 83 | """ |
| 84 | |
Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 85 | # Our convention is to set up exit_function with atexit.register() so there is no need to explicitly |
| 86 | # call exit_function from here. |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 87 | |
| 88 | dprint_executing() |
| 89 | |
Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 90 | # Calling exit prevents us from returning to the code that was running when we received the signal. |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 91 | exit(0) |
| 92 | |
| 93 | |
| 94 | def validate_parms(): |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 95 | r""" |
Michael Walsh | 410b178 | 2019-10-22 15:56:18 -0500 | [diff] [blame] | 96 | Validate program parameters, etc. Return True or False (i.e. pass/fail) accordingly. |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 97 | """ |
| 98 | |
| 99 | global prop_dir_path |
| 100 | global prop_file_path |
| 101 | |
| 102 | if not valid_dir_path(prop_dir_path): |
| 103 | return False |
| 104 | prop_dir_path = add_trailing_slash(prop_dir_path) |
| 105 | |
| 106 | if not valid_value(prop_file_name): |
| 107 | return False |
| 108 | |
| 109 | prop_file_path = prop_dir_path + prop_file_name |
| 110 | |
| 111 | # If properties file is not found, try adding ".properties" extension. |
| 112 | if not os.path.isfile(prop_file_path): |
| 113 | alt_prop_file_path = prop_file_path + ".properties" |
| 114 | if os.path.isfile(alt_prop_file_path): |
| 115 | prop_file_path = alt_prop_file_path |
| 116 | |
| 117 | if not valid_file_path(prop_file_path): |
| 118 | return False |
| 119 | |
| 120 | if not valid_value(program_name): |
| 121 | return False |
| 122 | |
| 123 | gen_post_validation(exit_function, signal_handler) |
| 124 | |
| 125 | return True |
| 126 | |
| 127 | |
| 128 | def main(): |
Michael Walsh | 2179160 | 2018-03-23 16:45:00 -0500 | [diff] [blame] | 129 | if not gen_get_options(parser, stock_list): |
| 130 | return False |
| 131 | |
| 132 | if not validate_parms(): |
| 133 | return False |
| 134 | |
| 135 | qprint_pgm_header() |
| 136 | |
| 137 | # Get the parameters from the properties file. |
| 138 | properties = my_parm_file(prop_file_path) |
| 139 | # The parms (including program name) need to go into a list. |
| 140 | parms = [program_name] |
| 141 | for key, value in properties.items(): |
| 142 | if key == "pos": |
| 143 | # Process positional parm(s). |
| 144 | parms.extend(value.split()) |
| 145 | else: |
| 146 | parms.append("--" + key + "=" + escape_bash_quotes(value)) |
| 147 | |
| 148 | # parm_string is only created for display in non-quiet mode. |
| 149 | parm_string = " ".join(parms[1:]) |
| 150 | cmd_buf = program_name + " " + parm_string |
| 151 | qprint_issuing(cmd_buf) |
| 152 | if not test_mode: |
| 153 | os.execvp(program_name, parms) |
| 154 | |
| 155 | return True |
| 156 | |
| 157 | |
| 158 | # Main |
| 159 | |
| 160 | if not main(): |
| 161 | exit(1) |