blob: 7988195372418fd5ff61e1c55ad76ee4bc875ee6 [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Michael Walshffe21d72018-08-20 15:01:58 -05002
3r"""
4See help text for details.
5"""
6
George Keishinge635ddc2022-12-08 07:38:02 -06007import sys
8
Sridevi Ramesh47375aa2022-12-08 05:05:31 -06009save_path_0 = sys.path[0]
10del sys.path[0]
11
George Keishing09679892022-12-08 08:21:52 -060012from gen_arg import * # NOQA
13from gen_print import * # NOQA
14from gen_valid import * # NOQA
15from openbmc_ffdc_list import * # NOQA
George Keishing37c58c82022-12-08 07:42:54 -060016
Michael Walshffe21d72018-08-20 15:01:58 -050017# Restore sys.path[0].
18sys.path.insert(0, save_path_0)
19
20# Set exit_on_error for gen_valid functions.
21set_exit_on_error(True)
22
23parser = argparse.ArgumentParser(
Patrick Williamsa57fef42022-12-03 07:00:14 -060024 usage="%(prog)s [OPTIONS]",
George Keishinge635ddc2022-12-08 07:38:02 -060025 description="%(prog)s will print a colon-delimited list of all valid OBMC FFDC functions.\n\nExample:"
26 + "\n\n\nDump Log:FFDC Generic Report:Get Request FFDC:SEL Log:BMC Specific Files:Sys Inventory Files"
Patrick Williamsa57fef42022-12-03 07:00:14 -060027 + ":Core Files:OS FFDC:Dump Files",
Michael Walshffe21d72018-08-20 15:01:58 -050028 formatter_class=argparse.RawDescriptionHelpFormatter,
Patrick Williamsa57fef42022-12-03 07:00:14 -060029 prefix_chars="-+",
30)
Michael Walshffe21d72018-08-20 15:01:58 -050031
32# Populate stock_list with options we want.
33stock_list = [("test_mode", 0), ("quiet", 1), ("debug", 0)]
34
35
Patrick Williamsa57fef42022-12-03 07:00:14 -060036def exit_function(signal_number=0, frame=None):
Michael Walshffe21d72018-08-20 15:01:58 -050037 r"""
38 Execute whenever the program ends normally or with the signals that we catch (i.e. TERM, INT).
39 """
40
41 dprint_executing()
42 dprint_var(signal_number)
43
44 qprint_pgm_footer()
45
46
Patrick Williamsa57fef42022-12-03 07:00:14 -060047def signal_handler(signal_number, frame):
Michael Walshffe21d72018-08-20 15:01:58 -050048 r"""
49 Handle signals. Without a function to catch a SIGTERM or SIGINT, our program would terminate immediately
50 with return code 143 and without calling our exit_function.
51 """
52
53 # Our convention is to set up exit_function with atexit.register() so there is no need to explicitly
54 # call exit_function from here.
55
56 dprint_executing()
57
58 # Calling exit prevents us from returning to the code that was running when we received the signal.
59 exit(0)
60
61
62def validate_parms():
63 r"""
64 Validate program parameters, etc.
65 """
66
67 gen_post_validation(exit_function, signal_handler)
68
69
70def main():
George Keishinge635ddc2022-12-08 07:38:02 -060071
Michael Walshffe21d72018-08-20 15:01:58 -050072 gen_get_options(parser, stock_list)
73
74 validate_parms()
75
76 qprint_pgm_header()
77
78 my_openbmc_ffdc_list = openbmc_ffdc_list()
Patrick Williamsa57fef42022-12-03 07:00:14 -060079 ffdc_function_list = my_openbmc_ffdc_list.get_ffdc_method_desc("BMC LOGS")
Michael Walshffe21d72018-08-20 15:01:58 -050080 # Convert from list to colon-delimited string.
Patrick Williamsa57fef42022-12-03 07:00:14 -060081 ffdc_function_list = ":".join(ffdc_function_list)
Michael Walshffe21d72018-08-20 15:01:58 -050082 print(ffdc_function_list)
83
84
85main()