xair-api-python/xair_api/strip.py

74 lines
2.0 KiB
Python
Raw Normal View History

2022-04-05 20:05:55 +01:00
import abc
import logging
2022-11-16 15:51:26 +00:00
from .meta import mute_prop
from .shared import EQ, Automix, Config, Dyn, Gate, Group, Insert, Mix, Preamp, Send
2022-04-05 20:05:55 +01:00
logger = logging.getLogger(__name__)
2022-04-05 20:05:55 +01:00
class IStrip(abc.ABC):
"""Abstract Base Class for strips"""
def __init__(self, remote, index: int):
self._remote = remote
self.index = index + 1
self.logger = logger.getChild(self.__class__.__name__)
2022-04-05 20:05:55 +01:00
def getter(self, param: str) -> tuple:
return self._remote.query(f"{self.address}/{param}")
2022-04-05 20:05:55 +01:00
def setter(self, param: str, val: int):
self._remote.send(f"{self.address}/{param}", val)
@abc.abstractmethod
def address(self):
pass
class Strip(IStrip):
"""Concrete class for strips"""
@classmethod
def make(cls, remote, index):
"""
Factory function for strips
Creates a mixin of shared subclasses, sets them as class attributes.
Returns a Strip class of a kind.
"""
2022-11-16 15:51:26 +00:00
2022-04-05 20:05:55 +01:00
STRIP_cls = type(
f"Strip{remote.kind}",
2022-04-05 20:05:55 +01:00
(cls,),
{
**{
_cls.__name__.lower(): type(
f"{_cls.__name__}{remote.kind}", (_cls, cls), {}
2022-04-05 20:05:55 +01:00
)(remote, index)
for _cls in (
Config,
Preamp,
Gate,
Dyn,
Insert,
EQ.make_fourband(cls, remote, index),
Mix,
Group,
Automix,
)
},
"send": tuple(
2024-02-08 17:54:27 +00:00
Send.make(cls, i, remote, index)
for i in range(remote.kind.num_bus + remote.kind.num_fx)
),
2022-11-16 15:51:26 +00:00
"mute": mute_prop(),
2022-04-05 20:05:55 +01:00
},
)
return STRIP_cls(remote, index)
@property
def address(self) -> str:
return f"/ch/{str(self.index).zfill(2)}"