diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2020-01-01 18:59:13 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2020-01-10 18:55:24 +0100 |
commit | fe89c3b4d410c8f4203470cb412bf8f03279c391 (patch) | |
tree | f0461570c7740ec50b4256a2f3245166bc06f453 /decoders | |
parent | 1742244d6393b1d8fba0119eb48464e16a8b9a97 (diff) | |
download | libsigrokdecode-fe89c3b4d410c8f4203470cb412bf8f03279c391.tar.gz libsigrokdecode-fe89c3b4d410c8f4203470cb412bf8f03279c391.zip |
srdhelper: Add SrdIntEnum with various helper methods.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/common/srdhelper/mod.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/decoders/common/srdhelper/mod.py b/decoders/common/srdhelper/mod.py index e37345a..e1fac3d 100644 --- a/decoders/common/srdhelper/mod.py +++ b/decoders/common/srdhelper/mod.py @@ -17,6 +17,9 @@ ## along with this program; if not, see <http://www.gnu.org/licenses/>. ## +from enum import IntEnum, unique +from itertools import chain + # Return the specified BCD number (max. 8 bits) as integer. def bcd2int(b): return (b & 0x0f) + ((b >> 4) * 10) @@ -34,3 +37,35 @@ def bitunpack(num, minbits=0): num >>= 1 minbits -= 1 return tuple(res) + +@unique +class SrdIntEnum(IntEnum): + @classmethod + def _prefix(cls, p): + return tuple([a.value for a in cls if a.name.startswith(p)]) + + @classmethod + def prefixes(cls, prefix_list): + if isinstance(prefix_list, str): + prefix_list = prefix_list.split() + return tuple(chain(*[cls._prefix(p) for p in prefix_list])) + + @classmethod + def _suffix(cls, s): + return tuple([a.value for a in cls if a.name.endswith(s)]) + + @classmethod + def suffixes(cls, suffix_list): + if isinstance(suffix_list, str): + suffix_list = suffix_list.split() + return tuple(chain(*[cls._suffix(s) for s in suffix_list])) + + @classmethod + def from_list(cls, name, l): + # Manually construct (Python 3.4 is missing the 'start' argument). + # Python defaults to start=1, but we want start=0. + return cls(name, [(l[i], i) for i in range(len(l))]) + + @classmethod + def from_str(cls, name, s): + return cls.from_list(name, s.split()) |