]> sigrok.org Git - libsigrokdecode.git/blame - decoders/common/srdhelper/mod.py
srdhelper: Add SrdStrEnum with various helper methods.
[libsigrokdecode.git] / decoders / common / srdhelper / mod.py
CommitLineData
769ed325
UH
1##
2## This file is part of the libsigrokdecode project.
3##
6ca8b2b7 4## Copyright (C) 2012-2020 Uwe Hermann <uwe@hermann-uwe.de>
769ed325
UH
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
769ed325
UH
18##
19
6ca8b2b7 20from enum import Enum, IntEnum, unique
fe89c3b4 21from itertools import chain
6ca8b2b7 22import re
fe89c3b4 23
769ed325
UH
24# Return the specified BCD number (max. 8 bits) as integer.
25def bcd2int(b):
26 return (b & 0x0f) + ((b >> 4) * 10)
c413347e 27
392a5d1e
UH
28def bin2int(s: str):
29 return int('0b' + s, 2)
30
c413347e 31def bitpack(bits):
c7172e5f 32 return sum([b << i for i, b in enumerate(bits)])
c413347e
UH
33
34def bitunpack(num, minbits=0):
35 res = []
36 while num or minbits > 0:
37 res.append(num & 1)
38 num >>= 1
39 minbits -= 1
40 return tuple(res)
fe89c3b4 41
6ca8b2b7
UH
42@unique
43class SrdStrEnum(Enum):
44 @classmethod
45 def from_list(cls, name, l):
46 # Keys are limited/converted to [A-Z0-9_], values can be any string.
47 items = [(re.sub('[^A-Z0-9_]', '_', l[i]), l[i]) for i in range(len(l))]
48 return cls(name, items)
49
50 @classmethod
51 def from_str(cls, name, s):
52 return cls.from_list(name, s.split())
53
fe89c3b4
UH
54@unique
55class SrdIntEnum(IntEnum):
56 @classmethod
57 def _prefix(cls, p):
58 return tuple([a.value for a in cls if a.name.startswith(p)])
59
60 @classmethod
61 def prefixes(cls, prefix_list):
62 if isinstance(prefix_list, str):
63 prefix_list = prefix_list.split()
64 return tuple(chain(*[cls._prefix(p) for p in prefix_list]))
65
66 @classmethod
67 def _suffix(cls, s):
68 return tuple([a.value for a in cls if a.name.endswith(s)])
69
70 @classmethod
71 def suffixes(cls, suffix_list):
72 if isinstance(suffix_list, str):
73 suffix_list = suffix_list.split()
74 return tuple(chain(*[cls._suffix(s) for s in suffix_list]))
75
76 @classmethod
77 def from_list(cls, name, l):
78 # Manually construct (Python 3.4 is missing the 'start' argument).
79 # Python defaults to start=1, but we want start=0.
80 return cls(name, [(l[i], i) for i in range(len(l))])
81
82 @classmethod
83 def from_str(cls, name, s):
84 return cls.from_list(name, s.split())