1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
##
## This file is part of the libsigrokdecode project.
##
## Copyright (C) 2012-2014 Uwe Hermann <uwe@hermann-uwe.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## 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)
def bin2int(s: str):
return int('0b' + s, 2)
def bitpack(bits):
return sum([b << i for i, b in enumerate(bits)])
def bitunpack(num, minbits=0):
res = []
while num or minbits > 0:
res.append(num & 1)
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())
|