aboutsummaryrefslogtreecommitdiffstats
path: root/pySim/construct.py
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-12-17 10:07:01 +0100
committerlaforge <laforge@osmocom.org>2023-12-23 09:15:47 +0000
commitcaef0df6638277e1b8ff01b314146944e2b5a61e (patch)
treef2b294d279fac923208a7cdb5c39ca23b88f52a2 /pySim/construct.py
parent188869568a73660dcfa4a22d05471125f79578f4 (diff)
construct/tlv: Pass optional 'context' into construct decoder/encoder
The context is some opaque dictionary that can be used by the constructs; let's allow the caller of parse_construct, from_bytes, from_tlv to specify it. Also, when decoding a TLV_IE_Collection, pass the decode results of existing siblings via the construct. Change-Id: I021016aaa09cddf9d36521c1a54b468ec49ff54d
Diffstat (limited to 'pySim/construct.py')
-rw-r--r--pySim/construct.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pySim/construct.py b/pySim/construct.py
index 31caf0e..cef9557 100644
--- a/pySim/construct.py
+++ b/pySim/construct.py
@@ -200,13 +200,16 @@ def normalize_construct(c):
return r
-def parse_construct(c, raw_bin_data: bytes, length: typing.Optional[int] = None, exclude_prefix: str = '_'):
+def parse_construct(c, raw_bin_data: bytes, length: typing.Optional[int] = None, exclude_prefix: str = '_', context: dict = {}):
"""Helper function to wrap around normalize_construct() and filter_dict()."""
if not length:
length = len(raw_bin_data)
- parsed = c.parse(raw_bin_data, total_len=length)
+ parsed = c.parse(raw_bin_data, total_len=length, **context)
return normalize_construct(parsed)
+def build_construct(c, decoded_data, context: dict = {}):
+ """Helper function to handle total_len."""
+ return c.build(decoded_data, total_len=None, **context)
# here we collect some shared / common definitions of data types
LV = Prefixed(Int8ub, HexAdapter(GreedyBytes))