blob: 78e65e5289fc20e48c02a30473464f018fa6e44b [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Michael Walsh7423c012016-10-04 10:27:21 -05002
Sridevi Ramesh47375aa2022-12-08 05:05:31 -06003
George Keishinge635ddc2022-12-08 07:38:02 -06004from gen_print import *
Sridevi Ramesh47375aa2022-12-08 05:05:31 -06005from gen_arg import *
6from gen_plug_in import *
George Keishinge635ddc2022-12-08 07:38:02 -06007
8import sys
9import os
Sridevi Ramesh47375aa2022-12-08 05:05:31 -060010
George Keishing36efbc02018-12-12 10:18:23 -060011try:
12 import __builtin__
13except ImportError:
14 import builtins as __builtin__
15
Michael Walsh7423c012016-10-04 10:27:21 -050016
Michael Walsh410b1782019-10-22 15:56:18 -050017# python puts the program's directory path in sys.path[0]. In other words, the user ordinarily has no way
18# to override python's choice of a module from its own dir. We want to have that ability in our environment.
19# However, we don't want to break any established python modules that depend on this behavior. So, we'll
20# save the value from sys.path[0], delete it, import our modules and then restore sys.path to its original
21# value.
Michael Walsh7423c012016-10-04 10:27:21 -050022
23save_path_0 = sys.path[0]
24del sys.path[0]
25
Michael Walsh7423c012016-10-04 10:27:21 -050026# Restore sys.path[0].
27sys.path.insert(0, save_path_0)
28
29
Michael Walsh7423c012016-10-04 10:27:21 -050030# Create parser object to process command line parameters and args.
31
32# Create parser object.
33parser = argparse.ArgumentParser(
George Keishinge635ddc2022-12-08 07:38:02 -060034 usage='%(prog)s [OPTIONS] [PLUG_IN_DIR_PATHS]',
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -050035 description="%(prog)s will validate the plug-in packages passed to it."
George Keishinge635ddc2022-12-08 07:38:02 -060036 + " It will also print a list of the absolute plug-in"
37 + " directory paths for use by the calling program.",
Michael Walshd0741f82017-12-21 14:04:21 -060038 formatter_class=argparse.ArgumentDefaultsHelpFormatter,
George Keishinge635ddc2022-12-08 07:38:02 -060039 prefix_chars='-+')
Michael Walsh7423c012016-10-04 10:27:21 -050040
41# Create arguments.
42parser.add_argument(
George Keishinge635ddc2022-12-08 07:38:02 -060043 'plug_in_dir_paths',
44 nargs='?',
Michael Walsh7423c012016-10-04 10:27:21 -050045 default="",
George Keishinge635ddc2022-12-08 07:38:02 -060046 help=plug_in_dir_paths_help_text + default_string)
Michael Walsh7423c012016-10-04 10:27:21 -050047
48parser.add_argument(
George Keishinge635ddc2022-12-08 07:38:02 -060049 '--mch_class',
50 default="obmc",
51 help=mch_class_help_text + default_string)
Michael Walsh7423c012016-10-04 10:27:21 -050052
Michael Walsh410b1782019-10-22 15:56:18 -050053# The stock_list will be passed to gen_get_options. We populate it with the names of stock parm options we
54# want. These stock parms are pre-defined by gen_get_options.
Michael Walsh7423c012016-10-04 10:27:21 -050055stock_list = [("test_mode", 0), ("quiet", 1), ("debug", 0)]
56
Michael Walsh7423c012016-10-04 10:27:21 -050057
George Keishinge635ddc2022-12-08 07:38:02 -060058def exit_function(signal_number=0,
59 frame=None):
Michael Walsh7423c012016-10-04 10:27:21 -050060 r"""
Michael Walsh410b1782019-10-22 15:56:18 -050061 Execute whenever the program ends normally or with the signals that we catch (i.e. TERM, INT).
Michael Walsh7423c012016-10-04 10:27:21 -050062 """
63
64 dprint_executing()
65 dprint_var(signal_number)
66
67 qprint_pgm_footer()
68
Michael Walsh7423c012016-10-04 10:27:21 -050069
Michael Walsh7423c012016-10-04 10:27:21 -050070def signal_handler(signal_number, frame):
Michael Walsh7423c012016-10-04 10:27:21 -050071 r"""
Michael Walsh410b1782019-10-22 15:56:18 -050072 Handle signals. Without a function to catch a SIGTERM or SIGINT, our program would terminate immediately
73 with return code 143 and without calling our exit_function.
Michael Walsh7423c012016-10-04 10:27:21 -050074 """
75
Michael Walsh410b1782019-10-22 15:56:18 -050076 # Our convention is to set up exit_function with atexit.registr() so there is no need to explicitly call
77 # exit_function from here.
Michael Walsh7423c012016-10-04 10:27:21 -050078
79 dprint_executing()
80
Michael Walsh410b1782019-10-22 15:56:18 -050081 # Calling exit prevents us from returning to the code that was running when we received the signal.
Michael Walsh7423c012016-10-04 10:27:21 -050082 exit(0)
83
Michael Walsh7423c012016-10-04 10:27:21 -050084
Michael Walsh7423c012016-10-04 10:27:21 -050085def validate_parms():
Michael Walsh7423c012016-10-04 10:27:21 -050086 r"""
87 Validate program parameters, etc. Return True or False accordingly.
88 """
89
90 gen_post_validation(exit_function, signal_handler)
91
92 return True
93
Michael Walsh7423c012016-10-04 10:27:21 -050094
Michael Walsh7423c012016-10-04 10:27:21 -050095def main():
Michael Walsh7423c012016-10-04 10:27:21 -050096 r"""
Michael Walsh410b1782019-10-22 15:56:18 -050097 This is the "main" function. The advantage of having this function vs just doing this in the true
98 mainline is that you can:
Michael Walsh7423c012016-10-04 10:27:21 -050099 - Declare local variables
100 - Use "return" instead of "exit".
101 - Indent 4 chars like you would in any function.
Michael Walsh410b1782019-10-22 15:56:18 -0500102 This makes coding more consistent, i.e. it's easy to move code from here into a function and vice versa.
Michael Walsh7423c012016-10-04 10:27:21 -0500103 """
104
105 if not gen_get_options(parser, stock_list):
106 return False
107
108 if not validate_parms():
109 return False
110
111 qprint_pgm_header()
112
113 # Access program parameter globals.
114 global plug_in_dir_paths
115 global mch_class
116
George Keishinge635ddc2022-12-08 07:38:02 -0600117 plug_in_packages_list = return_plug_in_packages_list(plug_in_dir_paths,
118 mch_class)
Michael Walshc2762f62019-05-17 15:21:35 -0500119 qprint_var(plug_in_packages_list)
Michael Walsh7423c012016-10-04 10:27:21 -0500120
Michael Walsh410b1782019-10-22 15:56:18 -0500121 # As stated in the help text, this program must print the full paths of each selected plug in.
Michael Walsh7423c012016-10-04 10:27:21 -0500122 for plug_in_dir_path in plug_in_packages_list:
123 print(plug_in_dir_path)
124
125 return True
126
Michael Walsh7423c012016-10-04 10:27:21 -0500127
Michael Walsh7423c012016-10-04 10:27:21 -0500128# Main
129
130if not main():
131 exit(1)