mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-08-30 06:49:54 +00:00
Enable to specify multiple config file for config.py
Signed-off-by: Gabor Mezei <[email protected]>
This commit is contained in:
@@ -387,7 +387,7 @@ class ConfigTool(metaclass=ABCMeta):
|
|||||||
Custom parser options can be added by overriding 'custom_parser_options'.
|
Custom parser options can be added by overriding 'custom_parser_options'.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, default_file_path):
|
def __init__(self, default_file_path, single_config=True):
|
||||||
"""Create parser for config manipulation tool.
|
"""Create parser for config manipulation tool.
|
||||||
|
|
||||||
:param default_file_path: Default configuration file path
|
:param default_file_path: Default configuration file path
|
||||||
@@ -397,7 +397,7 @@ class ConfigTool(metaclass=ABCMeta):
|
|||||||
Configuration file manipulation tool.""")
|
Configuration file manipulation tool.""")
|
||||||
self.subparsers = self.parser.add_subparsers(dest='command',
|
self.subparsers = self.parser.add_subparsers(dest='command',
|
||||||
title='Commands')
|
title='Commands')
|
||||||
self._common_parser_options(default_file_path)
|
self._common_parser_options(default_file_path, single_config)
|
||||||
self.custom_parser_options()
|
self.custom_parser_options()
|
||||||
self.args = self.parser.parse_args()
|
self.args = self.parser.parse_args()
|
||||||
self.config = Config() # Make the pylint happy
|
self.config = Config() # Make the pylint happy
|
||||||
@@ -408,14 +408,17 @@ class ConfigTool(metaclass=ABCMeta):
|
|||||||
subparser = self.subparsers.add_parser(name, help=description)
|
subparser = self.subparsers.add_parser(name, help=description)
|
||||||
subparser.set_defaults(adapter=function)
|
subparser.set_defaults(adapter=function)
|
||||||
|
|
||||||
def _common_parser_options(self, default_file_path):
|
def _common_parser_options(self, default_file_path, single_config=True):
|
||||||
# pylint: disable=too-many-branches
|
# pylint: disable=too-many-branches
|
||||||
"""Common parser options for config manipulation tool."""
|
"""Common parser options for config manipulation tool."""
|
||||||
|
|
||||||
self.parser.add_argument(
|
self.parser.add_argument(
|
||||||
'--file', '-f',
|
'--file', '-f',
|
||||||
help="""File to read (and modify if requested). Default: {}.
|
action='store' if single_config else 'append',
|
||||||
""".format(default_file_path))
|
help=("""File to read (and modify if requested). Default: {}.""" if single_config else
|
||||||
|
"""Files to read (and modify if requested). Default: {}.
|
||||||
|
Can be used multiple times to specify more config files."""
|
||||||
|
).format(default_file_path))
|
||||||
self.parser.add_argument(
|
self.parser.add_argument(
|
||||||
'--force', '-o',
|
'--force', '-o',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
|
|||||||
Reference in New Issue
Block a user