forked from NOAA-GFDL/MDTF-diagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdtf_framework.py
executable file
·69 lines (60 loc) · 2.77 KB
/
mdtf_framework.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
# This is the top-level python script for the MDTF diagnostics package.
# See http://gfdl.noaa.gov/mdtf-diagnostics.
# NOTE: Under the standard installation procedure, users should never call this
# script directly, but should instead call the "mdtf" wrapper shell script
# created during installation.
import sys
# do version check before anything else
if sys.version_info.major != 3 or sys.version_info.minor < 10:
sys.exit("ERROR: The MDTF package requires python >= 3.10. Please check "
"which version of python is on your $PATH (e.g. with `which python`.)\n"
f"Attempted to run with following python version:\n{sys.version}")
# passed; continue with imports
import os
from src import cli
from src.util import logs
def validate_base_environment():
"""Check that the package's required third-party dependencies (listed in
src/conda/env_base.yml) are accessible.
"""
# checking existence of one third-party module is imperfect, but will
# catch the most common case where user hasn't installed environments
try:
import cfunits
except ModuleNotFoundError:
sys.exit("ERROR: MDTF dependency check failed. Please make sure the "
"package's base environment has been activated prior to execution, e.g. "
"by calling the 'mdtf' wrapper script.\nSee installation instructions "
"at mdtf-diagnostics.rtfd.io/en/latest/sphinx/start_install.html.")
def main(argv):
# get dir of currently executing script:
code_root = os.path.dirname(os.path.realpath(__file__))
# Cache log info in memory until log file is set up
logs.initial_log_config()
# poor man's subparser: argparse's subparser doesn't handle this
# use case easily, so just dispatch on first argument
if len(argv) == 1 or \
len(argv) == 2 and argv[1].lower() in ('-h', '--help'):
# case where we print CLI help
cli_obj = cli.MDTFTopLevelArgParser(code_root)
cli_obj.print_help()
return 0 # will actually exit from print_help
elif argv[1].lower() == 'info':
# case where we print command-line info on PODs
from src import mdtf_info
mdtf_info.InfoCLIHandler(code_root, argv[2:])
return 0 # will actually exit from print_help
else:
# case where we run the actual framework
print(f"=== Starting {os.path.realpath(__file__)}\n")
validate_base_environment()
# not printing help or info, setup CLI normally
cli_obj = cli.MDTFTopLevelArgParser(code_root,argv=argv)
framework = cli_obj.dispatch()
exit_code = framework.main()
return exit_code
if __name__ == '__main__':
argv = sys.argv[1::] if len(sys.argv[1::]) >= 2 else sys.argv
exit_code = main(argv)
sys.exit(exit_code)