aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-06-24 10:00:12 +0200
committerHarald Welte <laforge@osmocom.org>2023-06-27 09:29:25 +0200
commit0ec01504ab894bce8dd0e2a882f21b0b253f1ee6 (patch)
tree9d31af36ef7430a9067d0eda98eb770f270489d5
parent985ff31efa340ec390f00a772433635ddb341c90 (diff)
cosmetic: Implement cmd2.Settable backwards-compat via wrapper class
Let's avoid too many open-coded if-clauses and simply wrap it in a compatibility class. Change-Id: Id234f3fa56fe7eff8e1153d71b9be8a2e88dd112
-rwxr-xr-xpySim-shell.py42
1 files changed, 18 insertions, 24 deletions
diff --git a/pySim-shell.py b/pySim-shell.py
index 9897d29..e5cc0c3 100755
--- a/pySim-shell.py
+++ b/pySim-shell.py
@@ -149,11 +149,18 @@ class Cmd2Compat(cmd2.Cmd):
releases. See https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md"""
def run_editor(self, file_path: Optional[str] = None) -> None:
if version.parse(cmd2.__version__) < version.parse("2.0.0"):
- # pylint: disable=no-member
- return self._run_editor(file_path)
+ return self._run_editor(file_path) # pylint: disable=no-member
else:
- # pylint: disable=no-member
- return super().run_editor(file_path)
+ return super().run_editor(file_path) # pylint: disable=no-member
+
+class Settable2Compat(cmd2.Settable):
+ """Backwards-compatibility wrapper around cmd2.Settable to support older and newer
+ releases. See https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md"""
+ def __init__(self, name, val_type, description, settable_object, **kwargs):
+ if version.parse(cmd2.__version__) < version.parse("2.0.0"):
+ super().__init__(name, val_type, description, **kwargs) # pylint: disable=no-value-for-parameter
+ else:
+ super().__init__(name, val_type, description, settable_object, **kwargs) # pylint: disable=too-many-function-args
class PysimApp(Cmd2Compat):
CUSTOM_CATEGORY = 'pySim Commands'
@@ -181,26 +188,13 @@ class PysimApp(Cmd2Compat):
self.json_pretty_print = True
self.apdu_trace = False
- if version.parse(cmd2.__version__) < version.parse("2.0.0"):
- # pylint: disable=no-value-for-parameter
- self.add_settable(cmd2.Settable('numeric_path', bool, 'Print File IDs instead of names',
- onchange_cb=self._onchange_numeric_path))
- # pylint: disable=no-value-for-parameter
- self.add_settable(cmd2.Settable('conserve_write', bool, 'Read and compare before write',
- onchange_cb=self._onchange_conserve_write))
- # pylint: disable=no-value-for-parameter
- self.add_settable(cmd2.Settable('json_pretty_print', bool, 'Pretty-Print JSON output'))
- # pylint: disable=no-value-for-parameter
- self.add_settable(cmd2.Settable('apdu_trace', bool, 'Trace and display APDUs exchanged with card',
- onchange_cb=self._onchange_apdu_trace))
- else:
- self.add_settable(cmd2.Settable('numeric_path', bool, 'Print File IDs instead of names', self, \
- onchange_cb=self._onchange_numeric_path)) # pylint: disable=too-many-function-args
- self.add_settable(cmd2.Settable('conserve_write', bool, 'Read and compare before write', self, \
- onchange_cb=self._onchange_conserve_write)) # pylint: disable=too-many-function-args
- self.add_settable(cmd2.Settable('json_pretty_print', bool, 'Pretty-Print JSON output', self)) # pylint: disable=too-many-function-args
- self.add_settable(cmd2.Settable('apdu_trace', bool, 'Trace and display APDUs exchanged with card', self, \
- onchange_cb=self._onchange_apdu_trace)) # pylint: disable=too-many-function-args
+ self.add_settable(Settable2Compat('numeric_path', bool, 'Print File IDs instead of names', self,
+ onchange_cb=self._onchange_numeric_path))
+ self.add_settable(Settable2Compat('conserve_write', bool, 'Read and compare before write', self,
+ onchange_cb=self._onchange_conserve_write))
+ self.add_settable(Settable2Compat('json_pretty_print', bool, 'Pretty-Print JSON output', self))
+ self.add_settable(Settable2Compat('apdu_trace', bool, 'Trace and display APDUs exchanged with card', self,
+ onchange_cb=self._onchange_apdu_trace))
self.equip(card, rs)
def equip(self, card, rs):