blob: c99d70ddcac2dafb040f3ef8a7886437fc22c443 [file] [log] [blame]
Michael Walshf4c62a22017-11-13 15:40:57 -06001#!/usr/bin/env python
2
3r"""
4This module provides functions which are useful to plug-in call point programs.
5"""
6
7import sys
8import os
9import re
10import collections
11
12import gen_print as gp
Michael Walsh3ba8ecd2018-04-24 11:33:25 -050013import gen_misc as gm
Michael Walsha6b46ed2018-06-01 14:31:23 -050014import gen_cmd as gc
15
16PLUG_VAR_PREFIX = os.environ.get("PLUG_VAR_PREFIX", "AUTOBOOT")
Michael Walshf4c62a22017-11-13 15:40:57 -060017
18
19def get_plug_in_package_name(case=None):
Michael Walshf4c62a22017-11-13 15:40:57 -060020 r"""
21 Return the plug-in package name (e.g. "OS_Console", "DB_Logging").
22
23 Description of argument(s):
24 case Indicates whether the value returned
25 should be converted to upper or lower
26 case. Valid values are "upper", "lower"
27 or None.
28 """
29
30 plug_in_package_name = os.path.basename(gp.pgm_dir_path[:-1])
31 if case == "upper":
32 return plug_in_package_name.upper()
33 elif case == "lower":
34 return plug_in_package_name.lower()
35 else:
36 return plug_in_package_name
37
38
Michael Walshfd7443d2018-10-30 13:12:18 -050039def return_plug_vars(general=True,
40 custom=True):
Michael Walshf4c62a22017-11-13 15:40:57 -060041 r"""
42 Return an OrderedDict which is sorted by key and which contains all of the
43 plug-in environment variables.
44
45 Example excerpt of resulting dictionary:
46
47 plug_var_dict:
Michael Walsh2ce1dba2019-02-05 19:29:28 +000048 [AUTOBOOT_BASE_TOOL_DIR_PATH]: /tmp/
Michael Walshf4c62a22017-11-13 15:40:57 -060049 [AUTOBOOT_BB_LEVEL]: <blank>
50 [AUTOBOOT_BOOT_FAIL]: 0
51 ...
52
53 This function also does the following:
Michael Walsha6b46ed2018-06-01 14:31:23 -050054 - Set a default value for environment variable
Michael Walshfaafa9c2018-06-27 16:39:31 -050055 AUTOBOOT_OPENBMC_NICKNAME/AUTOIPL_FSP1_NICKNAME if it is not already set.
Michael Walshf4c62a22017-11-13 15:40:57 -060056 - Register PASSWORD variables to prevent their values from being printed.
Michael Walsha6b46ed2018-06-01 14:31:23 -050057
58 Note: The programmer may set a default for any given environment variable
59 by declaring a global variable of the same name and setting its value.
60 For example, let's say the calling program has this global declaration:
61
62 PERF_EXERCISERS_TOTAL_TIMEOUT = '180'
63
64 If environment variable PERF_EXERCISERS_TOTAL_TIMEOUT is blank or not set,
65 this function will set it to 180.
Michael Walshfd7443d2018-10-30 13:12:18 -050066
67 Description of argument(s):
68 general Return general plug-in parms (e.g. those
69 beginning with "AUTOBOOT" or "AUTOGUI").
70 custom Return custom plug-in parms (i.e. those
71 beginning with the upper case name of the
72 plug-in package, for example
73 "OBMC_SAMPLE_PARM1").
Michael Walshf4c62a22017-11-13 15:40:57 -060074 """
75
Michael Walshfd7443d2018-10-30 13:12:18 -050076 regex_list = []
77 if not (general or custom):
78 return collections.OrderedDict()
Michael Walshf4c62a22017-11-13 15:40:57 -060079 plug_in_package_name = get_plug_in_package_name(case="upper")
Michael Walshfd7443d2018-10-30 13:12:18 -050080 if general:
81 regex_list = [PLUG_VAR_PREFIX, "AUTOGUI"]
82 if custom:
83 regex_list.append(plug_in_package_name)
84
85 regex = "^(" + "|".join(regex_list) + ")_"
Michael Walshf4c62a22017-11-13 15:40:57 -060086
87 # Set a default for nickname.
88 if os.environ.get("AUTOBOOT_OPENBMC_NICKNAME", "") == "":
89 os.environ['AUTOBOOT_OPENBMC_NICKNAME'] = \
90 os.environ.get("AUTOBOOT_OPENBMC_HOST", "")
91
Michael Walsha6b46ed2018-06-01 14:31:23 -050092 if os.environ.get("AUTOIPL_FSP1_NICKNAME", "") == "":
93 os.environ['AUTOIPL_FSP1_NICKNAME'] = \
94 os.environ.get("AUTOIPL_FSP1_NAME", "").split(".")[0]
95
Michael Walsh3ba8ecd2018-04-24 11:33:25 -050096 # For all variables specified in the parm_def file, we want them to
97 # default to "" rather than being unset.
98 # Process the parm_def file if it exists.
99 parm_def_file_path = gp.pgm_dir_path + "parm_def"
100 if os.path.exists(parm_def_file_path):
101 parm_defs = gm.my_parm_file(parm_def_file_path)
102 else:
103 parm_defs = collections.OrderedDict()
104 # Example parm_defs:
105 # parm_defs:
106 # parm_defs[rest_fail]: boolean
107 # parm_defs[command]: string
108 # parm_defs[esel_stop_file_path]: string
109
110 # Create a list of plug-in environment variables by pre-pending <all caps
111 # plug-in package name>_<all caps var name>
112 plug_in_parm_names = [plug_in_package_name + "_" + x for x in
113 map(str.upper, parm_defs.keys())]
114 # Example plug_in_parm_names:
115 # plug_in_parm_names:
116 # plug_in_parm_names[0]: STOP_REST_FAIL
117 # plug_in_parm_names[1]: STOP_COMMAND
118 # plug_in_parm_names[2]: STOP_ESEL_STOP_FILE_PATH
119
120 # Initialize unset plug-in vars.
121 for var_name in plug_in_parm_names:
Michael Walsha6b46ed2018-06-01 14:31:23 -0500122 # If there is a global variable with the same name as the environment
123 # variable, use its value as a default.
124 default_value = gm.get_mod_global(var_name, "")
125 os.environ[var_name] = os.environ.get(var_name, default_value)
126 if os.environ[var_name] == "":
127 os.environ[var_name] = default_value
Michael Walsh3ba8ecd2018-04-24 11:33:25 -0500128
Michael Walshf4c62a22017-11-13 15:40:57 -0600129 plug_var_dict = \
130 collections.OrderedDict(sorted({k: v for (k, v) in
Gunnar Mills096cd562018-03-26 10:19:12 -0500131 os.environ.items()
132 if re.match(regex, k)}.items()))
Michael Walshf4c62a22017-11-13 15:40:57 -0600133 # Register password values to prevent printing them out. Any plug var
134 # whose name ends in PASSWORD will be registered.
135 password_vals = {k: v for (k, v) in plug_var_dict.items()
136 if re.match(r".*_PASSWORD$", k)}.values()
137 map(gp.register_passwords, password_vals)
138
139 return plug_var_dict
140
141
Michael Walshfd7443d2018-10-30 13:12:18 -0500142def sprint_plug_vars(headers=1, **kwargs):
Michael Walshf4c62a22017-11-13 15:40:57 -0600143 r"""
Michael Walsha6b46ed2018-06-01 14:31:23 -0500144 Sprint the plug-in environment variables (i.e. those that begin with the
145 global PLUG_VAR_PREFIX value or those that begin with <plug-in
146 package_name>_ in upper case letters.).
Michael Walshf4c62a22017-11-13 15:40:57 -0600147
148 Example excerpt of output:
Michael Walsh2ce1dba2019-02-05 19:29:28 +0000149 AUTOBOOT_BASE_TOOL_DIR_PATH=/tmp/
Michael Walshf4c62a22017-11-13 15:40:57 -0600150 AUTOBOOT_BB_LEVEL=
151 AUTOBOOT_BOOT_FAIL=0
152 AUTOBOOT_BOOT_FAIL_THRESHOLD=1000000
153
154 Description of argument(s):
155 headers Print a header and a footer.
Michael Walshfd7443d2018-10-30 13:12:18 -0500156 kwargs These are passed directly to
157 return_plug_vars. See return_plug_vars
158 doc string for details.
Michael Walshf4c62a22017-11-13 15:40:57 -0600159 """
Michael Walshfd7443d2018-10-30 13:12:18 -0500160 plug_var_dict = return_plug_vars(**kwargs)
Michael Walshf4c62a22017-11-13 15:40:57 -0600161 buffer = ""
162 if headers:
163 buffer += "\n" + gp.sprint_dashes()
164 for key, value in plug_var_dict.items():
Michael Walshfd7443d2018-10-30 13:12:18 -0500165 buffer += gp.sprint_varx(key, value)
Michael Walshf4c62a22017-11-13 15:40:57 -0600166 if headers:
167 buffer += gp.sprint_dashes() + "\n"
168
169 return buffer
170
171
Michael Walshfd7443d2018-10-30 13:12:18 -0500172def print_plug_in_header():
173 r"""
174 Print plug-in header.
175
176 When debug is set, print all plug_prefix variables (e.g.
177 AUTOBOOT_OPENBMC_HOST, etc.) and all plug-in environment variables (e.g.
178 OBMC_SAMPLE_PARM1) with surrounding dashed lines. When debug is not set,
179 print only the plug-in environment variables (e.g. OBMC_SAMPLE_PARM1) with
180 no surrounding dashed lines.
181
182 NOTE: plug-in environment variables means any variable defined in the
183 <plug-in dir>/parm_def file plus any environment variables whose names
184 begin with the upper-case plug-in package name.
185 """
186
187 dprint_plug_vars()
188 if not debug:
189 qprint_plug_vars(headers=0, general=False, custom=True)
190
191
Michael Walsh8b79b052019-05-02 17:07:08 -0500192def get_plug_vars(mod_name="__main__"):
Michael Walshf4c62a22017-11-13 15:40:57 -0600193 r"""
194 Get all plug-in variables and put them in corresponding global variables.
195
Michael Walsha6b46ed2018-06-01 14:31:23 -0500196 This would include all environment variables beginning with either the
197 global PLUG_VAR_PREFIX value or with the upper case version of the plug-in
198 package name + underscore (e.g. OP_SAMPLE_VAR1 for plug-in OP_Sample).
Michael Walshf4c62a22017-11-13 15:40:57 -0600199
Michael Walsha6b46ed2018-06-01 14:31:23 -0500200 The global variables to be set will be both with and without the global
201 PLUG_VAR_PREFIX value prefix. For example, if the environment variable in
202 question is AUTOBOOT_OPENBMC_HOST, this function will set global variable
Michael Walshf4c62a22017-11-13 15:40:57 -0600203 AUTOBOOT_OPENBMC_HOST and global variable OPENBMC_HOST.
Michael Walsh8b79b052019-05-02 17:07:08 -0500204
205 Description of argument(s):
206 mod_name The name of the module whose global
207 plug-in variables should be retrieved.
Michael Walshf4c62a22017-11-13 15:40:57 -0600208 """
209
Michael Walsh8b79b052019-05-02 17:07:08 -0500210 module = sys.modules[mod_name]
Michael Walshf4c62a22017-11-13 15:40:57 -0600211 plug_var_dict = return_plug_vars()
212
Michael Walsha6b46ed2018-06-01 14:31:23 -0500213 # Get all PLUG_VAR_PREFIX environment variables and put them into globals.
Michael Walshf4c62a22017-11-13 15:40:57 -0600214 for key, value in plug_var_dict.items():
215 setattr(module, key, value)
Michael Walsha6b46ed2018-06-01 14:31:23 -0500216 setattr(module, re.sub("^" + PLUG_VAR_PREFIX + "_", "", key), value)
Michael Walshf4c62a22017-11-13 15:40:57 -0600217
218
219def get_plug_default(var_name,
220 default=None):
Michael Walshf4c62a22017-11-13 15:40:57 -0600221 r"""
222 Derive and return a default value for the given parm variable.
223
Michael Walsha6b46ed2018-06-01 14:31:23 -0500224 Dependencies:
225 Global variable PLUG_VAR_PREFIX must be set.
226
Michael Walshf4c62a22017-11-13 15:40:57 -0600227 This function will assign a default by checking the following environment
228 variables in the order shown. The first one that has a value will be used.
229 - <upper case package_name>_<var_name>
Michael Walsha6b46ed2018-06-01 14:31:23 -0500230 - <PLUG_VAR_PREFIX>_OVERRIDE_<var_name>
231 - <PLUG_VAR_PREFIX>_<var_name>
Michael Walshf4c62a22017-11-13 15:40:57 -0600232
233 If none of these are found, this function will return the value passed by
234 the caller in the "default" parm.
235
236 Example:
237
238 Let's say your plug-in is named "OS_Console" and you call this function as
239 follows:
240
241 get_plug_default("quiet", 0)
242
243 The first of these environment variables that is found to be set will be
244 used to provide the default value.
245 - OS_CONSOLE_QUIET
246 - AUTOBOOT_OVERRIDE_QUIET
247 - AUTOBOOT_QUIET
248
249 If none of those has a value, 0 (as specified by the caller in this
250 example) is returned.
251
252 Let's say the master driver program is named obmc_boot. obmc_boot program
253 is responsible for calling plug-ins. Let's further suppose that the user
254 wishes to run the master program with --debug=0 but wishes to have all
255 plug-ins run with --debug=1. This could be accomplished with the
256 following call:
257 export AUTOBOOT_OVERRIDE_DEBUG=1 ; obmc_boot --debug=0
258 --plug_in_dir_paths=<list of plug ins>
259
260 As another example, let's suppose that the user wishes to have just the
261 OS_Console plug-in run with debug and everything else to default to
262 debug=0. This could be accomplished as follows:
263 export OS_CONSOLE_DEBUG=1 ; obmc_boot --debug=0 --plug_in_dir_paths=<list
264 of plug ins>
265
266 And as one more example, let's say the user wishes to have obmc_boot and
267 OS_Console run without debug but have all other plug-ins run with debug:
268 export AUTOBOOT_OVERRIDE_DEBUG=1 ; export OS_CONSOLE_DEBUG=0 ; obmc_boot
269 --debug=0 --plug_in_dir_paths=<list of plug ins>
270
271 Description of argument(s):
272 var_name The name of the variable for which a
273 default value is to be calculated.
274 default The default value if one cannot be
275 determined.
276 """
277
278 var_name = var_name.upper()
279 plug_in_package_name = get_plug_in_package_name(case="upper")
280
281 package_var_name = plug_in_package_name + "_" + var_name
282 default_value = os.environ.get(package_var_name, None)
283 if default_value is not None:
284 # A package-name version of the variable was found so return its value.
285 return(default_value)
286
Michael Walsha6b46ed2018-06-01 14:31:23 -0500287 plug_var_name = PLUG_VAR_PREFIX + "_OVERRIDE_" + var_name
288 default_value = os.environ.get(plug_var_name, None)
Michael Walshf4c62a22017-11-13 15:40:57 -0600289 if default_value is not None:
Michael Walsha6b46ed2018-06-01 14:31:23 -0500290 # A PLUG_VAR_PREFIX version of the variable was found so return its
291 # value.
Michael Walshf4c62a22017-11-13 15:40:57 -0600292 return default_value
293
Michael Walsha6b46ed2018-06-01 14:31:23 -0500294 plug_var_name = PLUG_VAR_PREFIX + "_" + var_name
295 default_value = os.environ.get(plug_var_name, None)
Michael Walshf4c62a22017-11-13 15:40:57 -0600296 if default_value is not None:
Michael Walsha6b46ed2018-06-01 14:31:23 -0500297 # A PLUG_VAR_PREFIX version of the variable was found so return its
298 # value.
Michael Walshf4c62a22017-11-13 15:40:57 -0600299 return default_value
300
301 return default
302
303
304def srequired_plug_in(req_plug_in_names,
305 plug_in_dir_paths=None):
Michael Walshf4c62a22017-11-13 15:40:57 -0600306 r"""
307 Return an empty string if the required plug-ins are found in
308 plug_in_dir_paths. Otherwise, return an error string.
309
310 Example call:
311 error_message = srequired_plug_in(req_plug_in_names, plug_in_dir_paths)
312
313 Description of argument(s):
314 req_plug_in_names A list of plug_in names that the caller
315 requires (e.g. ['OS_Console']).
316 plug_in_dir_paths A string which is a colon-delimited list
317 of plug-ins specified by the user (e.g.
318 DB_Logging:FFDC:OS_Console:Perf). Path
319 values (e.g. "/home/robot/dir1") will be
320 stripped from this list to do the
321 analysis. Default value is the
Michael Walsha6b46ed2018-06-01 14:31:23 -0500322 <PLUG_VAR_PREFIX>_PLUG_IN_DIR_PATHS
323 environment variable.
Michael Walshf4c62a22017-11-13 15:40:57 -0600324 """
325
326 # Calculate default value for plug_in_dir_paths.
327 if plug_in_dir_paths is None:
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500328 plug_in_dir_paths = os.environ.get(PLUG_VAR_PREFIX
329 + "_PLUG_IN_DIR_PATHS", "")
Michael Walshf4c62a22017-11-13 15:40:57 -0600330
331 error_message = ""
332
333 # Convert plug_in_dir_paths to a list of base names.
334 plug_in_dir_paths = \
Michael Walsh6aa5a9e2018-08-07 15:04:56 -0500335 list(filter(None, map(os.path.basename, plug_in_dir_paths.split(":"))))
Michael Walshf4c62a22017-11-13 15:40:57 -0600336
337 # Check for each of the user's required plug-ins.
338 for plug_in_name in req_plug_in_names:
339 if plug_in_name not in plug_in_dir_paths:
340 error_message = "The \"" + get_plug_in_package_name() +\
341 "\" plug-in cannot run unless the user also selects the \"" +\
342 plug_in_name + "\" plug in:\n" +\
343 gp.sprint_var(plug_in_dir_paths)
344
345 return error_message
346
347
348def required_plug_in(req_plug_in_names,
349 plug_in_dir_paths=None):
Michael Walshf4c62a22017-11-13 15:40:57 -0600350 r"""
351 Return True if each of the plug-ins in req_plug_in_names can be found in
352 plug_in_dir_paths Otherwise, return False and print an error message to
353 stderr.
354
355 Example call:
356 if not required_plug_in(['OS_Console'], AUTOBOOT_PLUG_IN_DIR_PATHS):
357 return False
358
359 Description of argument(s):
360 (See Description of arguments for srequired_plug_in (above)).
361 """
362
363 error_message = srequired_plug_in(req_plug_in_names, plug_in_dir_paths)
364 if not error_message == "":
365 gp.print_error_report(error_message)
366 return False
367
368 return True
369
370
Michael Walsh96ffeb72018-08-23 11:37:22 -0500371def compose_plug_in_save_dir_path(plug_in_package_name=None):
Michael Walsha6b46ed2018-06-01 14:31:23 -0500372 r"""
373 Create and return a directory path name that is suitable for saving
374 plug-in data.
375
376 The name will be comprised of things such as plug_in package name, pid,
377 etc. in order to guarantee that it is unique for a given test run.
Michael Walsh96ffeb72018-08-23 11:37:22 -0500378
379 Description of argument(s):
380 plug_in_package_name The plug-in package name. This defaults
381 to the name of the caller's plug-in
382 package. However, the caller can specify
383 another value in order to retrieve data
384 saved by another plug-in package.
Michael Walsha6b46ed2018-06-01 14:31:23 -0500385 """
386
Michael Walsh96ffeb72018-08-23 11:37:22 -0500387 plug_in_package_name = gm.dft(plug_in_package_name,
388 get_plug_in_package_name())
389
Michael Walsha6b46ed2018-06-01 14:31:23 -0500390 BASE_TOOL_DIR_PATH = \
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500391 gm.add_trailing_slash(os.environ.get(PLUG_VAR_PREFIX
Michael Walsh2ce1dba2019-02-05 19:29:28 +0000392 + "_BASE_TOOL_DIR_PATH",
393 "/tmp/"))
Michael Walsha6b46ed2018-06-01 14:31:23 -0500394 NICKNAME = os.environ.get("AUTOBOOT_OPENBMC_NICKNAME", "")
395 if NICKNAME == "":
396 NICKNAME = os.environ["AUTOIPL_FSP1_NICKNAME"]
397 MASTER_PID = os.environ[PLUG_VAR_PREFIX + "_MASTER_PID"]
Michael Walsh2ce1dba2019-02-05 19:29:28 +0000398 gp.pvars(BASE_TOOL_DIR_PATH, NICKNAME, plug_in_package_name, MASTER_PID)
399 return BASE_TOOL_DIR_PATH + gm.username() + "/" + NICKNAME + "/" +\
400 plug_in_package_name + "/" + str(MASTER_PID) + "/"
Michael Walsha6b46ed2018-06-01 14:31:23 -0500401
402
Michael Walsh96ffeb72018-08-23 11:37:22 -0500403def create_plug_in_save_dir(plug_in_package_name=None):
Michael Walsha6b46ed2018-06-01 14:31:23 -0500404 r"""
Michael Walsh024a2f32019-04-18 10:55:34 -0500405 Create a directory suitable for saving plug-in processing data and return
406 its path name.
407
408 See compose_plug_in_save_dir_path for details.
Michael Walsh96ffeb72018-08-23 11:37:22 -0500409
410 Description of argument(s):
411 plug_in_package_name See compose_plug_in_save_dir_path for
412 details.
Michael Walsha6b46ed2018-06-01 14:31:23 -0500413 """
414
Michael Walsh96ffeb72018-08-23 11:37:22 -0500415 plug_in_save_dir_path = compose_plug_in_save_dir_path(plug_in_package_name)
Michael Walsha6b46ed2018-06-01 14:31:23 -0500416 if os.path.isdir(plug_in_save_dir_path):
417 return plug_in_save_dir_path
418 gc.shell_cmd("mkdir -p " + plug_in_save_dir_path)
419 return plug_in_save_dir_path
420
421
Michael Walsh96ffeb72018-08-23 11:37:22 -0500422def delete_plug_in_save_dir(plug_in_package_name=None):
Michael Walsha6b46ed2018-06-01 14:31:23 -0500423 r"""
424 Delete the plug_in save directory. See compose_plug_in_save_dir_path for
425 details.
Michael Walsh96ffeb72018-08-23 11:37:22 -0500426
427 Description of argument(s):
428 plug_in_package_name See compose_plug_in_save_dir_path for
429 details.
Michael Walsha6b46ed2018-06-01 14:31:23 -0500430 """
431
Michael Walsh96ffeb72018-08-23 11:37:22 -0500432 gc.shell_cmd("rm -rf "
433 + compose_plug_in_save_dir_path(plug_in_package_name))
Michael Walsha6b46ed2018-06-01 14:31:23 -0500434
435
Michael Walsh96ffeb72018-08-23 11:37:22 -0500436def save_plug_in_value(value, plug_in_package_name=None):
Michael Walsha6b46ed2018-06-01 14:31:23 -0500437 r"""
438 Save a value in a plug-in save file. The value may be retrieved later via
439 a call to the restore_plug_in_value function.
440
441 This function will figure out the variable name of the value passed and
442 use that name in creating the plug-in save file.
443
444 Example call:
445
446 my_var1 = 5
447 save_plug_in_value(my_var1)
448
449 In this example, the value "5" would be saved to the "my_var1" file in the
450 plug-in save directory.
451
452 Description of argument(s):
453 value The value to be saved.
Michael Walsh96ffeb72018-08-23 11:37:22 -0500454 plug_in_package_name See compose_plug_in_save_dir_path for
455 details.
Michael Walsha6b46ed2018-06-01 14:31:23 -0500456 """
457
458 # Get the name of the variable used as argument one to this function.
459 var_name = gp.get_arg_name(0, 1, stack_frame_ix=2)
Michael Walsh96ffeb72018-08-23 11:37:22 -0500460 plug_in_save_dir_path = create_plug_in_save_dir(plug_in_package_name)
Michael Walsha6b46ed2018-06-01 14:31:23 -0500461 save_file_path = plug_in_save_dir_path + var_name
462 gp.qprint_timen("Saving \"" + var_name + "\" value.")
463 gc.shell_cmd("echo '" + str(value) + "' > " + save_file_path)
464
465
Michael Walsh96ffeb72018-08-23 11:37:22 -0500466def restore_plug_in_value(default="", plug_in_package_name=None):
Michael Walsha6b46ed2018-06-01 14:31:23 -0500467 r"""
468 Return a value from a plug-in save file.
469
470 The name of the value to be restored will be determined by this function
471 based on the lvalue being assigned. Consider the following example:
472
473 my_var1 = restore_plug_in_value(2)
474
475 In this example, this function would look for the "my_var1" file in the
476 plug-in save directory, read its value and return it. If no such file
477 exists, the default value of 2 would be returned.
478
479 Description of argument(s):
480 default The default value to be returned if there
481 is no plug-in save file for the value in
482 question.
Michael Walsh96ffeb72018-08-23 11:37:22 -0500483 plug_in_package_name See compose_plug_in_save_dir_path for
484 details.
Michael Walsha6b46ed2018-06-01 14:31:23 -0500485 """
486
487 # Get the lvalue from the caller's invocation of this function.
488 lvalue = gp.get_arg_name(0, -1, stack_frame_ix=2)
Michael Walsh96ffeb72018-08-23 11:37:22 -0500489 plug_in_save_dir_path = create_plug_in_save_dir(plug_in_package_name)
Michael Walsha6b46ed2018-06-01 14:31:23 -0500490 save_file_path = plug_in_save_dir_path + lvalue
491 if os.path.isfile(save_file_path):
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500492 gp.qprint_timen("Restoring " + lvalue + " value from "
493 + save_file_path + ".")
Michael Walsh25f0f162018-09-10 13:57:11 -0500494 value = gm.file_to_list(save_file_path, newlines=0, comments=0,
495 trim=1)[0]
496 if type(default) is bool:
497 # Convert from string to bool.
498 value = (value == 'True')
499 if type(default) is int:
500 # Convert from string to int.
501 value = int(value)
502 gp.qprint_varx(lvalue, value)
503 return value
Michael Walsha6b46ed2018-06-01 14:31:23 -0500504 else:
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500505 gp.qprint_timen("Save file " + save_file_path
506 + " does not exist so returning default value.")
Michael Walsh25f0f162018-09-10 13:57:11 -0500507 gp.qprint_var(default)
Michael Walsha6b46ed2018-06-01 14:31:23 -0500508 return default
509
510
Michael Walsh99beb652019-02-25 10:45:23 -0600511def exit_not_master():
512 r"""
513 Exit the program with return code zero if this program was NOT called by
514 the master program.
515
516 There are cases where plug-ins are called by a multi-layered stack:
517
518 master_wrapper
519 obmc_boot_test.py
520 Example_plug_in/cp_setup
521
522 In a scenario like this, Example_plug_in/cp_setup may be called once
523 directly by master_wrapper (the master) and and then called again directly
524 by obmc_boot_test.py (the child). Some plug-in programs may wish to avoid
George Keishing4066eed2019-03-09 23:19:35 -0600525 doing any processing on the second such call. This function will achieve
Michael Walsh99beb652019-02-25 10:45:23 -0600526 that purpose.
527
528 This function will print a standard message to stdout prior to exiting.
529 """
530
531 AUTOBOOT_MASTER_PID = gm.get_mod_global("AUTOBOOT_MASTER_PID")
532 AUTOBOOT_PROGRAM_PID = gm.get_mod_global("AUTOBOOT_PROGRAM_PID")
533
534 if AUTOBOOT_MASTER_PID != AUTOBOOT_PROGRAM_PID:
535 message = get_plug_in_package_name() + "/" + gp.pgm_name + " is not" \
536 + " being called by the master program in the stack so no action" \
537 + " will be taken."
538 gp.qprint_timen(message)
539 gp.qprint_vars(AUTOBOOT_MASTER_PID, AUTOBOOT_PROGRAM_PID)
540 exit(0)
541
542
Michael Walshf4c62a22017-11-13 15:40:57 -0600543# Create print wrapper functions for all sprint functions defined above.
544# func_names contains a list of all print functions which should be created
545# from their sprint counterparts.
546func_names = ['print_plug_vars']
547
548# stderr_func_names is a list of functions whose output should go to stderr
549# rather than stdout.
550stderr_func_names = []
551
552replace_dict = dict(gp.replace_dict)
Michael Walsh81c02342018-01-05 15:43:28 -0600553replace_dict['mod_qualifier'] = 'gp.'
Michael Walshf4c62a22017-11-13 15:40:57 -0600554func_defs = gp.create_print_wrapper_funcs(func_names, stderr_func_names,
555 replace_dict)
556gp.gp_debug_print(func_defs)
557exec(func_defs)