]> sigrok.org Git - libsigrokdecode.git/blob - decoders/common/srdhelper/mod.py
avr_isp: Add more parts
[libsigrokdecode.git] / decoders / common / srdhelper / mod.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2012-2020 Uwe Hermann <uwe@hermann-uwe.de>
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
17 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 from enum import Enum, IntEnum, unique
21 from itertools import chain
22 import re
23
24 # Return the specified BCD number (max. 8 bits) as integer.
25 def bcd2int(b):
26     return (b & 0x0f) + ((b >> 4) * 10)
27
28 def bin2int(s: str):
29     return int('0b' + s, 2)
30
31 def bitpack(bits):
32     return sum([b << i for i, b in enumerate(bits)])
33
34 def 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)
41
42 @unique
43 class 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
54 @unique
55 class 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())