2023-10-05 19:42:36 +02:00
|
|
|
import re
|
2022-04-15 20:02:42 +02:00
|
|
|
import struct
|
2023-10-05 19:42:36 +02:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
from dataclasses import dataclass, field, fields
|
2023-10-06 01:06:30 +02:00
|
|
|
from enum import IntEnum, unique, Enum
|
2023-10-05 19:42:36 +02:00
|
|
|
from typing import Self, Sequence, Any
|
|
|
|
|
|
|
|
from c3nav.mesh.utils import indent_c
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
MAC_FMT = '%02x:%02x:%02x:%02x:%02x:%02x'
|
|
|
|
|
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class BaseFormat(ABC):
|
|
|
|
@abstractmethod
|
|
|
|
def encode(self, value):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@abstractmethod
|
2023-10-06 01:06:30 +02:00
|
|
|
def decode(cls, data: bytes) -> tuple[Any, bytes]:
|
2023-10-05 19:42:36 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
def fromjson(self, data):
|
|
|
|
return data
|
|
|
|
|
|
|
|
def tojson(self, data):
|
|
|
|
return data
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def get_min_size(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def get_c_parts(self) -> tuple[str, str]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_c_code(self, name) -> str:
|
|
|
|
pre, post = self.get_c_parts()
|
|
|
|
return "%s %s%s;" % (pre, name, post)
|
|
|
|
|
|
|
|
|
|
|
|
class SimpleFormat(BaseFormat):
|
2022-04-15 20:02:42 +02:00
|
|
|
def __init__(self, fmt):
|
|
|
|
self.fmt = fmt
|
|
|
|
self.size = struct.calcsize(fmt)
|
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
self.c_type = self.c_types[self.fmt[-1]]
|
|
|
|
self.num = int(self.fmt[:-1]) if len(self.fmt) > 1 else 1
|
|
|
|
|
2022-04-15 20:02:42 +02:00
|
|
|
def encode(self, value):
|
2023-10-06 01:06:30 +02:00
|
|
|
if self.num == 1:
|
|
|
|
return struct.pack(self.fmt, value)
|
|
|
|
return struct.pack(self.fmt, *value)
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[Any, bytes]:
|
2022-04-15 20:02:42 +02:00
|
|
|
value = struct.unpack(self.fmt, data[:self.size])
|
|
|
|
if len(value) == 1:
|
|
|
|
value = value[0]
|
|
|
|
return value, data[self.size:]
|
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_min_size(self):
|
|
|
|
return self.size
|
|
|
|
|
2023-10-04 22:25:15 +02:00
|
|
|
c_types = {
|
|
|
|
"B": "uint8_t",
|
|
|
|
"H": "uint16_t",
|
|
|
|
"I": "uint32_t",
|
|
|
|
"b": "int8_t",
|
|
|
|
"h": "int16_t",
|
|
|
|
"i": "int32_t",
|
2023-10-05 19:42:36 +02:00
|
|
|
"s": "char",
|
2023-10-04 22:25:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_c_parts(self):
|
|
|
|
return self.c_type, ("" if self.num == 1 else ("[%d]" % self.num))
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class BoolFormat(SimpleFormat):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('B')
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
def encode(self, value):
|
2023-10-05 19:42:36 +02:00
|
|
|
return super().encode(int(value))
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[bool, bytes]:
|
|
|
|
value, data = super().decode(data)
|
|
|
|
return bool(value), data
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class FixedStrFormat(SimpleFormat):
|
|
|
|
def __init__(self, num):
|
|
|
|
self.num = num
|
|
|
|
super().__init__('%ds' % self.num)
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def encode(self, value: str):
|
|
|
|
return value.encode()[:self.num].ljust(self.num, bytes((0, ))),
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[str, bytes]:
|
|
|
|
return data[:self.num].rstrip(bytes((0,))).decode(), data[self.num:]
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class FixedHexFormat(SimpleFormat):
|
2022-04-15 20:02:42 +02:00
|
|
|
def __init__(self, num, sep=''):
|
|
|
|
self.num = num
|
|
|
|
self.sep = sep
|
2023-10-05 19:42:36 +02:00
|
|
|
super().__init__('%dB' % self.num)
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def encode(self, value: str):
|
2023-10-06 01:06:30 +02:00
|
|
|
return super().encode(tuple(bytes.fromhex(value.replace(':', ''))))
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[str, bytes]:
|
|
|
|
return self.sep.join(('%02x' % i) for i in data[:self.num]), data[self.num:]
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
@abstractmethod
|
|
|
|
class BaseVarFormat(BaseFormat, ABC):
|
|
|
|
def __init__(self, num_fmt='B'):
|
|
|
|
self.num_fmt = num_fmt
|
|
|
|
self.num_size = struct.calcsize(self.num_fmt)
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_min_size(self):
|
|
|
|
return self.num_size
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_num_c_code(self):
|
|
|
|
return SimpleFormat(self.num_fmt).get_c_code("num")
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class VarArrayFormat(BaseVarFormat):
|
|
|
|
def __init__(self, child_type, num_fmt='B'):
|
|
|
|
super().__init__(num_fmt=num_fmt)
|
|
|
|
self.child_type = child_type
|
|
|
|
self.child_size = self.child_type.get_min_size()
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def encode(self, values: Sequence) -> bytes:
|
|
|
|
data = struct.pack(self.num_fmt, (len(values),))
|
|
|
|
for value in values:
|
|
|
|
data += self.child_type.encode(value)
|
|
|
|
return data
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[list[Any], bytes]:
|
|
|
|
num = struct.unpack(self.num_fmt, data[:self.num_size])[0]
|
2023-10-06 01:06:30 +02:00
|
|
|
data = data[self.num_size:]
|
|
|
|
result = []
|
|
|
|
for i in range(num):
|
|
|
|
item, data = self.child_type.decode(data)
|
|
|
|
result.append(item)
|
|
|
|
return result, data
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_c_parts(self):
|
|
|
|
pre, post = self.child_type.get_c_parts()
|
|
|
|
return super().get_num_c_code()+"\n"+pre, "[0]"+post
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
class VarStrFormat(BaseVarFormat):
|
|
|
|
def encode(self, value: str) -> bytes:
|
|
|
|
return struct.pack(self.num_fmt, (len(str),))+value.encode()
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def decode(self, data: bytes) -> tuple[str, bytes]:
|
|
|
|
num = struct.unpack(self.num_fmt, data[:self.num_size])[0]
|
|
|
|
return data[self.num_size:self.num_size+num].rstrip(bytes((0,))).decode(), data[self.num_size+num:]
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def get_c_parts(self):
|
|
|
|
return super().get_num_c_code()+"\n"+"char", "[0]"
|
2023-10-04 22:25:15 +02:00
|
|
|
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
""" TPYES """
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
def normalize_name(name):
|
|
|
|
if '_' in name:
|
|
|
|
return name.lower()
|
|
|
|
return re.sub(
|
|
|
|
r"([a-z])([A-Z])",
|
|
|
|
r"\1_\2",
|
|
|
|
name
|
|
|
|
).lower()
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
@dataclass
|
2023-10-05 19:42:36 +02:00
|
|
|
class StructType:
|
|
|
|
_union_options = {}
|
|
|
|
union_type_field = None
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
# noinspection PyMethodOverriding
|
2023-10-05 19:42:36 +02:00
|
|
|
def __init_subclass__(cls, /, union_type_field=None, **kwargs):
|
|
|
|
cls.union_type_field = union_type_field
|
|
|
|
if union_type_field:
|
|
|
|
if union_type_field in cls._union_options:
|
|
|
|
raise TypeError('Duplicate union_type_field: %s', union_type_field)
|
|
|
|
cls._union_options[union_type_field] = {}
|
|
|
|
for key, values in cls._union_options.items():
|
|
|
|
value = kwargs.pop(key, None)
|
|
|
|
if value is not None:
|
|
|
|
if value in values:
|
|
|
|
raise TypeError('Duplicate %s: %s', (key, value))
|
|
|
|
values[value] = cls
|
|
|
|
setattr(cls, key, value)
|
2022-04-15 20:02:42 +02:00
|
|
|
super().__init_subclass__(**kwargs)
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
@classmethod
|
2023-10-06 01:06:30 +02:00
|
|
|
def get_types(cls):
|
|
|
|
if not cls.union_type_field:
|
|
|
|
raise TypeError('Not a union class')
|
|
|
|
return cls._union_options[cls.union_type_field]
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_type(cls, type_id) -> Self:
|
|
|
|
if not cls.union_type_field:
|
|
|
|
raise TypeError('Not a union class')
|
|
|
|
return cls.get_types()[type_id]
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def encode(cls, instance, ignore_fields=()) -> bytes:
|
2023-10-05 19:42:36 +02:00
|
|
|
data = bytes()
|
|
|
|
if cls.union_type_field and type(instance) is not cls:
|
|
|
|
if not isinstance(instance, cls):
|
|
|
|
raise ValueError('expected value of type %r, got %r' % (cls, instance))
|
|
|
|
|
2023-10-06 01:06:30 +02:00
|
|
|
for field_ in fields(cls):
|
|
|
|
data += field_.metadata["format"].encode(getattr(instance, field_.name))
|
2023-10-05 19:42:36 +02:00
|
|
|
|
2023-10-06 01:06:30 +02:00
|
|
|
# todo: better
|
|
|
|
data += instance.encode(instance, ignore_fields=set(f.name for f in fields(cls)))
|
2023-10-05 19:42:36 +02:00
|
|
|
return data
|
|
|
|
|
|
|
|
for field_ in fields(cls):
|
2023-10-06 01:06:30 +02:00
|
|
|
if field_.name in ignore_fields:
|
|
|
|
continue
|
2023-10-05 19:42:36 +02:00
|
|
|
value = getattr(instance, field_.name)
|
|
|
|
if "format" in field_.metadata:
|
|
|
|
data += field_.metadata["format"].encode(value)
|
|
|
|
elif issubclass(field_.type, StructType):
|
|
|
|
if not isinstance(value, field_.type):
|
|
|
|
raise ValueError('expected value of type %r for %s.%s, got %r' %
|
|
|
|
(field_.type, cls.__name__, field_.name, value))
|
|
|
|
data += value.encode(value)
|
|
|
|
else:
|
|
|
|
raise TypeError('field %s.%s has no format and is no StructType' %
|
|
|
|
(cls.__class__.__name__, field_.name))
|
|
|
|
return data
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def decode(cls, data: bytes) -> Self:
|
2023-10-06 01:06:30 +02:00
|
|
|
orig_data = data
|
|
|
|
kwargs = {}
|
|
|
|
no_init_data = {}
|
2023-10-05 19:42:36 +02:00
|
|
|
for field_ in fields(cls):
|
|
|
|
if "format" in field_.metadata:
|
2023-10-06 01:06:30 +02:00
|
|
|
value, data = field_.metadata["format"].decode(data)
|
2023-10-05 19:42:36 +02:00
|
|
|
elif issubclass(field_.type, StructType):
|
2023-10-06 01:06:30 +02:00
|
|
|
value, data = field_.type.decode(data)
|
2023-10-05 19:42:36 +02:00
|
|
|
else:
|
|
|
|
raise TypeError('field %s.%s has no format and is no StructType' %
|
|
|
|
(cls.__name__, field_.name))
|
2023-10-06 01:06:30 +02:00
|
|
|
if field_.init:
|
|
|
|
kwargs[field_.name] = value
|
|
|
|
else:
|
|
|
|
no_init_data[field_.name] = value
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
if cls.union_type_field:
|
|
|
|
try:
|
2023-10-06 01:06:30 +02:00
|
|
|
type_value = no_init_data[cls.union_type_field]
|
2023-10-05 19:42:36 +02:00
|
|
|
except KeyError:
|
|
|
|
raise TypeError('union_type_field %s.%s is missing' %
|
|
|
|
(cls.__name__, cls.union_type_field))
|
|
|
|
try:
|
2023-10-06 01:06:30 +02:00
|
|
|
klass = cls.get_type(type_value)
|
2023-10-05 19:42:36 +02:00
|
|
|
except KeyError:
|
|
|
|
raise TypeError('union_type_field %s.%s value %r no known' %
|
|
|
|
(cls.__name__, cls.union_type_field, type_value))
|
2023-10-06 01:06:30 +02:00
|
|
|
return klass.decode(orig_data)
|
|
|
|
return cls(**kwargs), data
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tojson(cls, instance) -> dict:
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
if cls.union_type_field and type(instance) is not cls:
|
|
|
|
if not isinstance(instance, cls):
|
|
|
|
raise ValueError('expected value of type %r, got %r' % (cls, instance))
|
|
|
|
|
|
|
|
for field_ in fields(instance):
|
|
|
|
if field_.name is cls.union_type_field:
|
2023-10-06 01:06:30 +02:00
|
|
|
result[field_.name] = field_.metadata["format"].tojson(getattr(instance, field_.name))
|
2023-10-05 19:42:36 +02:00
|
|
|
break
|
|
|
|
else:
|
|
|
|
raise TypeError('couldn\'t find %s value' % cls.union_type_field)
|
|
|
|
|
|
|
|
result.update(instance.tojson(instance))
|
|
|
|
return result
|
|
|
|
|
|
|
|
for field_ in fields(cls):
|
|
|
|
value = getattr(instance, field_.name)
|
|
|
|
if "format" in field_.metadata:
|
|
|
|
result[field_.name] = field_.metadata["format"].tojson(value)
|
|
|
|
elif issubclass(field_.type, StructType):
|
|
|
|
if not isinstance(value, field_.type):
|
|
|
|
raise ValueError('expected value of type %r for %s.%s, got %r' %
|
|
|
|
(field_.type, cls.__name__, field_.name, value))
|
|
|
|
result[field_.name] = value.tojson(value)
|
|
|
|
else:
|
|
|
|
raise TypeError('field %s.%s has no format and is no StructType' %
|
|
|
|
(cls.__class__.__name__, field_.name))
|
|
|
|
return result
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
@classmethod
|
2023-10-06 01:06:30 +02:00
|
|
|
def upgrade_json(cls, data):
|
|
|
|
return data
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def fromjson(cls, data: dict):
|
2023-10-05 19:42:36 +02:00
|
|
|
data = data.copy()
|
|
|
|
|
|
|
|
# todo: upgrade_json
|
2023-10-06 01:06:30 +02:00
|
|
|
cls.upgrade_json(data)
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
kwargs = {}
|
2023-10-06 01:06:30 +02:00
|
|
|
no_init_data = {}
|
2023-10-05 19:42:36 +02:00
|
|
|
for field_ in fields(cls):
|
2023-10-06 01:06:30 +02:00
|
|
|
raw_value = data.get(field_.name, None)
|
2023-10-05 19:42:36 +02:00
|
|
|
if "format" in field_.metadata:
|
2023-10-06 01:06:30 +02:00
|
|
|
value = field_.metadata["format"].fromjson(raw_value)
|
2023-10-05 19:42:36 +02:00
|
|
|
elif issubclass(field_.type, StructType):
|
2023-10-06 01:06:30 +02:00
|
|
|
value = field_.type.fromjson(raw_value)
|
2023-10-05 19:42:36 +02:00
|
|
|
else:
|
|
|
|
raise TypeError('field %s.%s has no format and is no StructType' %
|
|
|
|
(cls.__name__, field_.name))
|
2023-10-06 01:06:30 +02:00
|
|
|
if field_.init:
|
|
|
|
kwargs[field_.name] = value
|
|
|
|
else:
|
|
|
|
no_init_data[field_.name] = value
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
if cls.union_type_field:
|
|
|
|
try:
|
2023-10-06 01:06:30 +02:00
|
|
|
type_value = no_init_data.pop(cls.union_type_field)
|
2023-10-05 19:42:36 +02:00
|
|
|
except KeyError:
|
|
|
|
raise TypeError('union_type_field %s.%s is missing' %
|
|
|
|
(cls.__name__, cls.union_type_field))
|
|
|
|
try:
|
2023-10-06 01:06:30 +02:00
|
|
|
klass = cls.get_type(type_value)
|
2023-10-05 19:42:36 +02:00
|
|
|
except KeyError:
|
2023-10-06 01:06:30 +02:00
|
|
|
raise TypeError('union_type_field %s.%s value 0x%02x no known' %
|
2023-10-05 19:42:36 +02:00
|
|
|
(cls.__name__, cls.union_type_field, type_value))
|
|
|
|
return klass.fromjson(data)
|
|
|
|
|
|
|
|
return cls(**kwargs)
|
2022-04-15 20:02:42 +02:00
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
@classmethod
|
2023-10-05 20:55:36 +02:00
|
|
|
def get_c_parts(cls, ignore_fields=None, no_empty=False, typedef=False, union_only=False,
|
|
|
|
union_member_as_types=False):
|
2023-10-05 19:42:36 +02:00
|
|
|
ignore_fields = set() if not ignore_fields else set(ignore_fields)
|
|
|
|
|
2023-10-05 20:55:36 +02:00
|
|
|
pre = ""
|
|
|
|
|
2023-10-05 19:42:36 +02:00
|
|
|
items = []
|
|
|
|
for field_ in fields(cls):
|
|
|
|
if field_.name in ignore_fields:
|
|
|
|
continue
|
2023-10-05 20:55:36 +02:00
|
|
|
name = field_.metadata.get("c_name", field_.name)
|
2023-10-05 19:42:36 +02:00
|
|
|
if "format" in field_.metadata:
|
|
|
|
items.append((
|
2023-10-05 20:55:36 +02:00
|
|
|
field_.metadata["format"].get_c_code(name),
|
2023-10-05 19:42:36 +02:00
|
|
|
field_.metadata.get("doc", None),
|
|
|
|
)),
|
|
|
|
elif issubclass(field_.type, StructType):
|
|
|
|
items.append((
|
2023-10-05 20:55:36 +02:00
|
|
|
field_.type.get_c_code(name, typedef=False),
|
2023-10-05 19:42:36 +02:00
|
|
|
field_.metadata.get("doc", None),
|
|
|
|
))
|
|
|
|
else:
|
|
|
|
raise TypeError('field %s.%s has no format and is no StructType' %
|
|
|
|
(cls.__name__, field_.name))
|
|
|
|
|
|
|
|
if cls.union_type_field:
|
|
|
|
parent_fields = set(field_.name for field_ in fields(cls))
|
|
|
|
union_items = []
|
2023-10-06 01:06:30 +02:00
|
|
|
for key, option in cls.get_types().items():
|
2023-10-05 20:55:36 +02:00
|
|
|
base_name = normalize_name(getattr(key, 'name', option.__name__))
|
|
|
|
if union_member_as_types:
|
|
|
|
struct_name = cls.get_struct_name(base_name)
|
|
|
|
pre += option.get_c_code(
|
|
|
|
struct_name,
|
|
|
|
ignore_fields=(ignore_fields | parent_fields),
|
|
|
|
typedef=True
|
|
|
|
)+"\n\n"
|
|
|
|
union_items.append(
|
|
|
|
"%s %s;" % (struct_name, cls.get_variable_name(base_name)),
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
union_items.append(
|
|
|
|
option.get_c_code(base_name, ignore_fields=(ignore_fields | parent_fields))
|
|
|
|
)
|
|
|
|
union_items.append(
|
|
|
|
"uint8_t bytes[%s];" % max(
|
2023-10-06 01:06:30 +02:00
|
|
|
(option.get_min_size() for option in cls.get_types().values()),
|
2023-10-05 20:55:36 +02:00
|
|
|
default=0,
|
2023-10-05 19:42:36 +02:00
|
|
|
)
|
2023-10-05 20:55:36 +02:00
|
|
|
)
|
|
|
|
union_code = "{\n"+indent_c("\n".join(union_items))+"\n}",
|
|
|
|
if union_only:
|
|
|
|
return "typedef union __packed %s" % union_code, "";
|
|
|
|
else:
|
|
|
|
items.append(("union %s;" % union_code, ""))
|
|
|
|
elif union_only:
|
|
|
|
return "", ""
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
if no_empty and not items:
|
|
|
|
return "", ""
|
|
|
|
|
|
|
|
# todo: struct comment
|
|
|
|
if typedef:
|
|
|
|
comment = cls.__doc__.strip()
|
|
|
|
if comment:
|
|
|
|
pre += "/** %s */\n" % comment
|
|
|
|
pre += "typedef struct __packed "
|
|
|
|
else:
|
|
|
|
pre += "struct "
|
|
|
|
|
|
|
|
pre += "{\n%(elements)s\n}" % {
|
|
|
|
"elements": indent_c(
|
|
|
|
"\n".join(
|
|
|
|
code + ("" if not comment else (" /** %s */" % comment))
|
|
|
|
for code, comment in items
|
|
|
|
)
|
|
|
|
),
|
|
|
|
}
|
|
|
|
return pre, ""
|
|
|
|
|
|
|
|
@classmethod
|
2023-10-05 20:55:36 +02:00
|
|
|
def get_c_code(cls, name=None, ignore_fields=None, no_empty=False, typedef=True, union_only=False,
|
|
|
|
union_member_as_types=False) -> str:
|
|
|
|
pre, post = cls.get_c_parts(ignore_fields=ignore_fields, no_empty=no_empty, typedef=typedef,
|
|
|
|
union_only=union_only, union_member_as_types=union_member_as_types,
|
|
|
|
)
|
2023-10-05 19:42:36 +02:00
|
|
|
if no_empty and not pre and not post:
|
|
|
|
return ""
|
|
|
|
return "%s %s%s;" % (pre, name, post)
|
|
|
|
|
|
|
|
@classmethod
|
2023-10-05 20:55:36 +02:00
|
|
|
def get_variable_name(cls, base_name):
|
|
|
|
return base_name
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
@classmethod
|
2023-10-05 20:55:36 +02:00
|
|
|
def get_struct_name(cls, base_name):
|
|
|
|
return "%s_t" % base_name
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
@classmethod
|
2023-10-05 20:55:36 +02:00
|
|
|
def get_min_size(cls) -> int:
|
|
|
|
if cls.union_type_field:
|
|
|
|
return (
|
|
|
|
{f.name: field for f in fields()}[cls.union_type_field].metadata["format"].get_min_size() +
|
2023-10-06 01:06:30 +02:00
|
|
|
sum((option.get_min_size() for option in cls.get_types().values()), start=0)
|
2023-10-05 20:55:36 +02:00
|
|
|
)
|
|
|
|
return sum((f.metadata.get("format", f.type).get_min_size() for f in fields(cls)), start=0)
|
2023-10-05 19:42:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MacAddressFormat(FixedHexFormat):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(num=6, sep=':')
|
|
|
|
|
|
|
|
|
|
|
|
class MacAddressesListFormat(VarArrayFormat):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(child_type=MacAddressFormat())
|
|
|
|
|
|
|
|
|
|
|
|
""" stuff """
|
|
|
|
|
|
|
|
@unique
|
|
|
|
class LedType(IntEnum):
|
|
|
|
SERIAL = 1
|
|
|
|
MULTIPIN = 2
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
@dataclass
|
2023-10-05 19:42:36 +02:00
|
|
|
class LedConfig(StructType, union_type_field="led_type"):
|
|
|
|
led_type: LedType = field(init=False, repr=False, metadata={"format": SimpleFormat('B')})
|
2022-04-15 20:02:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
2023-10-05 19:42:36 +02:00
|
|
|
class SerialLedConfig(LedConfig, StructType, led_type=LedType.SERIAL):
|
|
|
|
gpio: int = field(metadata={"format": SimpleFormat('B')})
|
|
|
|
rmt: int = field(metadata={"format": SimpleFormat('B')})
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class MultipinLedConfig(LedConfig, StructType, led_type=LedType.MULTIPIN):
|
|
|
|
gpio_red: int = field(metadata={"format": SimpleFormat('B')})
|
|
|
|
gpio_green: int = field(metadata={"format": SimpleFormat('B')})
|
|
|
|
gpio_blue: int = field(metadata={"format": SimpleFormat('B')})
|
|
|
|
|
|
|
|
|
2023-10-05 20:55:36 +02:00
|
|
|
@dataclass
|
2023-10-05 19:42:36 +02:00
|
|
|
class RangeItemType(StructType):
|
|
|
|
address: str = field(metadata={"format": MacAddressFormat()})
|
|
|
|
distance: int = field(metadata={"format": SimpleFormat('H')})
|