From c08c399e4cefa0604c71a9c9366bff83e780d49c Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 16 Nov 2016 22:46:44 +0200 Subject: [PATCH] StructReader: added __len__() and rlen() --- steam/util/binary.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/steam/util/binary.py b/steam/util/binary.py index 9050d2c..43dd7e6 100644 --- a/steam/util/binary.py +++ b/steam/util/binary.py @@ -8,10 +8,21 @@ class StructReader(object): :type data: :class:`bytes` """ if not isinstance(data, bytes): - raise ValueError("Requires bytes") + raise ValueError("Only works with bytes") self.data = data self.offset = 0 + def __len__(self): + return len(self.data) + + def rlen(self): + """Number of remaining bytes that can be read + + :return: number of remaining bytes + :rtype: :class:`int` + """ + return max(0, len(self) - self.offset) + def read(self, n=1): """Return n bytes