-
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy path_cli_parsing.py
90 lines (75 loc) · 2.56 KB
/
_cli_parsing.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
"""Argument parser initialization logic.
This defines helpers for setting up both the root parser and the parsers
of all the sub-commands.
"""
from argparse import ArgumentParser
from pre_commit_terraform._cli_subcommands import SUBCOMMAND_MODULES
def populate_common_argument_parser(parser: ArgumentParser) -> None:
"""
Populate the argument parser with the common arguments.
Args:
parser (argparse.ArgumentParser): The argument parser to populate.
"""
parser.add_argument(
'-a',
'--args',
action='append',
help='Arguments that configure wrapped tool behavior',
default=[],
)
parser.add_argument(
'-h',
'--hook-config',
action='append',
metavar='KEY=VALUE',
help='Arguments that configure hook behavior',
default=[],
)
parser.add_argument(
'-i',
'--tf-init-args',
'--init-args',
action='append',
help='Arguments for `tf init` command',
default=[],
)
parser.add_argument(
'-e',
'--env-vars',
'--envs',
dest='env_vars_strs',
metavar='KEY=VALUE',
action='append',
help='Setup additional Environment Variables during hook execution',
default=[],
)
parser.add_argument('files', nargs='*', help='Changed files paths')
def attach_subcommand_parsers_to(root_cli_parser: ArgumentParser, /) -> None:
"""Connect all sub-command parsers to the given one.
This functions iterates over a mapping of subcommands to their
respective population functions, executing them to augment the
main parser.
"""
subcommand_parsers = root_cli_parser.add_subparsers(
dest='check_name',
required=True,
)
for subcommand_module in SUBCOMMAND_MODULES:
subcommand_parser = subcommand_parsers.add_parser(
subcommand_module.HOOK_ID,
add_help=False,
)
subcommand_parser.set_defaults(
invoke_cli_app=subcommand_module.invoke_cli_app,
)
populate_common_argument_parser(subcommand_parser)
subcommand_module.populate_hook_specific_argument_parser(subcommand_parser)
def initialize_argument_parser() -> ArgumentParser:
"""
Parse the command line arguments and return the parsed arguments.
Return the root argument parser with sub-commands.
"""
root_cli_parser = ArgumentParser(prog=f'python -m {__package__ !s}')
attach_subcommand_parsers_to(root_cli_parser)
return root_cli_parser
__all__ = ('initialize_argument_parser',)