This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
laforge gerrit-no-reply at lists.osmocom.orglaforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/23206 )
Change subject: filesystem: allow dumping multiple records of a file
......................................................................
filesystem: allow dumping multiple records of a file
At the moment we can only request pySim-shell to dump a specific record
of a file. However, it may be useful to dump multiple records of a
record oriented file at once.
Change-Id: Id62db2cba4e3dfb6a7b3e6be8b892c16d11a8e3e
Related: OS#4963
---
M pySim/filesystem.py
1 file changed, 10 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/06/23206/1
diff --git a/pySim/filesystem.py b/pySim/filesystem.py
index 7d4a8f8..71392fa 100644
--- a/pySim/filesystem.py
+++ b/pySim/filesystem.py
@@ -378,11 +378,18 @@
read_rec_parser = argparse.ArgumentParser()
read_rec_parser.add_argument('record_nr', type=int, help='Number of record to be read')
+ read_rec_parser.add_argument('--records', type=int, default=1, help='Number of records to be read, beginning at record_nr')
@cmd2.with_argparser(read_rec_parser)
def do_read_record(self, opts):
- """Read a record from a record-oriented EF"""
- (data, sw) = self._cmd.rs.read_record(opts.record_nr)
- self._cmd.poutput(data)
+ """Read one or multiple records from a record-oriented EF"""
+ for r in range(opts.records):
+ recnr = opts.record_nr + r
+ (data, sw) = self._cmd.rs.read_record(recnr)
+ if (len(data) > 0):
+ recstr = str(data)
+ else:
+ recstr = "(empty)"
+ self._cmd.poutput("%03d %s" % (recnr, recstr))
read_rec_dec_parser = argparse.ArgumentParser()
read_rec_dec_parser.add_argument('record_nr', type=int, help='Number of record to be read')
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/23206
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Id62db2cba4e3dfb6a7b3e6be8b892c16d11a8e3e
Gerrit-Change-Number: 23206
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210303/7c09a431/attachment.htm>