]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/common/srdhelper/mod.py
srdhelper: Add SrdStrEnum with various helper methods.
[libsigrokdecode.git] / decoders / common / srdhelper / mod.py
index e1fac3df97c7b03e7866181bb48a1baf0ba0c18f..6c45af98b7ae9232b8d115caafa6478801436d20 100644 (file)
@@ -1,7 +1,7 @@
 ##
 ## This file is part of the libsigrokdecode project.
 ##
-## Copyright (C) 2012-2014 Uwe Hermann <uwe@hermann-uwe.de>
+## Copyright (C) 2012-2020 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
@@ -17,8 +17,9 @@
 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
 ##
 
-from enum import IntEnum, unique
+from enum import Enum, IntEnum, unique
 from itertools import chain
+import re
 
 # Return the specified BCD number (max. 8 bits) as integer.
 def bcd2int(b):
@@ -38,6 +39,18 @@ def bitunpack(num, minbits=0):
         minbits -= 1
     return tuple(res)
 
+@unique
+class SrdStrEnum(Enum):
+    @classmethod
+    def from_list(cls, name, l):
+        # Keys are limited/converted to [A-Z0-9_], values can be any string.
+        items = [(re.sub('[^A-Z0-9_]', '_', l[i]), l[i]) for i in range(len(l))]
+        return cls(name, items)
+
+    @classmethod
+    def from_str(cls, name, s):
+        return cls.from_list(name, s.split())
+
 @unique
 class SrdIntEnum(IntEnum):
     @classmethod