pySim-shell: clean up method calls in do_switch_channel

The function do_switch_channel method calls methods in RuntimeLchan
that should be private. There is also a code duplication in
RuntimeLchan that should be cleaned up.

Related: OS#6092
Change-Id: Ie5e5f45787abaaf032e1b49f51d447653cf2c996
This commit is contained in:
Philipp Maier
2024-07-25 15:57:13 +02:00
committed by laforge
parent 4fefac78b8
commit dff7bb0687
2 changed files with 15 additions and 14 deletions

View File

@@ -859,9 +859,9 @@ above the to-be-activated EF must be selected!"""
@cmd2.with_argparser(switch_chan_parser) @cmd2.with_argparser(switch_chan_parser)
def do_switch_channel(self, opts): def do_switch_channel(self, opts):
"""Switch currently active logical channel.""" """Switch currently active logical channel."""
self._cmd.lchan._select_pre(self._cmd) self._cmd.lchan.unregister_cmds(self._cmd)
self._cmd.lchan = self._cmd.rs.lchan[opts.chan_nr] self._cmd.lchan = self._cmd.rs.lchan[opts.chan_nr]
self._cmd.lchan._select_post(self._cmd) self._cmd.lchan.register_cmds(self._cmd)
self._cmd.update_prompt() self._cmd.update_prompt()
def do_status(self, opts): def do_status(self, opts):

View File

@@ -262,7 +262,8 @@ class RuntimeLchan:
raise ValueError( raise ValueError(
"Cannot select unknown file by name %s, only hexadecimal 4 digit FID is allowed" % fid) "Cannot select unknown file by name %s, only hexadecimal 4 digit FID is allowed" % fid)
self._select_pre(cmd_app) # unregister commands of old file
self.unregister_cmds(cmd_app)
try: try:
# We access the card through the select_file method of the scc object. # We access the card through the select_file method of the scc object.
@@ -295,12 +296,6 @@ class RuntimeLchan:
self._select_post(cmd_app, f, data) self._select_post(cmd_app, f, data)
def _select_pre(self, cmd_app):
# unregister commands of old file
if cmd_app and self.selected_file.shell_commands:
for c in self.selected_file.shell_commands:
cmd_app.unregister_command_set(c)
def _select_post(self, cmd_app, file:Optional[CardFile] = None, select_resp_data = None): def _select_post(self, cmd_app, file:Optional[CardFile] = None, select_resp_data = None):
# we store some reference data (see above) about the currently selected file. # we store some reference data (see above) about the currently selected file.
# This data must be updated after every select. # This data must be updated after every select.
@@ -316,9 +311,7 @@ class RuntimeLchan:
self.selected_file_fcp = None self.selected_file_fcp = None
# register commands of new file # register commands of new file
if cmd_app and self.selected_file.shell_commands: self.register_cmds(cmd_app)
for c in self.selected_file.shell_commands:
cmd_app.register_command_set(c)
def select_file(self, file: CardFile, cmd_app=None): def select_file(self, file: CardFile, cmd_app=None):
"""Select a file (EF, DF, ADF, MF, ...). """Select a file (EF, DF, ADF, MF, ...).
@@ -331,7 +324,9 @@ class RuntimeLchan:
inter_path = self.selected_file.build_select_path_to(file) inter_path = self.selected_file.build_select_path_to(file)
if not inter_path: if not inter_path:
raise RuntimeError('Cannot determine path from %s to %s' % (self.selected_file, file)) raise RuntimeError('Cannot determine path from %s to %s' % (self.selected_file, file))
self._select_pre(cmd_app)
# unregister commands of old file
self.unregister_cmds(cmd_app)
# be sure the variables that we pass to _select_post contain valid values. # be sure the variables that we pass to _select_post contain valid values.
selected_file = self.selected_file selected_file = self.selected_file
@@ -577,8 +572,14 @@ class RuntimeLchan:
raise TypeError("Only works with BER-TLV EF") raise TypeError("Only works with BER-TLV EF")
return self.scc.set_data(self.selected_file.fid, tag, data_hex, conserve=self.rs.conserve_write) return self.scc.set_data(self.selected_file.fid, tag, data_hex, conserve=self.rs.conserve_write)
def register_cmds(self, cmd_app=None):
"""Register command set that is associated with the currently selected file"""
if cmd_app and self.selected_file.shell_commands:
for c in self.selected_file.shell_commands:
cmd_app.register_command_set(c)
def unregister_cmds(self, cmd_app=None): def unregister_cmds(self, cmd_app=None):
"""Unregister all file specific commands.""" """Unregister command set that is associated with the currently selected file"""
if cmd_app and self.selected_file.shell_commands: if cmd_app and self.selected_file.shell_commands:
for c in self.selected_file.shell_commands: for c in self.selected_file.shell_commands:
cmd_app.unregister_command_set(c) cmd_app.unregister_command_set(c)