Coverage for pyTooling/Attributes/ArgParse/KeyValueFlag.py: 48%
21 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-22 21:29 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-22 21:29 +0000
1# ==================================================================================================================== #
2# _ _ _ _ _ _ _ ____ #
3# / \ | |_| |_ _ __(_) |__ _ _| |_ ___ ___ / \ _ __ __ _| _ \ __ _ _ __ ___ ___ #
4# / _ \| __| __| '__| | '_ \| | | | __/ _ \/ __| / _ \ | '__/ _` | |_) / _` | '__/ __|/ _ \ #
5# _ _ _ / ___ \ |_| |_| | | | |_) | |_| | || __/\__ \_ / ___ \| | | (_| | __/ (_| | | \__ \ __/ #
6# (_|_|_)_/ \_\__|\__|_| |_|_.__/ \__,_|\__\___||___(_)_/ \_\_| \__, |_| \__,_|_| |___/\___| #
7# |___/ #
8# ==================================================================================================================== #
9# Authors: #
10# Patrick Lehmann #
11# #
12# License: #
13# ==================================================================================================================== #
14# Copyright 2017-2026 Patrick Lehmann - Bötzingen, Germany #
15# Copyright 2007-2016 Patrick Lehmann - Dresden, Germany #
16# #
17# Licensed under the Apache License, Version 2.0 (the "License"); #
18# you may not use this file except in compliance with the License. #
19# You may obtain a copy of the License at #
20# #
21# http://www.apache.org/licenses/LICENSE-2.0 #
22# #
23# Unless required by applicable law or agreed to in writing, software #
24# distributed under the License is distributed on an "AS IS" BASIS, #
25# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
26# See the License for the specific language governing permissions and #
27# limitations under the License. #
28# #
29# SPDX-License-Identifier: Apache-2.0 #
30# ==================================================================================================================== #
31#
32"""
33Attributes describing options carrying key-value-pairs, like ``-Dkey=value``.
35The pairs are collected into a dictionary and passed to the handler method as one parameter.
36"""
37from typing import Optional as Nullable
39from pyTooling.Decorators import export
40from pyTooling.Attributes.ArgParse.Argument import NamedAndValuedArgument
43@export
44class NamedKeyValuePairsArgument(NamedAndValuedArgument):
45 """
46 Defines a switch argument like ``--help``.
48 Some of the named parameters passed to :meth:`~ArgumentParser.add_argument` are predefined (or overwritten) to create
49 a boolean parameter passed to the registered handler method. The boolean parameter is ``True`` if the switch argument
50 is present in the commandline arguments, otherwise ``False``.
51 """
53 def __init__(self, short: Nullable[str] = None, long: Nullable[str] = None, dest: Nullable[str] = None, help: Nullable[str] = None) -> None:
54 """
55 The constructor expects positional (``*args``), the destination parameter name ``dest`` and/or named parameters
56 (``**kwargs``) which are passed to :meth:`~ArgumentParser.add_argument`.
58 To implement a switch argument, the following named parameters are predefined:
60 * ``action="store_const"``
61 * ``const=True``
62 * ``default=False``
64 This implements a boolean parameter passed to the handler method.
65 """
66 args = []
67 if short is not None:
68 args.append(short)
69 if long is not None:
70 args.append(long)
72 kwargs = {
73 "dest": dest,
74 "action": "store_const",
75 "const": True,
76 "default": False,
77 "help": help,
78 }
79 super().__init__(*args, **kwargs)
82@export
83class ShortKeyValueFlag(NamedKeyValuePairsArgument):
84 """Defines a key-value argument in short form like ``-Dkey=value``."""
86 def __init__(self, short: Nullable[str] = None, dest: Nullable[str] = None, help: Nullable[str] = None) -> None:
87 """
88 Initialize a key-value argument in its short form.
90 :param short: Optional, short form of the option, including its dash, e.g. :pycode:`short="-v"`.
91 :param dest: Optional, name of the parameter the parsed value is passed to the handler method as.
92 :param help: Optional, help text of the option, displayed in the help page.
93 """
94 super().__init__(short=short, dest=dest, help=help)
97@export
98class LongKeyValueFlag(NamedKeyValuePairsArgument):
99 """Defines a key-value argument in long form like ``--define key=value``."""
101 def __init__(self, long: Nullable[str] = None, dest: Nullable[str] = None, help: Nullable[str] = None) -> None:
102 """
103 Initialize a key-value argument in its long form.
105 :param long: Optional, long form of the option, including its dashes, e.g. :pycode:`long="--verbose"`.
106 :param dest: Optional, name of the parameter the parsed value is passed to the handler method as.
107 :param help: Optional, help text of the option, displayed in the help page.
108 """
109 super().__init__(long=long, dest=dest, help=help)