laforge submitted this change.
esim.saip.FsProfileElement: Add file2pe() for single file conversion
We've had files2pe() for re-encoding all of the files, but let's add
a specific one for re-encoding only one of the files (such as commonly
needed during personalization)
Change-Id: I7b7f61aae6b7df6946dadf2f78fddf92995603ec
---
M pySim/esim/saip/__init__.py
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/pySim/esim/saip/__init__.py b/pySim/esim/saip/__init__.py
index 1c0c715..c0f5340 100644
--- a/pySim/esim/saip/__init__.py
+++ b/pySim/esim/saip/__init__.py
@@ -633,8 +633,15 @@
self.pe_sequence.cur_df = pe_df
self.pe_sequence.cur_df = self.pe_sequence.cur_df.add_file(file)
+ def file2pe(self, file: File):
+ """Update the "decoded" member for the given file with the contents from the given File instance.
+ We expect that the File instance is part of self.files"""
+ if self.files[file.pe_name] != file:
+ raise ValueError("The file you passed is not part of this ProfileElement")
+ self.decoded[file.pe_name] = file.to_tuples()
+
def files2pe(self):
- """Update the "decoded" member with the contents of the "files" member."""
+ """Update the "decoded" member for each file with the contents of the "files" member."""
for k, f in self.files.items():
self.decoded[k] = f.to_tuples()
To view, visit change 41734. To unsubscribe, or for help writing mail filters, visit settings.